diff options
| author | Roland Winkler | 2005-12-29 15:25:28 +0000 |
|---|---|---|
| committer | Roland Winkler | 2005-12-29 15:25:28 +0000 |
| commit | ffc1e1db038d748fd94c8d0f1f17d9193d114c7e (patch) | |
| tree | 96fddbc45a93928ffd029bf4b883b583f7ffab92 /lisp/ChangeLog | |
| parent | 88ec8c53c63b091d8b7ccc8fef3b5948f4c0a53e (diff) | |
| download | emacs-ffc1e1db038d748fd94c8d0f1f17d9193d114c7e.tar.gz emacs-ffc1e1db038d748fd94c8d0f1f17d9193d114c7e.zip | |
(bibtex-entry-type-whitespace)
(bibtex-entry-type-str, bibtex-empty-field-re)
(bibtex-search-backward-string, bibtex-preamble-prefix)
(bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head):
Removed.
(bibtex-any-valid-entry-type): New variable.
(bibtex-parse-field-name): Simplify.
(bibtex-parse-string, bibtex-search-forward-string): New arg
empty-key.
(bibtex-preamble-prefix): Include left delimiter.
(bibtex-search-forward-field, bibtex-search-backward-field): Allow
unbounded search past entry boundaries (required by bibtex-pop).
(bibtex-text-in-field-bounds): Use push.
(bibtex-text-in-field): Do not use bibtex-narrow-to-entry.
(bibtex-parse-preamble, bibtex-valid-entry)
(bibtex-beginning-first-field): New functions.
(bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp.
(bibtex-map-entries): Fix docstring.
(bibtex-flash-head): New arg prompt. Simplify.
(bibtex-enclosing-field): Include code of bibtex-inside-field.
(bibtex-insert-kill): Simplify. Always insert text past the
current field or entry.
(bibtex-format-entry): Use bibtex-parse-field.
(bibtex-pop): Use bibtex-beginning-of-entry and
bibtex-end-of-entry to initiate the search. Insert empty field if
we found ourselves.
(bibtex-print-help-message): New args field and comma. Handle
entry keys.
(bibtex-make-field): Use bibtex-beginning-of-entry.
(bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any
invalid entry.
(bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string.
Handle preambles. Simplify code for thorough test.
(bibtex-next-field, bibtex-find-text, bibtex-find-text-internal):
New arg comma. Handle entry heads.
(bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters)
(bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field):
New arg comma.
(bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head.
(bibtex-fill-field): Simplify.
(bibtex-fill-entry): Use bibtex-beginning-first-field and
bibtex-parse-field.
(bibtex-convert-alien): Do not wait before calling
bibtex-validate.
(bibtex-complete): Use bibtex-parse-preamble.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 288e4d7ed44..9190aa3c988 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,51 @@ | |||
| 1 | 2005-12-29 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de> | ||
| 2 | |||
| 3 | * textmodes/bibtex.el (bibtex-entry-type-whitespace) | ||
| 4 | (bibtex-entry-type-str, bibtex-empty-field-re) | ||
| 5 | (bibtex-search-backward-string, bibtex-preamble-prefix) | ||
| 6 | (bibtex-search-entry, bibtex-enclosing-entry-maybe-empty-head): | ||
| 7 | Removed. | ||
| 8 | (bibtex-any-valid-entry-type): New variable. | ||
| 9 | (bibtex-parse-field-name): Simplify. | ||
| 10 | (bibtex-parse-string, bibtex-search-forward-string): New arg | ||
| 11 | empty-key. | ||
| 12 | (bibtex-preamble-prefix): Include left delimiter. | ||
| 13 | (bibtex-search-forward-field, bibtex-search-backward-field): Allow | ||
| 14 | unbounded search past entry boundaries (required by bibtex-pop). | ||
| 15 | (bibtex-text-in-field-bounds): Use push. | ||
| 16 | (bibtex-text-in-field): Do not use bibtex-narrow-to-entry. | ||
| 17 | (bibtex-parse-preamble, bibtex-valid-entry) | ||
| 18 | (bibtex-beginning-first-field): New functions. | ||
| 19 | (bibtex-skip-to-valid-entry): Use bibtex-valid-entry. Fix regexp. | ||
| 20 | (bibtex-map-entries): Fix docstring. | ||
| 21 | (bibtex-flash-head): New arg prompt. Simplify. | ||
| 22 | (bibtex-enclosing-field): Include code of bibtex-inside-field. | ||
| 23 | (bibtex-insert-kill): Simplify. Always insert text past the | ||
| 24 | current field or entry. | ||
| 25 | (bibtex-format-entry): Use bibtex-parse-field. | ||
| 26 | (bibtex-pop): Use bibtex-beginning-of-entry and | ||
| 27 | bibtex-end-of-entry to initiate the search. Insert empty field if | ||
| 28 | we found ourselves. | ||
| 29 | (bibtex-print-help-message): New args field and comma. Handle | ||
| 30 | entry keys. | ||
| 31 | (bibtex-make-field): Use bibtex-beginning-of-entry. | ||
| 32 | (bibtex-end-of-entry): Use bibtex-valid-entry. Recognize any | ||
| 33 | invalid entry. | ||
| 34 | (bibtex-validate): Use bibtex-valid-entry and bibtex-parse-string. | ||
| 35 | Handle preambles. Simplify code for thorough test. | ||
| 36 | (bibtex-next-field, bibtex-find-text, bibtex-find-text-internal): | ||
| 37 | New arg comma. Handle entry heads. | ||
| 38 | (bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters) | ||
| 39 | (bibtex-kill-field, bibtex-copy-field-as-kil, bibtex-empty-field): | ||
| 40 | New arg comma. | ||
| 41 | (bibtex-kill-entry): Use bibtex-any-entry-maybe-empty-head. | ||
| 42 | (bibtex-fill-field): Simplify. | ||
| 43 | (bibtex-fill-entry): Use bibtex-beginning-first-field and | ||
| 44 | bibtex-parse-field. | ||
| 45 | (bibtex-convert-alien): Do not wait before calling | ||
| 46 | bibtex-validate. | ||
| 47 | (bibtex-complete): Use bibtex-parse-preamble. | ||
| 48 | |||
| 1 | 2005-12-29 Nick Roberts <nickrob@snap.net.nz> | 49 | 2005-12-29 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 50 | ||
| 3 | * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1): | 51 | * progmodes/gdb-ui.el (gdb-tooltip-print, gdb-tooltip-print-1): |