Skip to content

Commit b196a05

Browse files
committed
Clean up spacing to pass Emacs's pre-commit check
Avoid trailing spaces and spaces before tabs.
1 parent 7b9d8e7 commit b196a05

File tree

8 files changed

+24
-24
lines changed

8 files changed

+24
-24
lines changed

doc/org-manual.org

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6803,7 +6803,7 @@ using the =:formatter= parameter.
68036803
- =:filetitle= ::
68046804

68056805
Show title in the file column if the file has a =#+title=.
6806-
6806+
68076807
- =:hidefiles= ::
68086808

68096809
Hide the file column when multiple files are used to produce the
@@ -13396,7 +13396,7 @@ general options (see [[*Export Settings]]).
1339613396
#+cindex: @samp{LANGUAGE}, keyword
1339713397
#+vindex: org-latex-packages-alist
1339813398
#+vindex: org-latex-language-alist
13399-
13399+
1340013400
Language code of the primary document language.
1340113401

1340213402
The list of language codes supported by Org is stored in the
@@ -18420,7 +18420,7 @@ results do not have a distinct name.
1842018420

1842118421
Note that all the links pointing to a source block exported using
1842218422
=:exports none= will be broken. This will make export process fail,
18423-
unless broken links are allowed during export (see [[*Export Settings]]).
18423+
unless broken links are allowed during export (see [[*Export Settings]]).
1842418424

1842518425
#+vindex: org-export-use-babel
1842618426
To stop Org from evaluating code blocks to speed exports, use the
@@ -22525,7 +22525,7 @@ within a buffer with the =STARTUP= options =inlineimages= and
2252522525
=noinlineimages=.
2252622526

2252722527
[fn:120] The width can be customized in Emacs >= 24.1, built with
22528-
imagemagick support.
22528+
imagemagick support.
2252922529

2253022530
[fn:121] The corresponding in-buffer setting is: =#+STARTUP: fninline=
2253122531
or =#+STARTUP: nofninline=.

etc/ORG-NEWS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ produce results superior to Minted or Listings.
239239
*** Support for =#+include=-ing URLs
240240

241241
=#+include: FILE= will now accept URLs as the file.
242-
*** Structure templates now respect case used in ~org-structure-template-alist~
242+
*** Structure templates now respect case used in ~org-structure-template-alist~
243243

244244
The block type in ~org-structure-template-alist~ is not case-sensitive.
245245
When the block type starts from the upper case, structure template
@@ -348,7 +348,7 @@ The folding state can also be controlled on per-file basis using
348348
*** New custom setting ~org-icalendar-force-alarm~
349349

350350
The new setting, when set to non-nil, makes Org create alarm at the
351-
event time when the alarm time is set to 0. The default value is
351+
event time when the alarm time is set to 0. The default value is
352352
nil -- do not create alarms at the event time.
353353

354354
** New functions and changes in function arguments
@@ -493,7 +493,7 @@ restore earlier behavior add to your Emacs init file the following:
493493
(org-link-set-parameters "info" :insert-description nil))
494494
#+end_src
495495

496-
*** New list of languages for LaTeX export: ~org-latex-language-alist~
496+
*** New list of languages for LaTeX export: ~org-latex-language-alist~
497497

498498
~org-latex-language-alist~ unifies into a single list the old language
499499
lists for the =babel= and =polyglossia= LaTeX packages:

lisp/org-agenda.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5934,7 +5934,7 @@ displayed in agenda view."
59345934
(setq result (org-diary-sexp-entry sexp sexp-entry date))
59355935
(when result
59365936
;; Only check if entry should be skipped on matching sexps.
5937-
(org-agenda-skip (org-element-at-point))
5937+
(org-agenda-skip (org-element-at-point))
59385938
(setq marker (org-agenda-new-marker beg)
59395939
level (make-string (org-reduced-level (org-outline-level)) ? )
59405940
category (org-get-category beg)

lisp/org-element.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5357,7 +5357,7 @@ This extra caching is based on the following paper:
53575357
Pugh [Information Processing Letters] (1990) Slow optimally balanced
53585358
search strategies vs. cached fast uniformly balanced search
53595359
strategies. http://dx.doi.org/10.1016/0020-0190(90)90130-P
5360-
5360+
53615361
Also, see `org-element--cache-hash-left' and `org-element--cache-hash-right'.")
53625362
(defvar-local org-element--cache-hash-left nil
53635363
"Cached elements from `org-element--cache' for fast O(1) lookup.
@@ -5714,7 +5714,7 @@ This extra caching is based on the following paper:
57145714
Pugh [Information Processing Letters] (1990) Slow optimally balanced
57155715
search strategies vs. cached fast uniformly balanced search
57165716
strategies. http://dx.doi.org/10.1016/0020-0190(90)90130-P
5717-
5717+
57185718
Also, see `org-element--cache-size'."
57195719
(interactive)
57205720
(message "%.2f%% of cache searches hashed, %.2f%% non-hashable."
@@ -6307,7 +6307,7 @@ completing the request."
63076307
;; Consider scenario when DATA lays within
63086308
;; sensitive lines of PARENT that was found
63096309
;; during phase 2. For example:
6310-
;;
6310+
;;
63116311
;; #+ begin_quote
63126312
;; Paragraph
63136313
;; #+end_quote
@@ -7604,7 +7604,7 @@ the cache."
76047604
(move-start-to-next-match
76057605
(if last-match next-re fail-re)))
76067606
(when (and (or (not start) (eq (org-element-property :begin data) start))
7607-
(< (org-element-property :begin data) to-pos))
7607+
(< (org-element-property :begin data) to-pos))
76087608
;; Calculate where next possible element
76097609
;; starts and update START if needed.
76107610
(setq start (next-element-start))
@@ -7625,7 +7625,7 @@ the cache."
76257625
(when (or (not restrict-elements)
76267626
(memq (org-element-type data) restrict-elements))
76277627
;; DATA matches restriction. FUNC may
7628-
;;
7628+
;;
76297629
;; Call FUNC. FUNC may move point.
76307630
(setq org-element-cache-map-continue-from nil)
76317631
(if org-element--cache-map-statistics

lisp/org-fold-core.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@
6464
;; Consider the following Org mode link:
6565
;; [[file:/path/to/file/file.ext][description]]
6666
;; Only the word "description" is normally visible in this link.
67-
;;
67+
;;
6868
;; The way this partial visibility is achieved is combining the two
6969
;; folding specs. The whole link is folded using 'org-fold-hidden
7070
;; folding spec, but the visible part is additionally folded using
7171
;; 'org-fold-visible:
7272
;;
7373
;; <begin org-fold-hidden>[[file:/path/to/file/file.ext][<begin org-fold-visible>description<end org-fold-visible>]]<end org-fold-hidden>
74-
;;
74+
;;
7575
;; Because 'org-fold-visible has higher priority than
7676
;; 'org-fold-hidden, it suppresses the 'org-fold-hidden effect and
7777
;; thus reveals the description part of the link.
@@ -330,7 +330,7 @@ following symbols:
330330
of the folded regions may become visible for some external packages
331331
inserting text using `insert' instead of `insert-and-inherit' (the
332332
latter is rarely used in practice).
333-
333+
334334
- `ignore-indirect': Do not decouple folding state in the indirect
335335
buffers. This can speed up Emacs display engine (and thus motion of
336336
point), especially when large number of indirect buffers is being

lisp/org-fold.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,9 @@ When ENTRY is non-nil, show the entire entry."
325325
(line-end-position 0)
326326
(save-excursion
327327
(if (re-search-forward
328-
(concat "[\r\n]" (org-get-limited-outline-regexp)) nil t)
328+
(concat "[\r\n]" (org-get-limited-outline-regexp)) nil t)
329329
(line-end-position 0)
330-
(point-max)))
330+
(point-max)))
331331
t
332332
'outline))))
333333

@@ -398,9 +398,9 @@ Show the heading too, if it is currently invisible."
398398
(line-end-position 0)
399399
(save-excursion
400400
(if (re-search-forward
401-
(concat "[\r\n]\\(" (org-get-limited-outline-regexp) "\\)") nil t)
402-
(match-beginning 1)
403-
(point-max)))
401+
(concat "[\r\n]\\(" (org-get-limited-outline-regexp) "\\)") nil t)
402+
(match-beginning 1)
403+
(point-max)))
404404
nil
405405
'outline)
406406
(when hide-drawers (org-cycle-hide-drawers 'children))))

lisp/org.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7950,8 +7950,8 @@ the whole buffer."
79507950
(put-text-property
79517951
(save-excursion (org-back-to-heading-or-point-min t))
79527952
(save-excursion (if (org-before-first-heading-p)
7953-
(point-max)
7954-
(org-end-of-subtree t t)))
7953+
(point-max)
7954+
(org-end-of-subtree t t)))
79557955
'org-category
79567956
value)))))))))))
79577957

lisp/ox-latex.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1974,7 +1974,7 @@ holding export options."
19741974
;; Date.
19751975
;; LaTeX displays today's date by default. One can override this by
19761976
;; inserting \date{} for no date, or \date{string} with any other
1977-
;; string to be displayed as the date.
1977+
;; string to be displayed as the date.
19781978
(let ((date (and (plist-get info :with-date) (org-export-get-date info))))
19791979
(format "\\date{%s}\n" (org-export-data date info)))
19801980
;; Title and subtitle.

0 commit comments

Comments
 (0)