aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-07-23 02:54:15 +0000
committerGlenn Morris2009-07-23 02:54:15 +0000
commit4b94906242f32ccb2567f66a62dd6cea0db1a9e1 (patch)
tree692b3f9dcf589df4790f835202de85263df16968
parent924bfe49d8f70b05e734c2038b05d2c3e5ead7dc (diff)
downloademacs-4b94906242f32ccb2567f66a62dd6cea0db1a9e1.tar.gz
emacs-4b94906242f32ccb2567f66a62dd6cea0db1a9e1.zip
(cl-compiling-file): Update for the name-change `outbuffer' to
`bytecomp-outbuffer'.
-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 @@
1;;; cl.el --- Common Lisp extensions for Emacs 1;;; cl.el --- Common Lisp extensions for Emacs
2 2
3;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, 3;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 4;; 2009 Free Software Foundation, Inc.
5 5
6;; Author: Dave Gillespie <daveg@synaptics.com> 6;; Author: Dave Gillespie <daveg@synaptics.com>
7;; Version: 2.02 7;; Version: 2.02
@@ -272,8 +272,9 @@ definitions to shadow the loaded ones for use in file byte-compilation.
272(defvar cl-compiling-file nil) 272(defvar cl-compiling-file nil)
273(defun cl-compiling-file () 273(defun cl-compiling-file ()
274 (or cl-compiling-file 274 (or cl-compiling-file
275 (and (boundp 'outbuffer) (bufferp (symbol-value 'outbuffer)) 275 (and (boundp 'bytecomp-outbuffer)
276 (equal (buffer-name (symbol-value 'outbuffer)) 276 (bufferp (symbol-value 'bytecomp-outbuffer))
277 (equal (buffer-name (symbol-value 'bytecomp-outbuffer))
277 " *Compiler Output*")))) 278 " *Compiler Output*"))))
278 279
279(defvar cl-proclaims-deferred nil) 280(defvar cl-proclaims-deferred nil)