summaryrefslogtreecommitdiff
path: root/lisp/dabbrev.el
Commit message (Collapse)AuthorAgeFilesLines
* Add 2008 to copyright years.Glenn Morris2008-01-071-1/+1
|
* Switch license to GPLv3 or later.Glenn Morris2007-07-251-1/+1
|
* (dabbrev-upcase-means-case-search): Doc fix.Juanma Barranquero2007-05-161-1/+1
|
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-1/+1
|
* (dabbrev-completion): Simplify code, by getting rid of `if' whoseLuc Teirlinck2005-11-271-56/+38
| | | | condition always returned nil. Doc fix.
* * message.el (message-expand-group): Pass the commonMasatake YAMATO2005-10-161-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prefix substring of completion to `display-completion-list'. * mh-comp.el (mh-complete-word): Pass the common prefix substring of completion to `display-completion-list'. * dabbrev.el (dabbrev-completion): Pass the common prefix substring of completion to `display-completion-list'. * filecache.el (file-cache-minibuffer-complete) (file-cache-complete): Ditto. * tempo.el (tempo-display-completions): Ditto. * wid-edit.el (widget-file-complete, widget-color-complete): Ditto. * emacs-lisp/lisp.el (lisp-complete-symbol): Ditto. * eshell/em-hist.el (eshell-list-history): Ditto. * mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto. * progmodes/etags.el (complete-tag): Ditto. * progmodes/make-mode.el (makefile-complete): Ditto. * progmodes/meta-mode.el (meta-complete-symbol): Ditto. * progmodes/octave-mod.el (octave-complete-symbol): Ditto. * progmodes/pascal.el (pascal-complete-word) (pascal-show-completions): Ditto. * textmodes/bibtex.el (bibtex-complete-internal): Ditto. * simple.el (completion-common-substring): New variable. (completion-setup-function): Use `completion-common-substring' to put faces. * minibuf.c (Fdisplay_completion_list): Add new optional argument COMMON_SUBSTRING. Bind `completion-common-substring' to the optional argument during running `completion-setup-hook'.
* Update years in copyright notice; nfc.Thien-Thi Nguyen2005-08-061-2/+2
|
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (dabbrev): Finish `defgroup' description with period.Juanma Barranquero2005-07-041-2/+2
| | | | (dabbrev-expand): "?\ " -> "?\s".
* Specify missing group (and type, if simple) in defcustom.Juanma Barranquero2005-05-191-1/+2
|
* Change release version from 21.4 to 22.1 throughout.Kim F. Storm2005-02-091-1/+1
| | | | Change development version from 21.3.50 to 22.0.50.
* (dabbrev-expand): When handling SPC M-/,Richard M. Stallman2004-11-161-19/+21
| | | | temporarily widen before finding the following word to copy.
* (dabbrev--substitute-expansion): Fix a bug which leadRichard M. Stallman2004-04-211-12/+17
| | | | | to loss of case of letters when performing case-insensitive expansions on certain abbreviations.
* (dabbrev-expand): Fix regexp construction.Stefan Monnier2004-03-261-11/+5
| | | | | (dabbrev--find-expansion): Use pop. (dabbrev--search): Use match-string-no-properties.
* Add arch taglinesMiles Bader2003-09-011-0/+1
|
* (dabbrev--safe-replace-match): Use with-no-warnings.Richard M. Stallman2003-08-171-1/+2
|
* Don't redo key bindings on loading, put them only in loaddefs.el.Andreas Schwab2003-08-021-5/+3
|
* (dabbrev--goto-start-of-abbrev): Use minibuffer-prompt-end.Richard M. Stallman2003-06-031-10/+9
|
* Trailing whitespace deleted.Juanma Barranquero2003-02-041-2/+2
|
* (dabbrev--substitute-expansion):Richard M. Stallman2003-01-061-3/+7
| | | | | Convert all whitespace to single spaces, except when it's carried over from the existing text.
* (dabbrev--search): Use inhibit-point-motion-hooks.Richard M. Stallman2002-07-181-0/+3
|
* (dabbrev-case-distinction): New option.Richard M. Stallman2002-05-141-19/+38
| | | | | | | (dabbrev--try-find): Handle dabbrev-case-distinction. (dabbrev--search): Clean up the code. (dabbrev-upcase-means-case-search): Doc fix. (dabbrev-case-replace): Fix custom tags and docs.
* (dabbrev--goto-start-of-abbrev): Put a limit on field-beginning search.Richard M. Stallman2002-03-181-1/+3
|
* (dabbrev--goto-start-of-abbrev):Richard M. Stallman2002-02-031-1/+1
| | | | Exit loop on beginning of field rather than bobp.
* (dabbrev-completion): Use "*Completions*".Stefan Monnier2001-11-081-1/+1
|
* (dabbrev--select-buffers): Fix last change.Eli Zaretskii2001-06-211-1/+1
|
* (dabbrev--make-friend-buffer-list): New function,Richard M. Stallman2001-06-201-102/+114
| | | | | | | | | | | broken out from dabbrev--find-expansion. Handle minibuffer specially here. (dabbrev--find-expansion): Simplify code in various ways. Don't treat minibuffers specially. Call dabbrev--make-friend-buffer-list. (dabbrev--select-buffers): Don't treat minibuffers specially. Simplify. (dabbrev--scanning-message): Do nothing when minibuffer is current.
* (dabbrev-select-buffers-function): Doc fix.Richard M. Stallman2001-05-051-2/+2
|
* (dabbrev--ignore-buffer-p): New function.Miles Bader2001-04-271-10/+14
| | | | | (dabbrev--find-expansion): Use it. (dabbrev--select-buffers): Don't select ignored buffers.
* Add doc strings for some functions.Richard M. Stallman2001-04-261-30/+59
| | | | | | | | (dabbrev--eliminate-newlines): New variable. (dabbrev--substitute-expansion): Convert newlines to spaces if dabbrev--eliminate-newlines is set. If abbrev and expansion are both all-lower-case, leave dabbrev--last-case-pattern nil.
* (dabbrev--select-buffers): Add a doc string.Eli Zaretskii2001-04-261-0/+5
|
* (dabbrev-ignored-buffer-regexps): Renamed fromGerd Moellmann2001-02-061-3/+3
| | | | dabbrev-ignored-regexps.
* (dabbrev--substitute-expansion):Gerd Moellmann2001-01-271-2/+6
| | | | | | Treat a one-capital-letter abbrev as "not all upper case", so as to force preservation of the expansion's pattern if the expansion starts with a capital letter.
* (dabbrev--last-case-pattern): Value is nowGerd Moellmann2000-12-151-37/+44
| | | | | | | | | | | `upcase' or `downcase' or nil. (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern. Pass new record-case-pattern arg to dabbrev--substitute-expansion. (dabbrev--substitute-expansion): New arg record-case-pattern. If it is non-nil, set dabbrev--last-case-pattern. If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION. (dabbrev--find-expansion): Remove extra nreverse.
* (dabbrev--find-expansion): Use walk-windows insteadGerd Moellmann2000-07-031-6/+6
| | | | of cycling through windows with next-window.
* (dabbrev-expand): Don't display messages in theGerd Moellmann2000-05-291-1/+2
| | | | echo area if the minibuffer window is active.
* Add debug-ignored-errors.Dave Love2000-05-221-8/+13
| | | | (dabbrev-completion): Use mapc.
* (dabbrev-ignored-regexps): New user-option.Gerd Moellmann2000-04-031-6/+23
| | | | | (dabbrev--find-expansion): Ignore buffers matching a regexp from dabbrev-ignored-regexps.
* * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.Sam Steingold1999-11-151-10/+10
|
* (dabbrev--find-expansion): Don't scan the current bufferKarl Heuer1998-09-231-8/+10
| | | | over again.
* (dabbrev-ignored-buffer-names): Fix typo. Add *Buffer List*.Richard M. Stallman1998-06-251-1/+1
|
* (dabbrev-case-fold-search, dabbrev-case-replace,Andreas Schwab1998-06-241-5/+5
| | | | dabbrev-check-other-buffers): Use `other' widget type.
* *** empty log message ***Dan Nicolaescu1998-05-261-2/+3
|
* *** empty log message ***Dan Nicolaescu1998-04-201-1/+2
|
* Comment change.Richard M. Stallman1998-03-141-1/+1
|
* (dabbrev-ignored-buffer-names): New variable.Richard M. Stallman1998-01-091-3/+10
| | | | | (dabbrev--find-expansion): Ignore those buffers unless they get specifically preferred.
* (dabbrev-case-fold-search): Remove extra quote in customize constant.Richard M. Stallman1997-09-091-2/+2
| | | | (dabbrev-case-replace): Likewise.
* Comment change.Richard M. Stallman1997-08-121-1/+1
|
* (dabbrev-abbrev-skip-leading-regexp): Doc fix.Richard M. Stallman1997-08-111-3/+1
|