comparison lisp/emacs-lisp/advice.el @ 11035:97da4cb32d03

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Thu, 16 Mar 1995 04:37:48 +0000
parents a95ca44cec95
children 83f275dcd93a
comparison
equal deleted inserted replaced
11034:27df51bcb4b0 11035:97da4cb32d03
1434 ;; t 1434 ;; t
1435 ;; 1435 ;;
1436 ;; (fie 2) 1436 ;; (fie 2)
1437 ;; 8 1437 ;; 8
1438 ;; 1438 ;;
1439 ;; If you put a preactivating `defadvice' into an elisp file that gets byte- 1439 ;; If you put a preactivating `defadvice' into a Lisp file that gets byte-
1440 ;; compiled then the constructed advised definition will get compiled by 1440 ;; compiled then the constructed advised definition will get compiled by
1441 ;; the byte-compiler. For that to occur in a v18 emacs you have to put the 1441 ;; the byte-compiler. For that to occur in a v18 emacs you have to put the
1442 ;; `defadvice' inside a `defun' because the v18 compiler does not compile 1442 ;; `defadvice' inside a `defun' because the v18 compiler does not compile
1443 ;; top-level forms other than `defun' or `defmacro', for example, 1443 ;; top-level forms other than `defun' or `defmacro', for example,
1444 ;; 1444 ;;