0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-12 04:39:59 +00:00

org.el (org-cycle-global-at-bob): Fix typo in docstring

* org.el (org-cycle-global-at-bob): Fix typo in docstring.
This commit is contained in:
Bastien Guerry 2012-09-22 10:55:06 +02:00
parent 51955a248d
commit e1c609c6aa

View file

@ -899,13 +899,11 @@ This can also be set in on a per-file basis with
(defcustom org-cycle-global-at-bob nil (defcustom org-cycle-global-at-bob nil
"Cycle globally if cursor is at beginning of buffer and not at a headline. "Cycle globally if cursor is at beginning of buffer and not at a headline.
This makes it possible to do global cycling without having to use S-TAB or This makes it possible to do global cycling without having to use S-TAB or
\\[universal-argument] TAB. For this special case to work, the first line \ \\[universal-argument] TAB. For this special case to work, the first line
of the buffer of the buffer must not be a headline -- it may be empty or some other text.
must not be a headline - it may be empty or some other text. When used in When used in this way, `org-cycle-hook' is disabled temporarily to make
this way, `org-cycle-hook' is disables temporarily, to make sure the sure the cursor stays at the beginning of the buffer. When this option is
cursor stays at the beginning of the buffer. nil, don't do anything special at the beginning of the buffer."
When this option is nil, don't do anything special at the beginning
of the buffer."
:group 'org-cycle :group 'org-cycle
:type 'boolean) :type 'boolean)