comparison lisp/ChangeLog @ 50634:31489b0b9b0d

(view-read-only): Move from view.el to files.el.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 18 Apr 2003 13:53:18 +0000
parents 589192191b6d
children dc2c8120e20d
comparison
equal deleted inserted replaced
50633:956b2eed924d 50634:31489b0b9b0d
1 2003-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
1 2003-04-17 Stefan Monnier <monnier@cs.yale.edu> 6 2003-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.
4 (find-file-read-only, find-file-read-only-other-window) 9 (find-file-read-only, find-file-read-only-other-window)
5 (find-file-read-only-other-frame): Check that file does exist. 10 (find-file-read-only-other-frame): Check that file does exist.
357 after-insert-file-set-buffer-file-coding-system instead of adding 362 after-insert-file-set-buffer-file-coding-system instead of adding
358 it to after-insert-file-functions. 363 it to after-insert-file-functions.
359 364
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.
367
368 2003-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.
362 409
363 2003-04-09 Richard M. Stallman <rms@gnu.org> 410 2003-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.
366 413