aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-04-15 06:10:51 +0000
committerKarl Heuer1998-04-15 06:10:51 +0000
commit170c97338bf9e878e1da3effc0112841e5091f85 (patch)
treeccdfddb0b7fc737c07c00eb1d7bca82095558632
parent23e7714ec3e1c602bb9196dcf50c1b6035f299ae (diff)
downloademacs-170c97338bf9e878e1da3effc0112841e5091f85.tar.gz
emacs-170c97338bf9e878e1da3effc0112841e5091f85.zip
(byte-compile-warn-about-unresolved-functions): Fix whitespace.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 2d8fd7bb0f3..d4225ff616e 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -9,7 +9,7 @@
9 9
10;;; This version incorporates changes up to version 2.10 of the 10;;; This version incorporates changes up to version 2.10 of the
11;;; Zawinski-Furuseth compiler. 11;;; Zawinski-Furuseth compiler.
12(defconst byte-compile-version "$Revision: 2.38 $") 12(defconst byte-compile-version "$Revision: 2.39 $")
13 13
14;; This file is part of GNU Emacs. 14;; This file is part of GNU Emacs.
15 15
@@ -1073,7 +1073,7 @@ otherwise pop it")
1073 (if (memq 'unresolved byte-compile-warnings) 1073 (if (memq 'unresolved byte-compile-warnings)
1074 (let ((byte-compile-current-form "the end of the data")) 1074 (let ((byte-compile-current-form "the end of the data"))
1075 (if (cdr byte-compile-unresolved-functions) 1075 (if (cdr byte-compile-unresolved-functions)
1076 (let* ((str "The following functions are not known to be defined: ") 1076 (let* ((str "The following functions are not known to be defined:")
1077 (L (length str)) 1077 (L (length str))
1078 (rest (reverse byte-compile-unresolved-functions)) 1078 (rest (reverse byte-compile-unresolved-functions))
1079 s) 1079 s)