aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-25 17:06:01 +0000
committerRichard M. Stallman1997-08-25 17:06:01 +0000
commitbde0f7ca6e5ad0a41e7a32614bfdd305876820eb (patch)
treed755b2abf106f474e49e6e45f4beca17b6a7b032
parentf36742476a4584081cd580d8faaad3783ead105c (diff)
downloademacs-bde0f7ca6e5ad0a41e7a32614bfdd305876820eb.tar.gz
emacs-bde0f7ca6e5ad0a41e7a32614bfdd305876820eb.zip
(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 @@
34 "Paragraph and sentence parsing." 34 "Paragraph and sentence parsing."
35 :group 'editing) 35 :group 'editing)
36 36
37(defcustom use-hard-newlines nil 37;; It isn't useful to use defcustom for this variable
38;; because it is always buffer-local.
39(defvar use-hard-newlines nil
38 "Non-nil means to distinguish hard and soft newlines. 40 "Non-nil means to distinguish hard and soft newlines.
39See documentation for the `use-hard-newlines' function." 41See documentation for the `use-hard-newlines' function.")
40 :set '(lambda (symbol value) (use-hard-newlines (or value 0)))
41 :group 'paragraphs
42 :type 'boolean)
43(make-variable-buffer-local 'use-hard-newlines) 42(make-variable-buffer-local 'use-hard-newlines)
44 43
45(defun use-hard-newlines (&optional arg insert) 44(defun use-hard-newlines (&optional arg insert)