changeset 64405:9fcfa0b883d4

(byte-compile-maybe-guarded): Fix typo in docstring. (byte-compile-interactive-only-functions): Add `insert-buffer' and `insert-file-literally'.
author Juanma Barranquero <lekktu@gmail.com>
date Sat, 16 Jul 2005 21:17:10 +0000
parents dd542311a73d
children 3b29f20942e2
files lisp/emacs-lisp/bytecomp.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el	Sat Jul 16 19:21:10 2005 +0000
+++ b/lisp/emacs-lisp/bytecomp.el	Sat Jul 16 21:17:10 2005 +0000
@@ -358,7 +358,7 @@
 
 (defvar byte-compile-interactive-only-functions
   '(beginning-of-buffer end-of-buffer replace-string replace-regexp
-			insert-file)
+    insert-file insert-buffer insert-file-literally)
   "List of commands that are not meant to be called from Lisp.")
 
 (defvar byte-compile-not-obsolete-var nil
@@ -3353,11 +3353,11 @@
   "Execute forms in BODY, potentially guarded by CONDITION.
 CONDITION is a variable whose value is a test in an `if' or `cond'.
 BODY is the code to compile  first arm of the if or the body of the
-cond clause.  If CONDITION's value is of the form (foundp 'foo)
+cond clause.  If CONDITION's value is of the form (fboundp 'foo)
 or (boundp 'foo), the relevant warnings from BODY about foo's
 being undefined will be suppressed.
 
-If CONDITION's value is (not (featurep emacs)) or (featurep 'xemacs),
+If CONDITION's value is (not (featurep 'emacs)) or (featurep 'xemacs),
 that suppresses all warnings during execution of BODY."
   (declare (indent 1) (debug t))
   `(let* ((fbound