]> git.eshelyaron.com Git - emacs.git/commitdiff
(use-hard-newlines): Un-customized.
authorRichard M. Stallman <rms@gnu.org>
Mon, 25 Aug 1997 17:06:01 +0000 (17:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 25 Aug 1997 17:06:01 +0000 (17:06 +0000)
lisp/textmodes/paragraphs.el

index ffb03724781a214dba04ba49dd7fb616247fc13b..c0199b435dfffe790436adf3eb49cb9d95cf971a 100644 (file)
   "Paragraph and sentence parsing."
   :group 'editing)
 
-(defcustom use-hard-newlines nil
+;; It isn't useful to use defcustom for this variable
+;; because it is always buffer-local.
+(defvar use-hard-newlines nil
     "Non-nil means to distinguish hard and soft newlines.
-See documentation for the `use-hard-newlines' function."
-    :set '(lambda (symbol value) (use-hard-newlines (or value 0)))
-    :group 'paragraphs
-    :type 'boolean)
+See documentation for the `use-hard-newlines' function.")
 (make-variable-buffer-local 'use-hard-newlines)
 
 (defun use-hard-newlines (&optional arg insert)