summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/find-func.el
Commit message (Collapse)AuthorAgeFilesLines
...
* (find-function-search-for-symbol): Fix spacing.Juanma Barranquero2002-09-061-1/+1
|
* (find-function-search-for-symbol): Use find-file-hook instead of ...-hooks.Stefan Monnier2002-08-151-1/+1
|
* (find-function-search-for-symbol): Obey `definition-name' properties.Richard M. Stallman2002-08-131-0/+4
|
* (find-function-search-for-symbol): Find funs defined with defun-cvs-mode.Stefan Monnier2002-05-161-5/+8
| | | | | (find-function-space-re): New const. Skips comments as well. (find-function-regexp, find-variable-regexp): Use it.
* (find-function-search-for-symbol): Handle more whitespace/newlineMarkus Rost2002-05-121-1/+1
| | | | combinations in symbol definitions.
* (find-function-search-for-symbol): Add autoload cookie.Markus Rost2002-05-081-1/+2
| | | | | (find-function-regexp): Include "\(quote " to match the defaliases in loaddefs.el.
* (find-function-search-for-symbol): Use with-syntax-table.Markus Rost2002-05-061-17/+13
|
* (find-function-search-for-symbol): Bind case-fold-search when searching.Markus Rost2002-05-041-1/+2
|
* (find-function-search-for-symbol):Stefan Monnier2001-10-301-5/+10
| | | | | If the regexp doesn't match, use a looser one. (find-variable-noselect): Add `file' argument.
* (find-function-regexp): AddGerd Moellmann2001-07-251-2/+3
| | | | | easy-mmode-define-global-mode to the regexp. Allow newlines in front of the function name.
* Some fixes to follow coding conventions.Pavel Janík2001-07-161-1/+1
|
* (find-function-do-it): Quote the hook.Stefan Monnier2000-11-031-1/+1
|
* (find-variable-regexp): Avoid defgroup.Dave Love2000-11-021-2/+2
|
* (find-function-regexp): Remove spurion.Dave Love2000-10-061-27/+3
| | | | | Fix for define-minor-mode. (function-at-point): Alias to function-called-at-point.
* Fix last change.Dave Love1999-11-251-1/+1
|
* (find-function-regexp): Use `define-minor-mode' after easy-menuDave Love1999-11-231-3/+3
| | | | change.
* (find-function-regexp): Allow a ) or ( to end a function name.Richard M. Stallman1999-08-291-1/+1
|
* (find-function-on-key): Fix previousDave Love1999-01-131-1/+1
| | | | change.
* (find-function-on-key): DTRT for mouseDave Love1999-01-101-8/+21
| | | | bindings.
* More doc fixes.Dave Love1999-01-071-6/+6
|
* Doc fixes.Richard M. Stallman1999-01-061-22/+27
| | | | | (find-function-regexp): Extend for define-generic-mode, define-derived-mode, easy-mmode-define-minor-mode.
* (find-function-search-for-symbol):Dave Love1998-12-111-23/+21
| | | | | Remove unnecessary test on `library' for explicit file name. Widen scope of save-match-data.
* (find-function-regexp): Handle skeletons.Richard M. Stallman1998-11-191-1/+1
|
* (find-variable-noselect): Autoload.Karl Heuer1998-11-071-0/+1
|
* (find-function-search-for-symbol): Fix error messages.Karl Heuer1998-09-211-2/+2
|
* (find-function-search-for-symbol): LookDave Love1998-08-271-1/+8
| | | | for compressed library files too.
* Fix :version tags to have a string value, not a float.Andreas Schwab1998-08-261-4/+4
|
* (find-function-search-for-symbol): Ignore directoriesRichard M. Stallman1998-08-011-5/+2
| | | | when looking for a library file.
* (find-function-noselect): Autoload cookie.Richard M. Stallman1998-07-291-0/+1
|
* (find-function-regexp): Added :version 20.3.Richard M. Stallman1998-07-141-18/+36
| | | | | | | | | | | (find-variable-regexp, find-function-after-hook): Likewise. (find-function-recenter-line): Likewise. (find-function-recenter-line): Remove autoload cookie. (find-function-do-it): Made more solid. `save-excursion' around call to `find-function-noselect'. `find-function-other-window' and `find-function-other-frame' point behaviour should be correct now when function in a current buffer. (find-function-setup-keys): New function to set up keybindings.
* Require `loadhist'. VariableRichard M. Stallman1998-06-291-148/+231
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (find-function-function) variable removed. (find-function-regexp): New variable, taken from former constant in `find-function-noselect'. Can now find function definitions with parameters on a new line. (find-variable-regexp): New variable. (find-function-recenter-line): New variable. (find-function-after-hook): New variable. (find-function-search-for-symbol): subroutine, from of `find-function-noselect' (find-function-search-for-symbol): `regexp-quote' the symbol name: needed to find-function `mapcar*' for example. (find-function-noselect): Improved docstring. Don't include `library' in let. Use `symbol-file' instead of `describe-symbol-find-file' (find-function-read): Renamed from `find-function-read-function'. With optional arg now read a variable. (find-function-read): Separate `completing-read' calls for variables and functions. (find-function-do-it): If buffer found was already current push mark. Added parameter to indicate if a variable is being searched for. (find-function-do-it): Mention new `find-function-recenter-line' and `find-function-after-hook' in docstring. Use them. (find-function): Remove optional arg. Use `find-function-do-it' and `find-function-read'. (find-function-other-window): ditto. (find-function-other-frame): ditto. (find-function): Mention `find-function-recenter-line' and `find-function-after-hook' in docstring. (find-function-other-window): Remove most of docstring and add reference to `find-function' instead. (find-function-other-frame): Ditto. (find-variable-noselect): New function for finding the point of definition of variables, modeled on `find-function-noselect'. (find-variable-noselect): Use `symbol-file' instead of `describe-symbol-find-file'. (find-variable): New function. (find-variable-other-window): Ditto. (find-variable-other-frame): Ditto. (find-variable): Mention `find-function-recenter-line' and `find-function-after-hook' in docstring. (find-variable-other-window): Remove most of docstring and add reference to `find-variable' instead. (find-variable-other-frame): Ditto. (find-function-on-key): Simplified. Removed stuff now taken care of by interactive "k". (find-function-at-point): New function. (find-variable-at-point): Ditto.
* (find-function-on-key): Don't discard up event after down event.Richard M. Stallman1998-06-141-8/+0
|
* (find-function-noselect): Don't callKarl Heuer1998-06-031-2/+3
| | | | | format twice with the error message. Quote the function name before splicing into regexp.
* (find-function-noselect): Autoload it.Richard M. Stallman1998-05-091-0/+1
|
* (find-function-on-key):Richard M. Stallman1998-04-171-8/+34
| | | | | | | If definition is a list, don't call find-function-other-window. Handle mouse events (code copied from describe-key-briefly). (find-function-do-it): Doc fix. (find-function-noselect): Doc fix.
* Customized.Stephen Eglen1998-02-221-4/+12
|
* (find-function, find-function-other-window, find-function-other-frame,Dave Love1997-10-251-0/+4
| | | | find-function-on-key): Add autoload cookies.
* Initial revisionDave Love1997-10-251-0/+249