mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(add-log-current-defun): Fix thinko w.r.t derived-mode-p.
This commit is contained in:
parent
d60a4e3a42
commit
fb1b68a482
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* add-log.el (add-log-current-defun): Fix thinko w.r.t derived-mode-p.
|
||||
|
||||
2007-09-20 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* textmodes/tex-mode.el (tex-validate-buffer): Use paragraph
|
||||
|
|
|
|||
|
|
@ -1016,7 +1016,7 @@ Has a preference of looking backwards."
|
|||
((derived-mode-p 'texinfo-mode)
|
||||
(if (re-search-backward "^@node[ \t]+\\([^,\n]+\\)" nil t)
|
||||
(match-string-no-properties 1)))
|
||||
((derived-mode-p '(perl-mode cperl-mode))
|
||||
((derived-mode-p 'perl-mode 'cperl-mode)
|
||||
(if (re-search-backward "^sub[ \t]+\\([^({ \t\n]+\\)" nil t)
|
||||
(match-string-no-properties 1)))
|
||||
;; Emacs's autoconf-mode installs its own
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue