From 6c971fb0f44169d7f77a9575301a4935106c0360 Mon Sep 17 00:00:00 2001 From: Daniel Colascione Date: Wed, 9 Apr 2014 08:33:43 -0700 Subject: [PATCH] Tweak regex from last change --- lisp/emacs-lisp/cl-indent.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.5