diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-04-10 01:50:22 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-04-10 01:50:22 -0400 |
commit | 26f8a384978c6b1d1db1c6b091fa1e51d9ff5a5b (patch) | |
tree | 1009712ed76be8785abbfa2cfb6ddc9359b46ced /lisp/mail/footnote.el | |
parent | 519489089197ce2d41c72e20773438d415ce8564 (diff) | |
download | emacs-26f8a384978c6b1d1db1c6b091fa1e51d9ff5a5b.tar.gz |
cl-lib.el: Partial revert of "2015-04-05 Rationalize c[ad]+r"
* lisp/emacs-lisp/cl-lib.el: Partial revert of "2015-04-05 Rationalize
use of c[ad]+r", so as to keep the "cl-" prefix on all
cl-lib definitions.
Diffstat (limited to 'lisp/mail/footnote.el')
-rw-r--r-- | lisp/mail/footnote.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/footnote.el b/lisp/mail/footnote.el index d841187df0f..ea674434a2f 100644 --- a/lisp/mail/footnote.el +++ b/lisp/mail/footnote.el @@ -644,7 +644,7 @@ by using `Footnote-back-to-message'." (interactive "*P") (let ((num (if footnote-text-marker-alist - (if (< (point) (cadar (last footnote-pointer-marker-alist))) + (if (< (point) (cl-cadar (last footnote-pointer-marker-alist))) (Footnote-make-hole) (1+ (caar (last footnote-text-marker-alist)))) 1))) |