1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-07 20:54:32 +00:00

*** empty log message ***

This commit is contained in:
Stefan Monnier 2002-09-10 06:05:36 +00:00
parent 6df42991d3
commit 0a28e1ca57
2 changed files with 58 additions and 17 deletions

View File

@ -5,8 +5,8 @@
2002-09-09 Markus Rost <rost@math.ohio-state.edu>
* simple.el (transient-mark-mode, line-number-mode,
column-number-mode): Undo previous change.
* simple.el (transient-mark-mode, line-number-mode)
(column-number-mode): Undo previous change because of bootstrapping.
2002-09-10 Miles Bader <miles@gnu.org>
@ -21,13 +21,47 @@
nil while executing macro to avoid triggering delete-selection-mode.
* simple.el (keyboard-quit): Set defining-kbd-macro to nil to
cancel defining keyboard macro when applicablex.
cancel defining keyboard macro when applicable.
2002-09-09 Stefan Monnier <monnier@cs.yale.edu>
* derived.el (define-derived-mode): Add keyword arguments.
(derived-mode-make-docstring): Take abbrev and syntax table names.
* font-core.el (font-lock-change-mode): Just turn off font-lock-mode.
(font-lock-default-function): Change arg name.
* cus-start.el (transient-mark-mode): Delete. Done in simple.el.
* paren.el (show-paren-function): Use syntax-after.
* emacs-lisp/syntax.el (syntax-after): Delete. Moved to subr.el.
* subr.el (symbol-file): Also work for autoloaded funcs.
(syntax-after): New fun moved from syntax.el.
* find-file.el (ff-pre-find-hook, ff-pre-load-hook, ff-post-load-hook)
(ff-not-found-hook, ff-file-created-hook): Rename from *-hooks.
Update callers (but still run the old hooks as well).
* emacs-lisp/find-func.el (find-library-suffixes, find-library-name)
(find-library): New funs.
(find-function-search-for-symbol): Use it.
* emacs-lisp/bytecomp.el (byte-compile-file): Don't switch buffer.
* isearch.el (isearch-cmds): Add docstring.
(isearch-mouse-2): Lookup binding in the proper buffer.
Use call-interactively and remove the now useless `arg'.
(isearch-search-fun-function): New var.
(isearch-search-fun): New fun.
(isearch-search, isearch-lazy-highlight-search): Use it.
2002-09-09 Stefan Monnier <monnier@cs.yale.edu>
* simple.el (what-line): Don't hard-code 1.
(transient-mark-mode, line-number-mode, column-number-mode): Use
define-minor-mode.
(transient-mark-mode, line-number-mode, column-number-mode):
Use define-minor-mode.
(do-auto-fill): Only ignore prefix if it's really empty.
2002-09-09 Markus Rost <rost@math.ohio-state.edu>
@ -130,14 +164,15 @@
don't delete the temporary file before diff has a chance to read
it.
* ibuf-ext.el (ibuffer-diff-with-file): Just call `diff-buffer-with-file'.
* ibuf-ext.el (ibuffer-diff-with-file): Just call
`diff-buffer-with-file'.
2002-09-07 John Paul Wallington <jpw@shootybangbang.com>
* emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
* emacs-lisp/find-func.el (find-function-recenter-line): Add
custom type. Doc fix.
* emacs-lisp/find-func.el (find-function-recenter-line):
Add custom type. Doc fix.
2002-09-06 Stefan Monnier <monnier@cs.yale.edu>

View File

@ -1,3 +1,9 @@
2002-09-10 Stefan Monnier <monnier@cs.yale.edu>
* regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
(CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
(re_match_2_internal): Be more careful with infinite loops.
2002-09-10 Kim F. Storm <storm@cua.dk>
* macros.c (end_kbd_macro): New function.