summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-25 17:06:01 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-25 17:06:01 +0000
commit39def76c4fbc08f899d76319be7629d062869727 (patch)
tree68bdaa29e20fb2407c19cfd73a7479ab62d75dba
parentc7458297752aa084be5d3ac1ac18093aa383c6b4 (diff)
downloademacs-39def76c4fbc08f899d76319be7629d062869727.tar.gz
(use-hard-newlines): Un-customized.
-rw-r--r--lisp/textmodes/paragraphs.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/textmodes/paragraphs.el b/lisp/textmodes/paragraphs.el
index ffb03724781..c0199b435df 100644
--- a/lisp/textmodes/paragraphs.el
+++ b/lisp/textmodes/paragraphs.el
@@ -34,12 +34,11 @@
"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)