# HG changeset patch # User Richard M. Stallman # Date 791718278 0 # Node ID 2c9bdcab7052b0568e145a06bcfce6694196d7d1 # Parent 04591bafb562e404a0fd16e5438081b2a21b4c86 (lisp-fill-paragraph): Return t. diff -r 04591bafb562 -r 2c9bdcab7052 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Thu Feb 02 09:40:06 1995 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Thu Feb 02 09:44:38 1995 +0000 @@ -688,7 +688,8 @@ (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)