comparison lisp/emacs-lisp/lisp-mode.el @ 10629:2c9bdcab7052

(lisp-fill-paragraph): Return t.
author Richard M. Stallman <rms@gnu.org>
date Thu, 02 Feb 1995 09:44:38 +0000
parents 04591bafb562
children bea3ee51b843
comparison
equal deleted inserted replaced
10628:04591bafb562 10629:2c9bdcab7052
686 686
687 ;; Lines with only semicolons on them can be paragraph boundaries. 687 ;; Lines with only semicolons on them can be paragraph boundaries.
688 (let ((paragraph-start (concat paragraph-start "\\|^[ \t;]*$")) 688 (let ((paragraph-start (concat paragraph-start "\\|^[ \t;]*$"))
689 (paragraph-separate (concat paragraph-start "\\|^[ \t;]*$")) 689 (paragraph-separate (concat paragraph-start "\\|^[ \t;]*$"))
690 (fill-prefix comment-fill-prefix)) 690 (fill-prefix comment-fill-prefix))
691 (fill-paragraph justify)))))) 691 (fill-paragraph justify))))
692 t))
692 693
693 694
694 (defun indent-code-rigidly (start end arg &optional nochange-regexp) 695 (defun indent-code-rigidly (start end arg &optional nochange-regexp)
695 "Indent all lines of code, starting in the region, sideways by ARG columns. 696 "Indent all lines of code, starting in the region, sideways by ARG columns.
696 Does not affect lines starting inside comments or strings, assuming that 697 Does not affect lines starting inside comments or strings, assuming that