comparison lisp/ChangeLog @ 50915:76fd88f6c790

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 09 May 2003 13:21:05 +0000
parents 7a59612e7a27
children 2318a0020ca5
comparison
equal deleted inserted replaced
50914:26edd9033fca 50915:76fd88f6c790
1 2003-05-09 Stefan Monnier <monnier@cs.yale.edu>
2
3 * uniquify.el: Use the original buffer-name as `base' in place of the
4 nondirectory part of the file name.
5 (uniquify-rationalize-file-buffer-names):
6 Split the `newbuffile' arg into `base' and `dirname'.
7 Reuse old uniquify-items to avoid recomputing their base&dirname.
8 (uniquify-buffer-file-name): Only return the directory part.
9 (uniquify-rerationalize-w/o-cb): Don't bother reseting proposed names.
10 (rename-buffer): Use the `newname' arg as base.
11 (create-file-buffer): Split the file name into base and dirname.
12
1 2003-05-09 Jesper Harder <harder@ifa.au.dk> (tiny change) 13 2003-05-09 Jesper Harder <harder@ifa.au.dk> (tiny change)
2 14
3 * mail/smtpmail.el (smtpmail-send-queued-mail): Don't use kill-line. 15 * mail/smtpmail.el (smtpmail-send-queued-mail): Don't use kill-line.
4 16
5 2003-05-08 Stefan Monnier <monnier@cs.yale.edu> 17 2003-05-08 Stefan Monnier <monnier@cs.yale.edu>
1012 after-insert-file-set-buffer-file-coding-system instead of adding 1024 after-insert-file-set-buffer-file-coding-system instead of adding
1013 it to after-insert-file-functions. 1025 it to after-insert-file-functions.
1014 1026
1015 * language/ind-util.el (indian-2-column-to-ucs-region): Fix for 1027 * language/ind-util.el (indian-2-column-to-ucs-region): Fix for
1016 the case of replacing multibyte characters. 1028 the case of replacing multibyte characters.
1017
1018 2003-04-09 Stefan Monnier <monnier@cs.yale.edu>
1019
1020 * textmodes/bibtex.el: Update copyright and Author list.
1021 Don't require `compile' since it seems unnecessary.
1022 (bibtex-version): Remove.
1023 (bibtex-sort-ignore-string-entries, bibtex-maintain-sorted-entries)
1024 (bibtex-field-name-for-parsing): Don't make auto-buffer-local.
1025 (bibtex-comment-start): Don't include the space.
1026 (zmacs-regions, reporter-prompt-for-summary-p):
1027 Declare to quieten the byte-compiler.
1028 (bibtex-reference-key, bibtex-mode-syntax-table): Remove =
1029 because it can't be part of a string's key.
1030 (bibtex-parse-field-name): Use prog1.
1031 (bibtex-font-lock-syntactic-keywords): New var.
1032 (bibtex-font-lock-keywords): Remove the entry for @Comment.
1033 (bibtex-search-entry): Simplify.
1034 (bibtex-empty-re): New var.
1035 (bibtex-format-entry): Slightly restructure some loops to avoid code
1036 duplication. Use looking-at rather than `substring + string-match'.
1037 Use bibtex-empty-re (which removes unnecessary \(..\) in regexps).
1038 Remove now unused end-name. Use bibtex-find-crossref.
1039 Don't downcase since case-fold-search is t.
1040 (bibtex-autokey-get-yearfield): Use bibtex-find-crossref.
1041 (bibtex-parse-keys): Use unless and push.
1042 Parse even if bibtex-maintain-sorted-entries is nil.
1043 (bibtex-complete): Use push. Don't sort completions.
1044 (bibtex-mode): Use push. Update comment-start-skip.
1045 Improve defun-prompt-regexp and outline-regexp.
1046 Add bibtex-font-lock-syntactic-keywords to font-lock-defaults.
1047 (bibtex-end-of-entry): Remove unused \(...\).
1048 (bibtex-sort-key): New fun.
1049 (bibtex-sort-buffer, bibtex-validate): Use it.
1050 (bibtex-find-crossref): New fun.
1051 (bibtex-validate): Use push & dolist; remove \(...\).
1052 (bibtex-clean-entry): Use unless and friends.
1053 Don't add the key to the list if the list hasn't been built yet.
1054 (bibtex-fill-entry): Remove unused begin-name and end-name.
1055 (bibtex-reformat): Kill local var instead of setting it to nil.
1056 (bibtex-convert-alien): Use deactivate-mark rather than the
1057 non-existent bibtex-mark-active variable.
1058 (bibtex-String): Simplify.
1059 1029
1060 2003-04-09 Richard M. Stallman <rms@gnu.org> 1030 2003-04-09 Richard M. Stallman <rms@gnu.org>
1061 1031
1062 * files.el (file-chase-links): Fix previous change. 1032 * files.el (file-chase-links): Fix previous change.
1063 1033