Mercurial > emacs
comparison lisp/progmodes/f90.el @ 62772:f2892faa87d4
* progmodes/ada-mode.el (ada-mode):
* progmodes/antlr-mode.el (antlr-mode):
* progmodes/autoconf.el (autoconf-mode):
* progmodes/dcl-mode.el (dcl-mode):
* progmodes/delphi.el (delphi-mode):
* progmodes/ebrowse.el (ebrowse-tree-mode)
(ebrowse-electric-list-mode, ebrowse-member-mode)
(ebrowse-electric-position-mode):
* progmodes/f90.el (f90-mode):
* progmodes/fortran.el (fortran-mode):
* progmodes/icon.el (icon-mode):
* progmodes/idlw-help.el (idlwave-help-mode):
* progmodes/idlw-shell.el (idlwave-shell-mode):
* progmodes/idlwave.el (idlwave-mode):
* progmodes/inf-lisp.el (inferior-lisp-mode):
* progmodes/m4-mode.el (m4-mode):
* progmodes/meta-mode.el (metafont-mode, metapost-mode):
* progmodes/modula2.el (modula-2-mode):
* progmodes/octave-inf.el (inferior-octave-mode):
* progmodes/octave-mod.el (octave-mode):
* progmodes/pascal.el (pascal-mode):
* progmodes/sh-script.el (sh-mode):
* progmodes/sql.el (sql-mode, sql-interactive-mode):
* progmodes/vhdl-mode.el (vhdl-mode):
* progmodes/xscheme.el (scheme-interaction-mode): Use run-mode-hooks.
author | Lute Kamstra <lute@gnu.org> |
---|---|
date | Thu, 26 May 2005 16:39:28 +0000 |
parents | ab4b241ac836 |
children | 18a818a2ee7c 01137c1fdbe9 |
comparison
equal
deleted
inserted
replaced
62771:a0b0cf078b7b | 62772:f2892faa87d4 |
---|---|
828 (set (make-local-variable 'beginning-of-defun-function) | 828 (set (make-local-variable 'beginning-of-defun-function) |
829 'f90-beginning-of-subprogram) | 829 'f90-beginning-of-subprogram) |
830 (set (make-local-variable 'end-of-defun-function) 'f90-end-of-subprogram) | 830 (set (make-local-variable 'end-of-defun-function) 'f90-end-of-subprogram) |
831 (set (make-local-variable 'add-log-current-defun-function) | 831 (set (make-local-variable 'add-log-current-defun-function) |
832 #'f90-current-defun) | 832 #'f90-current-defun) |
833 (run-hooks 'f90-mode-hook)) | 833 (run-mode-hooks 'f90-mode-hook)) |
834 | 834 |
835 | 835 |
836 ;; Inline-functions. | 836 ;; Inline-functions. |
837 (defsubst f90-in-string () | 837 (defsubst f90-in-string () |
838 "Return non-nil if point is inside a string. | 838 "Return non-nil if point is inside a string. |