2012-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
+ * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
+
* files.el (find-alternate-file): Only ask one question (bug#12487).
2012-10-29 Chong Yidong <cyd@gnu.org>
(defmacro letf (bindings &rest body)
"Dynamically scoped let-style bindings for places.
Like `cl-letf', but with some extra backward compatibility."
+ (declare (indent 1) (debug cl-letf))
;; Like cl-letf, but with special handling of symbol-function.
`(cl-letf ,(mapcar (lambda (x) (if (eq (car-safe (car x)) 'symbol-function)
`((cl--symbol-function ,@(cdar x)) ,@(cdr x))