diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-02-02 09:44:38 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-02-02 09:44:38 +0000 |
commit | 2b4483bbdcf70f223b7faed9f5d441315e89dd4d (patch) | |
tree | d3dc411b653c79801b75f79531fbe6ed0f406a45 /lisp/emacs-lisp | |
parent | 35d132a834872bfd554fcefe2a084671bc3f39ba (diff) | |
download | emacs-2b4483bbdcf70f223b7faed9f5d441315e89dd4d.tar.gz emacs-2b4483bbdcf70f223b7faed9f5d441315e89dd4d.tar.bz2 emacs-2b4483bbdcf70f223b7faed9f5d441315e89dd4d.zip |
(lisp-fill-paragraph): Return t.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 6bb3c6f36c7..7d9fbf108dd 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -688,7 +688,8 @@ and initial semicolons." (let ((paragraph-start (concat paragraph-start "\\|^[ \t;]*$")) (paragraph-separate (concat paragraph-start "\\|^[ \t;]*$")) (fill-prefix comment-fill-prefix)) - (fill-paragraph justify)))))) + (fill-paragraph justify)))) + t)) (defun indent-code-rigidly (start end arg &optional nochange-regexp) |