/[emacs]/emacs/lisp/derived.el
ViewVC logotype

Diff of /emacs/lisp/derived.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.36 by monnier, Fri Sep 13 16:20:01 2002 UTC revision 1.37 by rms, Mon Apr 14 10:11:04 2003 UTC
# Line 225  been generated automatically, with a ref Line 225  been generated automatically, with a ref
225                                          ; Splice in the body (if any).                                          ; Splice in the body (if any).
226            ,@body            ,@body
227            )            )
228                                          ; Run the hooks, if any.           ;; Run the hooks, if any.
229           (run-mode-hooks ',hook)))))           ;; Make the generated code work in older Emacs versions
230             ;; that do not yet have run-mode-hooks.
231             (if (fboundp 'run-mode-hooks)
232                 (run-mode-hooks ',hook)
233               (run-hooks ',hook))))))
234    
235  ;; PUBLIC: find the ultimate class of a derived mode.  ;; PUBLIC: find the ultimate class of a derived mode.
236    

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26