diff options
author | Juri Linkov <juri@jurta.org> | 2005-03-16 07:41:57 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-03-16 07:41:57 +0000 |
commit | fe3947c39dc5c696cde112af9abd992862f9d0bf (patch) | |
tree | c15e9be07f93d94c3d9aff323ef38b93bfb001ca | |
parent | 7f55d3b75557176a2bcc948795af13d3e78a18a1 (diff) | |
download | emacs-fe3947c39dc5c696cde112af9abd992862f9d0bf.tar.gz |
(find-function-regexp): Add defun-emitting macro `menu-bar-make-toggle'.
-rw-r--r-- | lisp/ChangeLog | 16 | ||||
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 3 |
2 files changed, 18 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0d12765a479..e9cd1862d0b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,19 @@ +2005-03-16 Juri Linkov <juri@jurta.org> + + * emacs-lisp/find-func.el (find-function-regexp): + Add defun-emitting macro `menu-bar-make-toggle'. + + * isearch.el: Put `isearch-scroll' property to + `split-window-horizontally'. + + * info.el: Update error messages for `debug-ignored-errors'. + (Info-isearch-search): Doc fix. + (Info-find-node): Move up code to go into info buffer before + recording the node to the history. + (Info-fontify-node): Fontify titles only if the next line + has two or more `*', `=', `-', `.'. + Display "go to this node" for empty (match-string 3). + 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> * term/mac-win.el: Add mouse pointer shape constants. diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 18e5706dc3d..eab957e5671 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -63,7 +63,8 @@ (concat "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|\ ine-minor-mode\\|un-cvs-mode\\|foo\\|[^cfgv]\\w+\\*?\\)\ -\\|easy-mmode-define-global-mode\\)" find-function-space-re +\\|easy-mmode-define-global-mode\\|menu-bar-make-toggle\\)" + find-function-space-re "\\('\\|\(quote \\)?%s\\(\\s-\\|$\\|\(\\|\)\\)") "The regexp used by `find-function' to search for a function definition. Note it must contain a `%s' at the place where `format' |