diff options
| author | Stefan Monnier | 2002-04-11 23:49:56 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-04-11 23:49:56 +0000 |
| commit | 9f4e3c269a923820bbdadaf2cc825bac4b295bd8 (patch) | |
| tree | 465e716354a8063d9d1f2271732b111b889dead2 | |
| parent | 41d22ee0a0810e2cce9e9a533c938a57670fece7 (diff) | |
| download | emacs-9f4e3c269a923820bbdadaf2cc825bac4b295bd8.tar.gz emacs-9f4e3c269a923820bbdadaf2cc825bac4b295bd8.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 36 |
1 files changed, 33 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 82eff1a7346..439277bc46c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -2,6 +2,20 @@ | |||
| 2 | 2 | ||
| 3 | * textmodes/sgml-mode.el (sgml-guess-indent): New function. | 3 | * textmodes/sgml-mode.el (sgml-guess-indent): New function. |
| 4 | 4 | ||
| 5 | 2002-04-11 Stefan Monnier <monnier@cs.yale.edu> | ||
| 6 | |||
| 7 | * simple.el (line-move): Use memq rather than or. | ||
| 8 | (transpose-sexps): Don't presume as much of forward-sexp's behavior. | ||
| 9 | (do-auto-fill): Use fill-move-to-break-point. | ||
| 10 | (syntax-code-table): Remove. | ||
| 11 | |||
| 12 | * textmodes/fill.el (canonically-space-region): Obey sentence-end. | ||
| 13 | Don't add spaces at end of sentences at end of line. | ||
| 14 | (fill-move-to-break-point): Make sure the result is always greater | ||
| 15 | than linebeg, so we ensure forward progress. | ||
| 16 | (fill-region-as-paragraph): Compare to `to' rather than eobp. | ||
| 17 | (fill-paragraph): Don't rebind fill-paragraph-function. | ||
| 18 | |||
| 5 | 2002-04-11 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 19 | 2002-04-11 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 6 | 20 | ||
| 7 | * menu-bar.el (menu-bar-adv-search-menu): Add incremental search. | 21 | * menu-bar.el (menu-bar-adv-search-menu): Add incremental search. |
| @@ -11,17 +25,28 @@ | |||
| 11 | * files.el (file-name-non-special): Handle return value of t from | 25 | * files.el (file-name-non-special): Handle return value of t from |
| 12 | `file-name-completion'. | 26 | `file-name-completion'. |
| 13 | 27 | ||
| 28 | 2002-04-10 Stefan Monnier <monnier@cs.yale.edu> | ||
| 29 | |||
| 30 | * textmodes/fill.el (fill-context-prefix): Match the two prefixes | ||
| 31 | differently to avoid pathological exponential-time case. | ||
| 32 | (adaptive-fill-regexp): Add ! and %. | ||
| 33 | (fill-delete-prefix): Remove indentation while removing prefix. | ||
| 34 | (fill-delete-newlines): Obey sentence-end. | ||
| 35 | (fill-move-to-break-point, fill-newline): New functions extracted | ||
| 36 | from fill-region-as-paragraph. | ||
| 37 | (fill-region-as-paragraph): Use them. | ||
| 38 | Don't fiddle with fill-indent-according-to-mode. | ||
| 39 | |||
| 14 | 2002-04-10 Colin Walters <walters@verbum.org> | 40 | 2002-04-10 Colin Walters <walters@verbum.org> |
| 15 | 41 | ||
| 16 | * play/snake.el (snake-score-file): Default to just "snake-scores". | 42 | * play/snake.el (snake-score-file): Default to just "snake-scores". |
| 17 | 43 | ||
| 18 | * play/tetris.el (tetris-score-file): Likewise. | 44 | * play/tetris.el (tetris-score-file): Likewise. |
| 19 | 45 | ||
| 20 | * play/gamegrid.el (gamegrid-add-score): Rewrite from scratch to | 46 | * play/gamegrid.el (gamegrid-add-score): Rewrite from scratch to |
| 21 | use `update-game-score'. | 47 | use `update-game-score'. |
| 22 | 48 | ||
| 23 | * ibuffer.el (ibuffer-canonicalize-state-list): Delete unused | 49 | * ibuffer.el (ibuffer-canonicalize-state-list): Delete unused function. |
| 24 | function. | ||
| 25 | (ibuffer-current-buffers-with-marks): Don't call `buffer-list' | 50 | (ibuffer-current-buffers-with-marks): Don't call `buffer-list' |
| 26 | ourselves; take it as an argument. Caller updated. | 51 | ourselves; take it as an argument. Caller updated. |
| 27 | (ibuffer-mode): Make mode-class special. | 52 | (ibuffer-mode): Make mode-class special. |
| @@ -110,6 +135,11 @@ | |||
| 110 | 135 | ||
| 111 | 2002-04-08 Stefan Monnier <monnier@cs.yale.edu> | 136 | 2002-04-08 Stefan Monnier <monnier@cs.yale.edu> |
| 112 | 137 | ||
| 138 | * autorevert.el (auto-revert-mode, global-auto-revert-mode): | ||
| 139 | Use define-minor-mode. | ||
| 140 | (auto-revert-buffers): Use with-current-buffer. | ||
| 141 | Avoid changing the minor modes. | ||
| 142 | |||
| 113 | * international/iso-acc.el (iso-accents-accent-key): Use `vector' | 143 | * international/iso-acc.el (iso-accents-accent-key): Use `vector' |
| 114 | rather than char-to-string since last-input-char can be any event. | 144 | rather than char-to-string since last-input-char can be any event. |
| 115 | 145 | ||