]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't allow message-newline-and-reformat to be run outside the body
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 26 Jan 2017 14:07:38 +0000 (15:07 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 26 Jan 2017 14:07:38 +0000 (15:07 +0100)
* lisp/gnus/message.el (message-newline-and-reformat): Error
out if run outside the body of a message (bug#18820).

lisp/gnus/message.el

index 4f9dd093fa283636ea0ecad48f055726bcc76fb7..043ebbc579b6183a6701abf2989e49868ac828cc 100644 (file)
@@ -3330,6 +3330,8 @@ of lines before the signature intact."
   "Insert four newlines, and then reformat if inside quoted text.
 Prefix arg means justify as well."
   (interactive (list (if current-prefix-arg 'full)))
+  (unless (message-in-body-p)
+    (error "This command only works in the body of the message"))
   (let (quoted point beg end leading-space bolp fill-paragraph-function)
     (setq point (point))
     (beginning-of-line)