diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-indent.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index 1f7a053912e..2d8a1c4c1c2 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -320,7 +320,7 @@ instead." (when (and (derived-mode-p 'emacs-lisp-mode) (not (lisp-indent-find-method (intern-soft function) t)) - (string-match "^cl-" function) + (string-match "\\`cl-" function) (setf tem (intern-soft (substring function (match-end 0)))) (lisp-indent-find-method tem t)) |