# HG changeset patch # User Eli Zaretskii # Date 1097258083 0 # Node ID 3493253e6b69a74e0a9081b98beccd29722fecbc # Parent 0c5a04846b583b9284f3aad47a5dfdc38dcb8ed9 (lisp-fill-paragraph): Change paragraph-start regexp so we don't fill code starting with #'( diff -r 0c5a04846b58 -r 3493253e6b69 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Fri Oct 08 17:53:18 2004 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Fri Oct 08 17:54:43 2004 +0000 @@ -1182,7 +1182,7 @@ ;; 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-*\\([\(;:\"]\\|`\(\\)")) + "\\|\\s-*\\([\(;:\"]\\|`\(\\|#'\(\\)")) (paragraph-separate (concat paragraph-separate "\\|\\s-*\".*[,\\.]$")) (fill-column (if (integerp emacs-lisp-docstring-fill-column)