diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-04-21 19:14:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-04-21 19:14:04 +0000 |
commit | dc0485c4f86e8754635ecd2003188d3894c23974 (patch) | |
tree | 6b7bc5ac8f956c38b09fef4c9082c0756aa409a0 /lisp/emacs-lisp | |
parent | a4f66531945826f4a12d6c41bfa80ef89eff33ed (diff) | |
download | emacs-dc0485c4f86e8754635ecd2003188d3894c23974.tar.gz emacs-dc0485c4f86e8754635ecd2003188d3894c23974.tar.bz2 emacs-dc0485c4f86e8754635ecd2003188d3894c23974.zip |
(disassemble): Handle lambda-exp as arg.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/disass.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/disass.el b/lisp/emacs-lisp/disass.el index d8890bd0239..ed632b14cd4 100644 --- a/lisp/emacs-lisp/disass.el +++ b/lisp/emacs-lisp/disass.el @@ -4,7 +4,7 @@ ;; Author: Doug Cutting <doug@csli.stanford.edu> ;; Jamie Zawinski <jwz@lucid.com> -;; Maintainer: Jamie Zawinski <jwz@lucid.com> +;; Maintainer: FSF ;; Keywords: internal ;; This file is part of GNU Emacs. @@ -57,7 +57,7 @@ redefine OBJECT if it is a symbol." (interactive (list (intern (completing-read "Disassemble function: " obarray 'fboundp t)) nil 0 t)) - (if (consp object) + (if (and (consp object) (not (eq (car object) 'lambda))) (setq object (list 'lambda () object))) (or indent (setq indent 0)) ;Default indent to zero (save-excursion |