comparison lisp/emacs-lisp/bytecomp.el @ 21542:19a199aaf3bc

(byte-compile-warn-about-unresolved-functions): Fix whitespace.
author Karl Heuer <kwzh@gnu.org>
date Wed, 15 Apr 1998 06:10:51 +0000
parents daf7dfe93205
children 375190ad5062
comparison
equal deleted inserted replaced
21541:f20029a36f55 21542:19a199aaf3bc
7 ;; Maintainer: FSF 7 ;; Maintainer: FSF
8 ;; Keywords: lisp 8 ;; Keywords: lisp
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
16 ;; GNU Emacs is free software; you can redistribute it and/or modify 16 ;; GNU Emacs is free software; you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by 17 ;; it under the terms of the GNU General Public License as published by
1071 ;; `unresolved' in the list `byte-compile-warnings' disables this. 1071 ;; `unresolved' in the list `byte-compile-warnings' disables this.
1072 (defun byte-compile-warn-about-unresolved-functions () 1072 (defun byte-compile-warn-about-unresolved-functions ()
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)
1080 (while rest 1080 (while rest
1081 (setq s (symbol-name (car (car rest))) 1081 (setq s (symbol-name (car (car rest)))