aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-08-30 20:16:47 +0000
committerGlenn Morris2008-08-30 20:16:47 +0000
commita0b8485f47b1f10dbb4151c1925eff8577d98bab (patch)
tree6d11ada9f19f0c3a7dacfdad0e55f8f7ca92c260
parent9da97cf02076c52b73e865f52cf9887c50437ef4 (diff)
downloademacs-a0b8485f47b1f10dbb4151c1925eff8577d98bab.tar.gz
emacs-a0b8485f47b1f10dbb4151c1925eff8577d98bab.zip
(Info-hide-note-references, Info-refill-paragraphs): Doc fixes.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/info.el6
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d0b4024f220..0f518858585 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12008-08-30 Glenn Morris <rgm@gnu.org> 12008-08-30 Glenn Morris <rgm@gnu.org>
2 2
3 * info.el (Info-hide-note-references, Info-refill-paragraphs):
4 Doc fixes.
5
3 * apropos.el (apropos-command): Report documentation errors. 6 * apropos.el (apropos-command): Report documentation errors.
4 * help-fns.el (describe-function-1): Handle broken aliases. (Bug#825) 7 * help-fns.el (describe-function-1): Handle broken aliases. (Bug#825)
5 8
diff --git a/lisp/info.el b/lisp/info.el
index 9f2935dfe3a..fada0045782 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -221,7 +221,8 @@ when you hit the end of the current node."
221 "*If non-nil, hide the tag and section reference in *note and * menu items. 221 "*If non-nil, hide the tag and section reference in *note and * menu items.
222If value is non-nil but not `hide', also replaces the \"*note\" with \"see\". 222If value is non-nil but not `hide', also replaces the \"*note\" with \"see\".
223If value is non-nil but not t or `hide', the reference section is still shown. 223If value is non-nil but not t or `hide', the reference section is still shown.
224`nil' completely disables this feature." 224`nil' completely disables this feature. If this is non-nil, you might
225want to set `Info-refill-paragraphs'."
225 :version "22.1" 226 :version "22.1"
226 :type '(choice (const :tag "No hiding" nil) 227 :type '(choice (const :tag "No hiding" nil)
227 (const :tag "Replace tag and hide reference" t) 228 (const :tag "Replace tag and hide reference" t)
@@ -232,7 +233,8 @@ If value is non-nil but not t or `hide', the reference section is still shown.
232(defcustom Info-refill-paragraphs nil 233(defcustom Info-refill-paragraphs nil
233 "*If non-nil, attempt to refill paragraphs with hidden references. 234 "*If non-nil, attempt to refill paragraphs with hidden references.
234This refilling may accidentally remove explicit line breaks in the Info 235This refilling may accidentally remove explicit line breaks in the Info
235file, so be prepared for a few surprises if you enable this feature." 236file, so be prepared for a few surprises if you enable this feature.
237This only has an effect if `Info-hide-note-references' is non-nil."
236 :version "22.1" 238 :version "22.1"
237 :type 'boolean 239 :type 'boolean
238 :group 'info) 240 :group 'info)