summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-07-23 02:54:15 +0000
committerGlenn Morris <rgm@gnu.org>2009-07-23 02:54:15 +0000
commit4b94906242f32ccb2567f66a62dd6cea0db1a9e1 (patch)
tree692b3f9dcf589df4790f835202de85263df16968 /lisp/emacs-lisp/cl.el
parent924bfe49d8f70b05e734c2038b05d2c3e5ead7dc (diff)
downloademacs-4b94906242f32ccb2567f66a62dd6cea0db1a9e1.tar.gz
(cl-compiling-file): Update for the name-change `outbuffer' to
`bytecomp-outbuffer'.
Diffstat (limited to 'lisp/emacs-lisp/cl.el')
-rw-r--r--lisp/emacs-lisp/cl.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el
index 1f4a4d3812d..beed29678d4 100644
--- a/lisp/emacs-lisp/cl.el
+++ b/lisp/emacs-lisp/cl.el
@@ -1,7 +1,7 @@
;;; cl.el --- Common Lisp extensions for Emacs
-;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
-;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+;; 2009 Free Software Foundation, Inc.
;; Author: Dave Gillespie <daveg@synaptics.com>
;; Version: 2.02
@@ -272,8 +272,9 @@ definitions to shadow the loaded ones for use in file byte-compilation.
(defvar cl-compiling-file nil)
(defun cl-compiling-file ()
(or cl-compiling-file
- (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer))
- (equal (buffer-name (symbol-value 'outbuffer))
+ (and (boundp 'bytecomp-outbuffer)
+ (bufferp (symbol-value 'bytecomp-outbuffer))
+ (equal (buffer-name (symbol-value 'bytecomp-outbuffer))
" *Compiler Output*"))))
(defvar cl-proclaims-deferred nil)