diff options
Diffstat (limited to 'lisp/emacs-lisp/easy-mmode.el')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 6827faab208..21a29a722c3 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -114,7 +114,7 @@ it is disabled.") ;; line. (ensure-empty-lines) (while (and lines - (string-empty-p (car lines))) + (equal (car lines) "")) (pop lines)) ;; Insert the doc string. (dolist (line lines) |