diff options
| author | Stefan Monnier | 2003-04-02 16:48:11 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-04-02 16:48:11 +0000 |
| commit | dfc42f38c1d0d3ff0ea55f671d8bf207c90c9efa (patch) | |
| tree | e3fbe3db7915238f44e7efcc224302910b22ebd3 /lisp/ChangeLog | |
| parent | 6d91a595e02c8fc4d29daf6caf2dceb3a6018163 (diff) | |
| download | emacs-dfc42f38c1d0d3ff0ea55f671d8bf207c90c9efa.tar.gz emacs-dfc42f38c1d0d3ff0ea55f671d8bf207c90c9efa.zip | |
(asm-calculate-indentation, asm-indent-line): New functions.
(asm-mode): Use them in indent-line-function.
Set tab-always-indent to nil to stay closer to previous tab behavior.
Set comment-add. Remove space at end of comment-add.
(asm-newline): Obsolete. Use newline-and-indent instead.
(asm-mode-map): Remove TAB binding.
(asm-code-level-empty-comment-pattern)
(asm-flush-left-empty-comment-pattern)
(asm-inline-empty-comment-pattern): Remove.
(asm-comment): Use newcomment functions instead.
(asm-colon): Don't tab if colon is not after a label.
(asm-line-matches, asm-pop-comment-level): Remove.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 53 |
1 files changed, 42 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aa138bc6e68..3837bb7aebf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2003-04-02 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * progmodes/asm-mode.el (asm-calculate-indentation, asm-indent-line): | ||
| 4 | New functions. | ||
| 5 | (asm-mode): Use them in indent-line-function. | ||
| 6 | Set tab-always-indent to nil to stay closer to previous tab behavior. | ||
| 7 | Set comment-add. Remove space at end of comment-add. | ||
| 8 | (asm-newline): Obsolete. Use newline-and-indent instead. | ||
| 9 | (asm-mode-map): Remove TAB binding. | ||
| 10 | (asm-code-level-empty-comment-pattern) | ||
| 11 | (asm-flush-left-empty-comment-pattern) | ||
| 12 | (asm-inline-empty-comment-pattern): Remove. | ||
| 13 | (asm-comment): Use newcomment functions instead. | ||
| 14 | (asm-colon): Don't tab if colon is not after a label. | ||
| 15 | (asm-line-matches, asm-pop-comment-level): Remove. | ||
| 16 | |||
| 1 | 2003-04-02 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> | 17 | 2003-04-02 Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> |
| 2 | 18 | ||
| 3 | * emulation/crisp.el (top-level): Quote second arg to | 19 | * emulation/crisp.el (top-level): Quote second arg to |
| @@ -7,14 +23,26 @@ | |||
| 7 | 23 | ||
| 8 | * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice. | 24 | * scroll-bar.el (scroll-bar-mode): Correctly specify `nil' choice. |
| 9 | 25 | ||
| 26 | 2003-04-01 Stefan Monnier <monnier@cs.yale.edu> | ||
| 27 | |||
| 28 | * progmodes/asm-mode.el (asm-mode-syntax-table): Setup entries | ||
| 29 | that do not depend on asm-comment-char. | ||
| 30 | (asm-mode-map): Declare and init at the same time. | ||
| 31 | (asm-code-level-empty-comment-pattern) | ||
| 32 | (asm-flush-left-empty-comment-pattern) | ||
| 33 | (asm-inline-empty-comment-pattern): Use \s< so they do not depend | ||
| 34 | on asm-comment-char. Turn them into constants. | ||
| 35 | (asm-mode): Simplify. | ||
| 36 | (asm-line-matches): Remove unused arg. | ||
| 37 | |||
| 10 | 2003-04-01 Dave Love <fx@gnu.org> | 38 | 2003-04-01 Dave Love <fx@gnu.org> |
| 11 | 39 | ||
| 12 | * time.el: Doc fixes. | 40 | * time.el: Doc fixes. |
| 13 | (display-time-mail-face): Change :type and default to nil. | 41 | (display-time-mail-face): Change :type and default to nil. |
| 14 | (display-time-mail-icon): Use pbm, not xbm. | 42 | (display-time-mail-icon): Use pbm, not xbm. |
| 15 | (display-time-mail-string): New. | 43 | (display-time-mail-string): New. |
| 16 | (display-time-string-forms): Use display-time-mail-string. Add | 44 | (display-time-string-forms): Use display-time-mail-string. |
| 17 | checks in display property. | 45 | Add checks in display property. |
| 18 | 46 | ||
| 19 | 2003-04-01 Kenichi Handa <handa@m17n.org> | 47 | 2003-04-01 Kenichi Handa <handa@m17n.org> |
| 20 | 48 | ||
| @@ -30,6 +58,10 @@ | |||
| 30 | * emulation/cua-base.el (cua-set-mark): Unconditionally repeat | 58 | * emulation/cua-base.el (cua-set-mark): Unconditionally repeat |
| 31 | pop-global-mark without C-x prefix. Fix doc. | 59 | pop-global-mark without C-x prefix. Fix doc. |
| 32 | 60 | ||
| 61 | 2003-03-31 Stefan Monnier <monnier@cs.yale.edu> | ||
| 62 | |||
| 63 | * reveal.el (reveal-post-command): Better error handling. | ||
| 64 | |||
| 33 | 2003-03-31 Nick Roberts <nick@nick.uklinux.net> | 65 | 2003-03-31 Nick Roberts <nick@nick.uklinux.net> |
| 34 | * gdb-ui.el (gdb-inferior-io-mode): Remove Unix pathname for cat | 66 | * gdb-ui.el (gdb-inferior-io-mode): Remove Unix pathname for cat |
| 35 | so that it can run on NT also. | 67 | so that it can run on NT also. |
| @@ -56,8 +88,8 @@ | |||
| 56 | 88 | ||
| 57 | 2003-03-31 Kenichi Handa <handa@m17n.org> | 89 | 2003-03-31 Kenichi Handa <handa@m17n.org> |
| 58 | 90 | ||
| 59 | * international/utf-16.el (ccl-decode-mule-utf-16-le): Don't | 91 | * international/utf-16.el (ccl-decode-mule-utf-16-le): |
| 60 | assume the signature bytes. | 92 | Don't assume the signature bytes. |
| 61 | (ccl-decode-mule-utf-16-be): Likewise. | 93 | (ccl-decode-mule-utf-16-be): Likewise. |
| 62 | (ccl-encode-mule-utf-16-le): Don't produce the signature bytes. | 94 | (ccl-encode-mule-utf-16-le): Don't produce the signature bytes. |
| 63 | (ccl-encode-mule-utf-16-be): Likewise. | 95 | (ccl-encode-mule-utf-16-be): Likewise. |
| @@ -88,12 +120,11 @@ | |||
| 88 | 120 | ||
| 89 | 2003-03-29 Michael Albinus <Michael.Albinus@alcatel.de> | 121 | 2003-03-29 Michael Albinus <Michael.Albinus@alcatel.de> |
| 90 | 122 | ||
| 91 | * trampver.el: New file, to support Autoconf in Tramp CVS | 123 | * trampver.el: New file, to support Autoconf in Tramp CVS repository. |
| 92 | repository. | 124 | * tramp.el (tramp-version, tramp-bug-report-address): Move to |
| 93 | * tramp.el (tramp-version, tramp-bug-report-address): Moved to | ||
| 94 | trampver.el, which is required now. | 125 | trampver.el, which is required now. |
| 95 | (tramp-chunksize): Type can be nil as well. Reported | 126 | (tramp-chunksize): Type can be nil as well. |
| 96 | by Markus Rost <rost@math.ohio-state.edu>. | 127 | Reported by Markus Rost <rost@math.ohio-state.edu>. |
| 97 | * tramp-smb.el (tramp-smb-read-file-entry): Make reading size of a | 128 | * tramp-smb.el (tramp-smb-read-file-entry): Make reading size of a |
| 98 | listing entry more robust. Ranges from 10 chars (Samba 1) to 7-9 | 129 | listing entry more robust. Ranges from 10 chars (Samba 1) to 7-9 |
| 99 | chars (Samba 2). | 130 | chars (Samba 2). |
| @@ -116,8 +147,8 @@ | |||
| 116 | 147 | ||
| 117 | 2003-03-28 Lute Kamstra <Lute.Kamstra@cwi.nl> | 148 | 2003-03-28 Lute Kamstra <Lute.Kamstra@cwi.nl> |
| 118 | 149 | ||
| 119 | * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer): Fix | 150 | * emacs-lisp/checkdoc.el (checkdoc-display-status-buffer): |
| 120 | docstring. | 151 | Fix docstring. |
| 121 | (checkdoc-interactive, checkdoc-message-interactive): Make them | 152 | (checkdoc-interactive, checkdoc-message-interactive): Make them |
| 122 | perform spell checking when appropriate. | 153 | perform spell checking when appropriate. |
| 123 | (checkdoc-interactive-loop): Fix docstring and a few typos. | 154 | (checkdoc-interactive-loop): Fix docstring and a few typos. |