emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106963: * minibuf.c (syms_of_minibuf


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106963: * minibuf.c (syms_of_minibuf): Doc fix.
Date: Sat, 28 Jan 2012 11:04:55 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106963
fixes bug(s): http://debbugs.gnu.org/10550
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sat 2012-01-28 11:04:55 +0800
message:
  * minibuf.c (syms_of_minibuf): Doc fix.
modified:
  src/ChangeLog
  src/minibuf.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-01-26 16:09:35 +0000
+++ b/src/ChangeLog     2012-01-28 03:04:55 +0000
@@ -1,3 +1,7 @@
+2012-01-28  Chong Yidong  <address@hidden>
+
+       * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
+
 2012-01-26  Chong Yidong  <address@hidden>
 
        * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).

=== modified file 'src/minibuf.c'
--- a/src/minibuf.c     2012-01-19 07:21:25 +0000
+++ b/src/minibuf.c     2012-01-28 03:04:55 +0000
@@ -2002,7 +2002,7 @@
 
   DEFVAR_BOOL ("read-buffer-completion-ignore-case",
               read_buffer_completion_ignore_case,
-              doc: /* *Non-nil means completion ignores case when reading a 
buffer name.  */);
+              doc: /* Non-nil means completion ignores case when reading a 
buffer name.  */);
   read_buffer_completion_ignore_case = 0;
 
   DEFVAR_LISP ("minibuffer-setup-hook", Vminibuffer_setup_hook,
@@ -2014,20 +2014,24 @@
   Vminibuffer_exit_hook = Qnil;
 
   DEFVAR_LISP ("history-length", Vhistory_length,
-              doc: /* *Maximum length for history lists before truncation 
takes place.
-A number means that length; t means infinite.  Truncation takes place
-just after a new element is inserted.  Setting the `history-length'
-property of a history variable overrides this default.  */);
+              doc: /* Maximum length of history lists before truncation takes 
place.
+A number means truncate to that length; truncation deletes old
+elements, and is done just after inserting a new element.
+A value of t means no truncation.
+
+This variable only affects history lists that don't specify their own
+maximum lengths.  Setting the `history-length' property of a history
+variable overrides this default.  */);
   XSETFASTINT (Vhistory_length, 30);
 
   DEFVAR_BOOL ("history-delete-duplicates", history_delete_duplicates,
-              doc: /* *Non-nil means to delete duplicates in history.
+              doc: /* Non-nil means to delete duplicates in history.
 If set to t when adding a new history element, all previous identical
 elements are deleted from the history list.  */);
   history_delete_duplicates = 0;
 
   DEFVAR_LISP ("history-add-new-input", Vhistory_add_new_input,
-              doc: /* *Non-nil means to add new elements in history.
+              doc: /* Non-nil means to add new elements in history.
 If set to nil, minibuffer reading functions don't add new elements to the
 history list, so it is possible to do this afterwards by calling
 `add-to-history' explicitly.  */);
@@ -2042,7 +2046,7 @@
   completion_ignore_case = 0;
 
   DEFVAR_BOOL ("enable-recursive-minibuffers", enable_recursive_minibuffers,
-              doc: /* *Non-nil means to allow minibuffer commands while in the 
minibuffer.
+              doc: /* Non-nil means to allow minibuffer commands while in the 
minibuffer.
 This variable makes a difference whenever the minibuffer window is active. */);
   enable_recursive_minibuffers = 0;
 
@@ -2098,7 +2102,7 @@
   Vminibuffer_history_position = Qnil;
 
   DEFVAR_BOOL ("minibuffer-auto-raise", minibuffer_auto_raise,
-              doc: /* *Non-nil means entering the minibuffer raises the 
minibuffer's frame.
+              doc: /* Non-nil means entering the minibuffer raises the 
minibuffer's frame.
 Some uses of the echo area also raise that frame (since they use it too).  */);
   minibuffer_auto_raise = 0;
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]