bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#12759: letf indentation has become worse


From: Glenn Morris
Subject: bug#12759: letf indentation has become worse
Date: Mon, 29 Oct 2012 03:51:51 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Package: emacs
Version: 24.2.50
Severity: minor

In Emacs 24.2, letf is indented like this after `emacs -Q -l cl':

(letf (((point) (point-min))
       (a 17))
  body)

This is consistent with `let':

(let ((p (point-min))
      (a 17))
  body)

In current trunk, it indents like this:

(letf (((point) (point-min))
       (a 17))
      body)

cl-letf, on the other hand, indents like letf used to.

Looks like `letf' lost its lisp-indent-function property?

This probably affects the other cl.el functions that are not simply
aliases to cl-lib.el functions.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]