]> git.eshelyaron.com Git - emacs.git/commitdiff
(add-hook): Use byte-code-function-p, not compiled-function-p.
authorRichard M. Stallman <rms@gnu.org>
Sat, 8 Aug 1998 23:08:23 +0000 (23:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 8 Aug 1998 23:08:23 +0000 (23:08 +0000)
lisp/subr.el

index 3181b5f29a187b8dcfd5682d429eaf2cac8be35c..a4e3725d02fa1c86ae891b730e41f8d6c46f807f 100644 (file)
@@ -621,7 +621,7 @@ function, it is changed to a list of functions."
          (and (local-variable-if-set-p hook)
               (not (memq t (symbol-value hook)))))
       ;; Alter the local value only.
-      (or (if (or (consp function) (compiled-function-p function))
+      (or (if (or (consp function) (byte-code-function-p function))
              (member function (symbol-value hook))
            (memq function (symbol-value hook)))
          (set hook 
@@ -630,7 +630,7 @@ function, it is changed to a list of functions."
                 (cons function (symbol-value hook)))))
     ;; Alter the global value (which is also the only value,
     ;; if the hook doesn't have a local value).
-    (or (if (or (consp function) (compiled-function-p function))
+    (or (if (or (consp function) (byte-code-function-p function))
            (member function (default-value hook))
          (memq function (default-value hook)))
        (set-default hook