From: Richard M. Stallman Date: Mon, 25 Aug 1997 17:06:01 +0000 (+0000) Subject: (use-hard-newlines): Un-customized. X-Git-Tag: emacs-20.1~421 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bde0f7ca6e5ad0a41e7a32614bfdd305876820eb;p=emacs.git (use-hard-newlines): Un-customized. --- 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)