aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2003-04-18 13:53:18 +0000
committerStefan Monnier2003-04-18 13:53:18 +0000
commitcb211eb2f6ea692c2ade1b488cab097f82d7db14 (patch)
treea7e765bd5805764836ce7108e1340485b6b6605d /lisp/ChangeLog
parentc6464167c6d78835d83ed090aaa5e4dc5e1f520d (diff)
downloademacs-cb211eb2f6ea692c2ade1b488cab097f82d7db14.tar.gz
emacs-cb211eb2f6ea692c2ade1b488cab097f82d7db14.zip
(view-read-only): Move from view.el to files.el.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog47
1 files changed, 47 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7406bc8e4a1..8068bc2669c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-04-18 Stefan Monnier <monnier@cs.yale.edu>
2
3 * view.el (view-read-only): Move to files.el.
4 * files.el (view-read-only): Move from view.el.
5
12003-04-17 Stefan Monnier <monnier@cs.yale.edu> 62003-04-17 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * files.el (view-read-only): Don't declare a second time. 8 * files.el (view-read-only): Don't declare a second time.
@@ -360,6 +365,48 @@
360 * language/ind-util.el (indian-2-column-to-ucs-region): Fix for 365 * language/ind-util.el (indian-2-column-to-ucs-region): Fix for
361 the case of replacing multibyte characters. 366 the case of replacing multibyte characters.
362 367
3682003-04-09 Stefan Monnier <monnier@cs.yale.edu>
369
370 * textmodes/bibtex.el: Update copyright and Author list.
371 Don't require `compile' since it seems unnecessary.
372 (bibtex-version): Remove.
373 (bibtex-sort-ignore-string-entries, bibtex-maintain-sorted-entries)
374 (bibtex-field-name-for-parsing): Don't make auto-buffer-local.
375 (bibtex-comment-start): Don't include the space.
376 (zmacs-regions, reporter-prompt-for-summary-p):
377 Declare to quieten the byte-compiler.
378 (bibtex-reference-key, bibtex-mode-syntax-table): Remove =
379 because it can't be part of a string's key.
380 (bibtex-parse-field-name): Use prog1.
381 (bibtex-font-lock-syntactic-keywords): New var.
382 (bibtex-font-lock-keywords): Remove the entry for @Comment.
383 (bibtex-search-entry): Simplify.
384 (bibtex-empty-re): New var.
385 (bibtex-format-entry): Slightly restructure some loops to avoid code
386 duplication. Use looking-at rather than `substring + string-match'.
387 Use bibtex-empty-re (which removes unnecessary \(..\) in regexps).
388 Remove now unused end-name. Use bibtex-find-crossref.
389 Don't downcase since case-fold-search is t.
390 (bibtex-autokey-get-yearfield): Use bibtex-find-crossref.
391 (bibtex-parse-keys): Use unless and push.
392 Parse even if bibtex-maintain-sorted-entries is nil.
393 (bibtex-complete): Use push. Don't sort completions.
394 (bibtex-mode): Use push. Update comment-start-skip.
395 Improve defun-prompt-regexp and outline-regexp.
396 Add bibtex-font-lock-syntactic-keywords to font-lock-defaults.
397 (bibtex-end-of-entry): Remove unused \(...\).
398 (bibtex-sort-key): New fun.
399 (bibtex-sort-buffer, bibtex-validate): Use it.
400 (bibtex-find-crossref): New fun.
401 (bibtex-validate): Use push & dolist; remove \(...\).
402 (bibtex-clean-entry): Use unless and friends.
403 Don't add the key to the list if the list hasn't been built yet.
404 (bibtex-fill-entry): Remove unused begin-name and end-name.
405 (bibtex-reformat): Kill local var instead of setting it to nil.
406 (bibtex-convert-alien): Use deactivate-mark rather than the
407 non-existent bibtex-mark-active variable.
408 (bibtex-String): Simplify.
409
3632003-04-09 Richard M. Stallman <rms@gnu.org> 4102003-04-09 Richard M. Stallman <rms@gnu.org>
364 411
365 * files.el (file-chase-links): Fix previous change. 412 * files.el (file-chase-links): Fix previous change.