summaryrefslogtreecommitdiff
path: root/lisp/mail/flow-fill.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@linkov.net>2021-01-20 21:19:23 +0200
committerJuri Linkov <juri@linkov.net>2021-01-20 21:19:23 +0200
commit5065698c81dcf241fc234c78bffea54af4203892 (patch)
treee289e7fc2f15f6b370e3409f2a64666898db7c9f /lisp/mail/flow-fill.el
parent0d3635536d4ed8ada6946e98e7d9f03fa443bc36 (diff)
downloademacs-5065698c81dcf241fc234c78bffea54af4203892.tar.gz
Move the ‘declare’ form before the interactive spec in 10 functions.
* lisp/emacs-lisp/package.el (package-menu-hide-package): * lisp/font-lock.el (font-lock-debug-fontify): * lisp/image.el (image-jpeg-p): * lisp/mail/flow-fill.el (fill-flowed-test): * lisp/mh-e/mh-speed.el (mh-speed-toggle, mh-speed-view): * lisp/progmodes/project.el (project-async-shell-command) (project-shell-command, project-compile): * lisp/progmodes/sh-script.el (sh-assignment): Fix special forms to follow in this order: docstring, declare, interactive.
Diffstat (limited to 'lisp/mail/flow-fill.el')
-rw-r--r--lisp/mail/flow-fill.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/flow-fill.el b/lisp/mail/flow-fill.el
index e93ba547a89..0fab1b21b47 100644
--- a/lisp/mail/flow-fill.el
+++ b/lisp/mail/flow-fill.el
@@ -174,8 +174,8 @@ lines."
(defvar fill-flowed-encode-tests)
(defun fill-flowed-test ()
- (interactive "")
(declare (obsolete nil "27.1"))
+ (interactive "")
(user-error (concat "This function is obsolete. Please see "
"test/lisp/mail/flow-fill-tests.el "
"in the Emacs source tree")))