unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* Small patch for lisp-fill-paragraph
@ 2004-09-22  3:45 Peter Seibel
  0 siblings, 0 replies; only message in thread
From: Peter Seibel @ 2004-09-22  3:45 UTC (permalink / raw)


This patch keeps lisp-fill-paragraph from filling code like the
following:

  (defun foo (bar)
    "This is a doc string. Now is the time for all good men to come
    to the aid of their party."
    #'(lambda (a b) (stuff)))

like this:

  (defun foo (bar)
    "This is a doc string. Now is the time for all good men to come
    to the aid of their party." #'(lambda (a b) (stuff)))


-Peter


Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.6387
diff -c -r1.6387 ChangeLog
*** ChangeLog	21 Sep 2004 02:26:39 -0000	1.6387
--- ChangeLog	22 Sep 2004 03:44:29 -0000
***************
*** 1,3 ****
--- 1,8 ----
+ 2004-09-21  Peter Seibel  <peter@javamonkey.com>
+ 
+ 	* emacs-lisp/lisp-mode.el (lisp-fill-paragraph): Change
+ 	paragraph-start regexp so we don't fill code starting with #'(
+  
  2004-09-21  Kenichi Handa  <handa@m17n.org>
  
  	* descr-text.el (describe-char): Checking of quail activation
Index: emacs-lisp/lisp-mode.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/emacs-lisp/lisp-mode.el,v
retrieving revision 1.165
diff -c -r1.165 lisp-mode.el
*** emacs-lisp/lisp-mode.el	8 Sep 2004 11:09:14 -0000	1.165
--- emacs-lisp/lisp-mode.el	22 Sep 2004 03:44:30 -0000
***************
*** 1182,1188 ****
        ;; The `fill-column' is temporarily bound to
        ;; `emacs-lisp-docstring-fill-column' if that value is an integer.
        (let ((paragraph-start (concat paragraph-start
! 				     "\\|\\s-*\\([\(;:\"]\\|`\(\\)"))
  	    (paragraph-separate
  	     (concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
              (fill-column (if (integerp emacs-lisp-docstring-fill-column)
--- 1182,1188 ----
        ;; The `fill-column' is temporarily bound to
        ;; `emacs-lisp-docstring-fill-column' if that value is an integer.
        (let ((paragraph-start (concat paragraph-start
! 				     "\\|\\s-*\\([\(;:\"]\\|`\(\\|#'\(\\)"))
  	    (paragraph-separate
  	     (concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
              (fill-column (if (integerp emacs-lisp-docstring-fill-column)


-- 
Peter Seibel                                      peter@javamonkey.com

         Lisp is the red pill. -- John Fraser, comp.lang.lisp

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-09-22  3:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-22  3:45 Small patch for lisp-fill-paragraph Peter Seibel

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).