]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKarl Heuer <kwzh@gnu.org>
Tue, 30 Mar 1999 21:37:40 +0000 (21:37 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 30 Mar 1999 21:37:40 +0000 (21:37 +0000)
14 files changed:
lisp/abbrev.el
lisp/autoinsert.el
lisp/avoid.el
lisp/delsel.el
lisp/font-lock.el
lisp/hscroll.el
lisp/icomplete.el
lisp/mouse-sel.el
lisp/paren.el
lisp/rsz-mini.el
lisp/time.el
lisp/type-break.el
lisp/which-func.el
lisp/winner.el

index ffde49ade630933b6b7218830f3677496a9d4d8e..394f1ddd42413612a49f69b3b4c13bc280afc117 100644 (file)
@@ -51,7 +51,7 @@ and be replaced by its expansion."
 In abbrev mode, inserting an abbreviation causes it to expand
 and be replaced by its expansion.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `abbrev-mode'.
+to using the function `abbrev-mode'."
   :set (lambda (symbol value)
         (abbrev-mode (if value 1 0)))
   :type 'boolean
index d88a344641f633b8fded07bb1f9d0e21a0b248c4..e0eb69d32ff158aad283c321b18b62d6f83c1c90 100644 (file)
@@ -60,7 +60,7 @@
 (defcustom auto-insert-mode nil
   "Toggle auto-insert-mode.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `auto-insert-mode'.
+to using the function `auto-insert-mode'."
   :set (lambda (symbol value)
         (auto-insert-mode (or value 0)))
   :initialize 'custom-initialize-default
index 60cc97aa3bd796ba3dfbffccf73ece72143eddfb..167f97873fffef30eebcc95ba7f76639effdf3cb 100644 (file)
@@ -81,7 +81,7 @@
   "Activate mouse avoidance mode.  
 See function `mouse-avoidance-mode' for possible values.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `mouse-avoidance-mode'.
+to using the function `mouse-avoidance-mode'."
   :set (lambda (symbol value)
         ;; 'none below prevents toggling when value is nil.
         (mouse-avoidance-mode (or value 'none))) 
index ed221284b7939ea5b3f5e626c70e2133ece0953a..e934c5a14a6791ff24b9e102eaf3581c9025172b 100644 (file)
@@ -78,7 +78,7 @@ any selection."
   "Toggle Delete Selection mode.
 See command `delete-selection-mode'.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `delete-selection-mode'.
+to using the function `delete-selection-mode'."
   :set (lambda (symbol value)
         (delete-selection-mode (or value 0)))
   :initialize 'custom-initialize-default
index 28815a7d0f53c39da5302ec6cc7d5d55961e17fe..48c69183ee1853fbb8b765cbb03e718717262fb7 100644 (file)
@@ -843,7 +843,7 @@ turned on in a buffer if its major mode is one of `font-lock-global-modes'."
 When Global Font Lock mode is enabled, Font Lock mode is automagically
 turned on in a buffer if its major mode is one of `font-lock-global-modes'.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `global-font-lock-mode'.
+to using the function `global-font-lock-mode'."
   :set (lambda (symbol value)
         (global-font-lock-mode (or value 0)))
   :type 'boolean
index fab0258b07f65a6b5b5f50a65917695df4ccdd99..9f9e6e7a06a4bc160107eb1c348f7ea91a5fc002 100644 (file)
@@ -62,7 +62,7 @@
 (defcustom hscroll-global-mode nil
   "Toggle horizontal scrolling.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `hscroll-global-mode'.
+to using the function `hscroll-global-mode'."
   :set (lambda (symbol value)
         (hscroll-global-mode (if value 1 -1)))
   :initialize 'custom-initialize-default
index f7c8d7c349c026f25390d0c67a5a6093b121642c..a9dfbac49fc7cc14bfc2947a575ba8a938d0aacc 100644 (file)
@@ -78,7 +78,7 @@
 As text is typed into the minibuffer, prospective completions are indicated 
 in the minibuffer.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `icomplete-mode'.
+to using the function `icomplete-mode'."
   :set (lambda (symbol value)
         (icomplete-mode (if value 1 -1)))
   :initialize 'custom-initialize-default
index defa3f908489ecee1288a35f85d1f253c91ade05..90a52d6328600c7d5f76de9d6de3b5b67a249218 100644 (file)
   "Toggle Mouse Sel mode.
 When Mouse Sel mode is enabled, mouse selection is enhanced in various ways.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `mouse-sel-mode'.
+to using the function `mouse-sel-mode'."
   :set (lambda (symbol value)
         (mouse-sel-mode (or value 0)))
   :initialize 'custom-initialize-default
index c5b26b83bbf59932e02dd227bd3afa3d49d95459..a3610daf364a316c7591a355ae7a074479538940 100644 (file)
@@ -45,7 +45,7 @@
 When Show Paren mode is enabled, any matching parenthesis is highlighted
 after `show-paren-delay' seconds of Emacs idle time.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `show-paren-mode'.
+to using the function `show-paren-mode'."
   :set (lambda (symbol value)
         (show-paren-mode (or value 0)))
   :initialize 'custom-initialize-default
index b21f1b680739baa8d26802939315f574d0d1942f..62f2d8ee428b8190f837b526754b83bcff642ecb 100644 (file)
@@ -7,7 +7,7 @@
 ;; Maintainer: Noah Friedman <friedman@splode.com>
 ;; Keywords: minibuffer, window, frame, display
 
-;; $Id: rsz-mini.el,v 1.23 1998/09/11 01:40:25 friedman Exp kwzh $
+;; $Id: rsz-mini.el,v 1.24 1999/03/30 21:29:47 kwzh Exp kwzh $
 
 ;; This file is part of GNU Emacs.
 
@@ -65,7 +65,7 @@
 (defcustom resize-minibuffer-mode nil
   "Toggle resizing the minibuffer so its entire contents are visible.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `resize-minibuffer-mode'.
+to using the function `resize-minibuffer-mode'."
   :set (lambda (symbol value)
         (resize-minibuffer-mode (if value 1 -1)))
   :initialize 'custom-initialize-default
index 53af0db4c4b997bca2f6f895d23e1697e31cad21..58e1dd486fbfd81536c9b8db61708432f859f0c3 100644 (file)
@@ -37,7 +37,7 @@
 (defcustom display-time-mode nil
   "Toggle display of time, load level, and mail flag in mode lines.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `display-time-mode'.
+to using the function `display-time-mode'."
   :set (lambda (symbol value)
         (display-time-mode (or value 0)))
   :initialize 'custom-initialize-default
index 2dee5c406809d6b23e5ba547c24c0bd2aedca0b4..8f8b33923650ad52f827b84968ac471be7929d16 100644 (file)
@@ -8,7 +8,7 @@
 ;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs
 ;; Created: 1994-07-13
 
-;; $Id: type-break.el,v 1.19 1998/09/11 01:39:41 friedman Exp kwzh $
+;; $Id: type-break.el,v 1.20 1999/03/30 21:30:05 kwzh Exp kwzh $
 
 ;; This file is part of GNU Emacs.
 
@@ -79,7 +79,7 @@
   "Toggle typing break mode.
 See the docstring for the `type-break-mode' command for more information.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `type-break-mode'.
+to using the function `type-break-mode'."
   :set (lambda (symbol value)
         (type-break-mode (if value 1 -1)))
   :initialize 'custom-initialize-default
index 22a12405a0dde32c7c47add438bbff0810a9893c..fb9ab39fc6741d43ff37dd8cd17224178ad3666e 100644 (file)
@@ -105,7 +105,7 @@ Zero means compute the Imenu menu regardless of size."
 (defcustom which-func-mode-global nil
   "*Toggle `which-func-mode'.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `which-func-mode'.
+to using the function `which-func-mode'."
   :set #'(lambda (symbol value)
           (which-func-mode (if value 1 0)))
   :initialize 'custom-initialize-default
index 7731ee9f2e489aed22ac10e655319f5c8b2fe2c3..d80af2654f9c978639c8ca78ca17634613b29c1b 100644 (file)
@@ -56,7 +56,7 @@
 (defcustom winner-mode nil
   "Toggle winner-mode.
 This variable should be set only with \\[customize], which is equivalent
-to using the function `winner-mode'.
+to using the function `winner-mode'."
   :set #'(lambda (symbol value)
           (winner-mode (or value 0)))
   :initialize 'custom-initialize-default