diff options
author | Daniel Colascione <dancol@dancol.org> | 2014-04-09 08:33:43 -0700 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2014-04-09 08:33:43 -0700 |
commit | 6c971fb0f44169d7f77a9575301a4935106c0360 (patch) | |
tree | ff7a975d98e378aaf0aa53fbf1e8d4d317ed9b97 /lisp/emacs-lisp | |
parent | 0b816f158782bd668cea3f013a4d6fb277ffe95a (diff) | |
download | emacs-6c971fb0f44169d7f77a9575301a4935106c0360.tar.gz |
Tweak regex from last change
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)) |