emacs-devel
[Top][All Lists]
Advanced

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

RE: pp-eval-expression broken


From: Drew Adams
Subject: RE: pp-eval-expression broken
Date: Fri, 5 Jan 2007 22:28:21 -0800

Oops. FWIW, my "fix" of my version of `pp-eval-expression' to deal with the
Emacs 22 code change was no good. Instead of this:

(unless (or (interactive-p) (> emacs-major-version 21))
  (setq expression (eval expression)))

it should have been this:

(unless (and (not (interactive-p)) (> emacs-major-version 21))
  (setq expression (eval expression)))





reply via email to

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