comparison lisp/ChangeLog @ 58556:8ff63943e93e

(bibtex-sort-entry-class) (bibtex-comment-start): Use defcustom. (bibtex-entry-field-alist): Use nil if initial content of the field is undefined. Fix docstring. (bibtex-parse-keys-timeout, bibtex-autokey-additional-names) (bibtex-generate-autokey, bibtex-parse-buffers-stealthily) (bibtex-mode, bibtex-field-list, bibtex-entry-updat) (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field): Fix docstring. (bibtex-autokey-title-terminators): Use only one regexp. (bibtex-string-maybe-empty-head): New variable. (bibtex-remove-delimiters-string): New function. (bibtex-text-in-field-bounds, bibtex-text-in-string): Use bibtex-remove-delimiters-string. (bibtex-progress-message, bibtex-field-left-delimiter) (bibtex-field-right-delimiter, bibtex-entry-left-delimiter) (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq. (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'. Simplify. (bibtex-format-entry): Use save-excursion for inherited booktitle. Use eq and bibtex-remove-delimiters-string. For end markers use insertion type so that marker stays after inserted text. (bibtex-autokey-get-names): Return empty string if name is missing. (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before calling bibtex-autokey-name-case-convert. (bibtex-autokey-demangle-title): Call bibtex-autokey-titleword-case-convert. Remove call to bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title. (bibtex-global-key-alist, bibtex-read-string-key): New functions. (bibtex-read-key): New optional arg global. (bibtex-files-expand): New optional arg force. (bibtex-complete-string-cleanup): Expansion of abbrev can be absent. (bibtex-complete-crossref-cleanup): Rename from bibtex-complete-key-cleanup. Simplify code. (bibtex-copy-summary-as-kill): Remove arg key. Operate on current entry. Use looking-at. (bibtex-button): Add docstring. (bibtex-entry): Simplify. (bibtex-make-field): Replace optional arg called-by-yank with more specific args move and interactive. (bibtex-end-of-entry): Use forward-sexp. (bibtex-find-entry-globally): Remove. (bibtex-find-crossref): Allow for crossref key located in other buffer. Bound to C-c C-x. (bibtex-find-entry): New optional args global and display. (bibtex-find-text): Fix docstring. Remove arg as-if-interactive. (bibtex-validate): Use arg force of bibtex-files-expand. (bibtex-clean-entry): Bugfix, clean string entries properly. Always keep point at beginning of entry. (bibtex-complete): Bugfix. Handle string entries properly. Call cleanup functions only if needed. (bibtex-String): Use bibtex-read-string-key. (bibtex-url): Use bibtex-remove-delimiters-string. Do not alter case of replacement text.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 26 Nov 2004 23:24:44 +0000
parents 0bfab3f5de99
children 4082917690cc
comparison
equal deleted inserted replaced
58555:5f8d1614caf3 58556:8ff63943e93e
1 2004-11-26 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2
3 * textmodes/bibtex.el (bibtex-sort-entry-class)
4 (bibtex-comment-start): Use defcustom.
5 (bibtex-entry-field-alist): Use nil if initial content of the
6 field is undefined. Fix docstring.
7 (bibtex-parse-keys-timeout, bibtex-autokey-additional-names)
8 (bibtex-generate-autokey, bibtex-parse-buffers-stealthily)
9 (bibtex-mode, bibtex-field-list, bibtex-entry-updat)
10 (bibtex-autofill-entry, bibtex-entry-index, bibtex-next-field):
11 Fix docstring.
12 (bibtex-autokey-title-terminators): Use only one regexp.
13 (bibtex-string-maybe-empty-head): New variable.
14 (bibtex-remove-delimiters-string): New function.
15 (bibtex-text-in-field-bounds, bibtex-text-in-string):
16 Use bibtex-remove-delimiters-string.
17 (bibtex-progress-message, bibtex-field-left-delimiter)
18 (bibtex-field-right-delimiter, bibtex-entry-left-delimiter)
19 (bibtex-entry-right-delimiter, bibtex-search-entry): Use eq.
20 (bibtex-insert-kill): Rename from `bibtex-insert-current-kill'.
21 Simplify.
22 (bibtex-format-entry): Use save-excursion for inherited booktitle.
23 Use eq and bibtex-remove-delimiters-string. For end markers use
24 insertion type so that marker stays after inserted text.
25 (bibtex-autokey-get-names): Return empty string if name is missing.
26 (bibtex-autokey-demangle-name): Call bibtex-autokey-abbrev before
27 calling bibtex-autokey-name-case-convert.
28 (bibtex-autokey-demangle-title):
29 Call bibtex-autokey-titleword-case-convert. Remove call to
30 bibtex-autokey-titleword-case-convert from bibtex-autokey-get-title.
31 (bibtex-global-key-alist, bibtex-read-string-key): New functions.
32 (bibtex-read-key): New optional arg global.
33 (bibtex-files-expand): New optional arg force.
34 (bibtex-complete-string-cleanup): Expansion of abbrev can be absent.
35 (bibtex-complete-crossref-cleanup): Rename from
36 bibtex-complete-key-cleanup. Simplify code.
37 (bibtex-copy-summary-as-kill): Remove arg key. Use looking-at.
38 Operate on current entry.
39 (bibtex-button): Add docstring.
40 (bibtex-entry): Simplify.
41 (bibtex-make-field): Replace optional arg called-by-yank with more
42 specific args move and interactive.
43 (bibtex-end-of-entry): Use forward-sexp.
44 (bibtex-find-entry-globally): Remove.
45 (bibtex-find-crossref): Allow for crossref key located in other buffer.
46 Bound to C-c C-x.
47 (bibtex-find-entry): New optional args global and display.
48 (bibtex-find-text): Fix docstring. Remove arg as-if-interactive.
49 (bibtex-validate): Use arg force of bibtex-files-expand.
50 (bibtex-clean-entry): Bugfix, clean string entries properly.
51 Always keep point at beginning of entry.
52 (bibtex-complete): Bugfix. Handle string entries properly.
53 Call cleanup functions only if needed.
54 (bibtex-String): Use bibtex-read-string-key.
55 (bibtex-url): Use bibtex-remove-delimiters-string. Do not alter
56 case of replacement text.
57
1 2004-11-26 Lars Hansen <larsh@math.ku.dk> 58 2004-11-26 Lars Hansen <larsh@math.ku.dk>
2 59
3 * tramp.el (tramp-handle-directory-files-and-attributes): New 60 * tramp.el (tramp-handle-directory-files-and-attributes): New function.
4 function.
5 (tramp-perl-directory-files-and-attributes): New constant. 61 (tramp-perl-directory-files-and-attributes): New constant.
6 (tramp-file-name-handler-alist): Delete file-directory-files, add 62 (tramp-file-name-handler-alist): Delete file-directory-files, add
7 directory-files-and-attributes. 63 directory-files-and-attributes.
8 (tramp-perl-file-attributes): Surround uid and gid by double 64 (tramp-perl-file-attributes): Surround uid and gid by double
9 quotes. Change parameter id-format from nonnumeric. 65 quotes. Change parameter id-format from nonnumeric.
20 in use. 76 in use.
21 77
22 2004-11-26 Lars Hansen <larsh@math.ku.dk> 78 2004-11-26 Lars Hansen <larsh@math.ku.dk>
23 79
24 * desktop.el (desktop-read): Replace mapcar with mapc. 80 * desktop.el (desktop-read): Replace mapcar with mapc.
25 (desktop-create-buffer): Replace mapcar with mapc. Remove 81 (desktop-create-buffer): Replace mapcar with mapc.
26 redundant piece of code. 82 Remove redundant piece of code.
27 83
28 2004-11-27 Nick Roberts <nickrob@snap.net.nz> 84 2004-11-27 Nick Roberts <nickrob@snap.net.nz>
29 85
30 * progmodes/gud.el (gud-display-line): Use display-buffer 86 * progmodes/gud.el (gud-display-line): Use display-buffer
31 for GDB-UI as for GUD. 87 for GDB-UI as for GUD.
32 88
33 * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view): 89 * progmodes/gdb-ui.el (gdb-view-source, gdb-selected-view):
34 Delete variables. 90 Delete variables.
35 (gdb-ann3): Don't make GUD buffer dedicated. 91 (gdb-ann3): Don't make GUD buffer dedicated.
36 (gdb-goto-breakpoint, gdb-display-buffer): Don't always 92 (gdb-goto-breakpoint, gdb-display-buffer): Don't always dedicate.
37 dedicate.
38 (gdb-display-source-buffer): Delete function. 93 (gdb-display-source-buffer): Delete function.
39 (gdb-view-source-function, gdb-view-assembler): Delete functions. 94 (gdb-view-source-function, gdb-view-assembler): Delete functions.
40 (menu): Delete menu bindings for viewing source/assembler. 95 (menu): Delete menu bindings for viewing source/assembler.
41 (gdb-setup-windows, gdb-restore-windows): 96 (gdb-setup-windows, gdb-restore-windows):
42 Don't dedicate GUD. No assembler now. 97 Don't dedicate GUD. No assembler now.
56 111
57 2004-11-25 Richard M. Stallman <rms@gnu.org> 112 2004-11-25 Richard M. Stallman <rms@gnu.org>
58 113
59 * progmodes/flymake.el: Reindent. 114 * progmodes/flymake.el: Reindent.
60 (flymake-split-string): Turn into defalias. 115 (flymake-split-string): Turn into defalias.
61 (flymake-fix-file-name): Renamed from flymake-fix-path-name. 116 (flymake-fix-file-name): Rename from flymake-fix-path-name.
62 (flymake-ensure-ends-with-slash): Rename arg to FILENAME. 117 (flymake-ensure-ends-with-slash): Rename arg to FILENAME.
63 (flymake-get-common-file-prefix): Renamed from ...path... Doc fix. 118 (flymake-get-common-file-prefix): Rename from ...path... Doc fix.
64 (flymake-build-relative-filename): Renamed from ...path. 119 (flymake-build-relative-filename): Rename from ...path.
65 Fix error message. 120 Fix error message.
66 121
67 2004-11-25 Cheng Gao <chenggao@gmail.com> 122 2004-11-25 Cheng Gao <chenggao@gmail.com>
68 123
69 * progmodes/flymake.el: Much whitespace and capitalization change. 124 * progmodes/flymake.el: Much whitespace and capitalization change.
114 new-units and pure by declared variables. 169 new-units and pure by declared variables.
115 (math-try-cancel-units): New variable. 170 (math-try-cancel-units): New variable.
116 (math-simplify-units-quotient): Replace variable try-cancel-units by 171 (math-simplify-units-quotient): Replace variable try-cancel-units by
117 declared variable. 172 declared variable.
118 173
119 >>>>>>> 1.6669
120 2004-11-24 Richard M. Stallman <rms@gnu.org> 174 2004-11-24 Richard M. Stallman <rms@gnu.org>
121 175
122 * textmodes/ispell.el (ispell-check-version): 176 * textmodes/ispell.el (ispell-check-version):
123 If default-directory is nonexistent, use home dir. 177 If default-directory is nonexistent, use home dir.
124 178