Mercurial > emacs
annotate lisp/ChangeLog @ 26050:858cfeb48126
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Sat, 16 Oct 1999 21:30:20 +0000 |
parents | 898ee3cee36a |
children | d3f55e596e63 |
rev | line source |
---|---|
26050 | 1 1999-10-16 Dave Love <d.love@dl.ac.uk> |
2 | |
3 * emacs-lisp/edebug.el (edebug-install-read-eval-functions) | |
4 (edebug-uninstall-read-eval-functions): Use load-read-function, | |
5 avoiding elisp-eval. | |
6 | |
26048 | 7 1999-10-16 Sam Steingold <sds@ksp.com> |
8 | |
9 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq' | |
10 instead of `eql'. | |
11 | |
26039
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
12 1999-10-14 Stefan Monnier <monnier@cs.yale.edu> |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
13 |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
14 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
15 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file), |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
16 (browse-url-temp-file-list, browse-url-delete-temp-file-list): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
17 * ediff-util.el (ediff-make-temp-file): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
18 * ediff-vers.el (ediff-pcl-cvs-view-revision): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
19 * emerge.el (emerge-make-temp-file): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
20 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
21 * vc.el (vc-update-change-log): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
22 * mail/mailpost.el (post-mail-send-it): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
23 * mail/metamail.el (metamail-region): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
24 * progmodes/cmacexp.el (c-macro-expansion): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
25 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file. |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
26 |
26029 | 27 1999-10-15 Gerd Moellmann <gerd@gnu.org> |
28 | |
29 * smtpmail.el (smtpmail-via-smtp): Add support for | |
30 automatically appending a domain to RCPT TO: addresses. | |
31 | |
26027 | 32 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
33 | |
34 * dired.el (dired-insert-directory): Insert the amount of | |
35 free space after the total size. | |
36 (dired-free-space-program, dired-free-space-args): New variables. | |
37 | |
26023 | 38 1999-10-14 Karl Heuer <kwzh@gnu.org> |
39 | |
40 * mail/rmail.el (rmail-pop-password-error): Add new pattern. | |
41 | |
26017 | 42 1999-10-14 Dave Love <fx@gnu.org> |
43 | |
44 * international/characters.el: | |
45 * international/fontset.el: | |
46 * international/mule-conf.el: Add latin-iso8859-1[45]. | |
47 | |
48 * language/european.el: Add Latin-8, Latin-9. Modify some doc | |
49 strings. | |
50 | |
51 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89]. | |
52 (command-line): Detect Latin-[89] locales. | |
53 | |
26011 | 54 1999-10-13 Stefan Monnier <monnier@cs.yale.edu> |
55 | |
56 * international/mule-cmds.el (select-safe-coding-system) | |
57 (leim-list-header): avoid the use of strings that start with backslash | |
58 newline since lread.c:read1 has a hack to turn those strings into | |
59 integer 0 during the loadup.el process. | |
60 | |
61 * diff-mode.el (diff-find-file-name): use `Index:' preferentially. | |
62 | |
26008 | 63 1999-10-13 Dave Love <fx@gnu.org> |
64 | |
65 * image.el (insert-image): Copy the image spec and add an | |
66 intangible property. | |
67 | |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
68 1999-10-13 Stefan Monnier <monnier@cs.yale.edu> |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
69 |
26008 | 70 * help.el (help-xref-interned): Make it also work on variable-only |
71 and function-only symbols. | |
72 (help-make-xrefs): Take advantage of the new `help-xref-interned'. | |
73 (help-follow): If the point under mouse is not highlighted, try | |
74 `help-xref-interned' on the pointed-to symbol anyway. | |
75 | |
76 * info.el (Info-on-current-buffer): New entry point. | |
77 (Info-find-node): Split into two for Info-on-current-buffer to | |
78 hook into it. | |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
79 (Info-current-file, Info-set-mode-line, Info-up): |
26008 | 80 Info-current-file can now be t. |
81 (Info-clone-buffer-hook): function for `clone-buffer'. | |
82 (Info-goto-node, Info-menu, Info-mode-map, Info-mode): | |
83 `clone-buffer' available in various ways to the user. | |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
84 |
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26001
diff
changeset
|
85 1999-10-12 Stefan Monnier <monnier@cs.yale.edu> |
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26001
diff
changeset
|
86 |
26008 | 87 * simple.el (shell-command, shell-command-on-region): Use |
88 make-temp-file. | |
89 (clone-buffer, clone-process, clone-buffer-hook): New functions. | |
90 | |
91 * subr.el (with-current-buffer): Don't use backquotes to avoid | |
92 bootstrapping problems. | |
93 | |
94 * loadup.el (load-path): Add subdirs for bootstrapping. | |
95 (docstrings): Ignore errors during bootstrapping. | |
96 (args): New `bootstrap' argument (for use in place of `dump'). | |
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26001
diff
changeset
|
97 |
26001 | 98 1999-10-12 Emmanuel Briot <briot@gnat.com> |
99 | |
100 * ada-stmt.el: Doc-string fixes. | |
101 | |
25991 | 102 1999-10-12 Gerd Moellmann <gerd@gnu.org> |
103 | |
25998 | 104 * recentf.el: New file. |
105 | |
25991 | 106 * ps-mode.el: New file. |
107 | |
108 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps, | |
109 case insensitive. | |
110 | |
25985 | 111 1999-10-12 Richard Sharman <rsharman@pobox.com> |
112 | |
113 * sh-script.el: Added support for indenting existing scripts. | |
114 (sh-mode-map): Added new bindings. | |
115 (sh-mode): Updated mode doc-string for new commands, added | |
116 make-local-variable calls, initialize mode-specific variables. | |
117 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line | |
118 is now a different function. | |
119 (sh-header-marker): Changed docstring. | |
120 (sh-set-shell): Initialize mode-specific variables. | |
121 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select) | |
122 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts): | |
123 Changed these define-skeleton calls to work with user-specified | |
124 indentation settings. | |
125 (sh-basic-indent-line, sh-blink, sh-calculate-indent) | |
126 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing) | |
127 (sh-electric-hash, sh-electric-less, sh-electric-rparen) | |
128 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info) | |
129 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word) | |
130 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if) | |
131 (sh-guess-basic-offset, sh-handle-after-case-label) | |
132 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do) | |
133 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac) | |
134 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open) | |
135 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close) | |
136 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else) | |
137 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case) | |
138 (sh-handle-this-then, sh-help-string-for-variable) | |
139 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent) | |
140 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init) | |
141 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp) | |
142 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style) | |
143 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable) | |
144 (sh-remove-our-text-properties, sh-rescan-buffer) | |
145 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp) | |
146 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer) | |
147 (sh-scan-case, sh-search-word, sh-set-char-syntax) | |
148 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value) | |
149 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New | |
150 functions. | |
151 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax) | |
152 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done) | |
153 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done) | |
154 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist) | |
155 (sh-var-list): New variables. | |
156 | |
25983 | 157 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk> |
158 | |
25999 | 159 * quickurl.el (quickurl-list-insert): `count-lines' was returning |
160 a value one line to high if the cursor wasn't at the start of a | |
161 line. A `beginning-of-line' is now performed before making the | |
162 call to `count-lines'. | |
25983 | 163 |
25979
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
164 1999-10-11 Stefan Monnier <monnier@cs.yale.edu> |
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
165 |
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
166 * diff-mode.el (vc-backend-diff): get rid of the autoloaded advice. |
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
167 |
25960 | 168 1999-10-09 Stefan Monnier <monnier@cs.yale.edu> |
169 | |
25962 | 170 * Makefile (setwins): abstract out the command to find subdirectories |
171 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base). | |
25970 | 172 (custom-deps, finder-data, autoloads, update-subdirs, updates) |
173 (autoloads-with-other-emacs): use it. | |
25962 | 174 |
25960 | 175 * diff-mode.el: new file. A mode for viewing/editing context diffs. |
176 | |
25942 | 177 1999-10-09 Gerd Moellmann <gerd@gnu.org> |
178 | |
179 * Makefile (bootstrap-compile): New target. Compile Lisp | |
180 files with ../src/temacs. | |
181 | |
25939 | 182 1999-10-08 Simon Marshall <simon@gnu.org> |
183 | |
184 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function. | |
185 (regexp-opt-group): Use it to get common suffixes in STRINGS. | |
186 If STRINGS is nil, return "" rather than nil. | |
187 | |
25937 | 188 1999-10-08 Gerd Moellmann <gerd@gnu.org> |
189 | |
190 * Makefile (compile): Compile files one by one. Set load-path to | |
191 current directory and subdirectories when compiling. | |
192 | |
25918 | 193 1999-10-08 Gerd Moellmann <gerd@gnu.org> |
194 | |
195 * Makefile (EMACSOPT, DONTCOMPILE, EL): New. | |
196 (emacs): Use it everywhere instead of EMACS. | |
197 (compile): New target. Compile all Lisp files from scratch. | |
198 (recompile): New target. Recompile lisp directory. | |
199 (autoloads-with-other-emacs): New target. Build loaddefs.el with | |
200 an Emacs executable not built in the current directory tree. | |
201 | |
25908 | 202 1999-10-07 Peter Breton <pbreton@ne.mediaone.net> |
203 | |
204 * filecache.el (file-cache-completion-ignore-case): New variable, | |
205 defaulting to the value of completion-ignore-case. | |
206 (file-cache-minibuffer-complete): Use it. | |
207 (file-cache-files-matching, file-cache-files-matching-internal): | |
208 New functions. | |
209 | |
25905
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
210 1999-10-07 Emmanuel Briot <briot@gnat.com> |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
211 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
212 * ada-xref.el: New file |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
213 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
214 * ada-prj.el: New file |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
215 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
216 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
217 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
218 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
219 subprogram being created. |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
220 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
221 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*, |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
222 ada-indent-newline-indent): Rewritten to support the new indentation |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
223 scheme |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
224 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
225 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions): |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
226 New functions |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
227 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
228 * ada-mode.el (ada-fill-comment-paragraph): Add support for the |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
229 justification parameter |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
230 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
231 * ada-mode.el (ada-make-body, ada-gen-treat-proc, |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
232 ada-make-subprogram-body): Rewritten to benefit from the gnatstub |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
233 external program |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
234 |
25900 | 235 1999-10-07 Dave Love <fx@gnu.org> |
236 | |
237 * bindings.el (bound-and-true-p): New macro. | |
238 (make-mode-line-mouse-sensitive): Don't require easymenu. | |
239 | |
25886 | 240 1999-10-07 Gerd Moellmann <gerd@gnu.org> |
241 | |
242 * custom.el (defface): Extend documentation for new values of | |
243 `type'. | |
244 | |
245 * faces.el (face-spec-set-match-display): Recognize `type' of | |
246 `motif', `lucid', `x-toolkit'. | |
247 (menu): New face. | |
248 | |
25870 | 249 1999-10-05 Dave Love <fx@gnu.org> |
250 | |
251 * files.el: Recognize temporary crontab files. | |
252 | |
25873 | 253 * info.el: Require jka-compr when compiling. |
254 (Info-suffix-list): Add bzip2 files (non-ms-dos only). | |
255 | |
25866 | 256 1999-10-04 Dave Love <fx@gnu.org> |
257 | |
258 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines, | |
259 scroll-up-aggressively, scroll-down-aggressively. | |
260 | |
261 * time.el (display-time-mode): Add autoload cookie. | |
262 | |
25867 | 263 * rect.el (delete-extract-rectangle): Doc fix from verna. |
25866 | 264 |
265 * help-macro.el (three-step-help): Customize. | |
266 | |
25926 | 267 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
268 | |
269 * hexl.el (hexlify-buffer): Move point in proper range | |
270 if it is too large. | |
271 (hexl-after-revert-hook): Update hexl-max-address. | |
272 (hexl-address-to-marker): Doc fix. | |
273 | |
25865 | 274 1999-10-03 Dave Love <fx@gnu.org> |
275 | |
276 * image.el (defimage): Remove redundant code. Substitute file in | |
277 image plist. | |
278 | |
279 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
280 | |
281 * vc.el (vc-backend-checkout): Use coding system 'no-conversion | |
282 when doing with-temp-file. | |
283 | |
284 1999-10-01 Dave Love <fx@gnu.org> | |
285 | |
286 * cus-edit.el (custom-comment-create): Fill :from and :to slots. | |
287 | |
288 * help.el: Require view when compiling. | |
289 (view-emacs-FAQ): Use Info version. | |
290 | |
25837 | 291 1999-09-29 Ken'ichi Handa <handa@gnu.org> |
292 | |
293 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed | |
294 (normat->normal). Use correct font names for Korean | |
295 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H). | |
296 | |
297 1999-09-29 Kenichi Handa <handa@etl.go.jp> | |
298 | |
299 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit | |
300 code not used by KOI8 to the same 8-bit code instead of mapping to | |
301 SPC. | |
302 (cyrillic-alternativnyj-decode-table): Likewise. | |
303 | |
304 1999-09-29 Alex Schroeder <alex@gnu.org> | |
305 | |
306 * sql.el (sql-imenu-generic-expression): new, used to set | |
307 imenu-generic-expression. | |
308 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting | |
309 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression, | |
310 imenu-case-fold-search, and imenu-syntax-alist. | |
311 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when | |
312 setting font-lock-defaults' SYNTAX-ALIST. | |
313 | |
26025 | 314 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
315 | |
316 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard | |
317 macro, try again. | |
318 | |
25837 | 319 1999-09-28 Dave Love <fx@gnu.org> |
320 | |
321 * cus-edit.el (custom-comment): Change widget definition. | |
322 (custom-comment-create, custom-comment-show) | |
323 (custom-comment-invisible-p): Don't use :comment-overlay. | |
324 (custom-comment-hide): New function. | |
325 (custom-variable-set, custom-variable-save) | |
326 (custom-variable-reset-standard, custom-face-set) | |
327 (custom-face-save): Use it. | |
328 | |
25946 | 329 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
330 | |
25949 | 331 * hexl.el (hexl-mode): Do nothing if already in hexl mode. |
332 | |
333 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> | |
334 | |
25946 | 335 * faces.el (region): Doc fix. |
336 | |
25837 | 337 1999-09-27 Dave Love <fx@gnu.org> |
338 | |
339 * isearch.el (isearch): Add :links in defgroup. | |
340 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank. | |
341 (isearch-switch-frame-handler): Comment out (unused). | |
342 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix. | |
343 (isearch-ring-retreat-edit): Doc fix. | |
344 (isearch-mouse-yank): New command. | |
345 (isearch-last-command-char): Removed. Callers changed to use | |
346 last-command-char. | |
347 (isearch-char-to-string): Removed. Callers changed to use | |
348 char-to-string. | |
349 | |
25944 | 350 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru> |
351 | |
352 * ispell.el (ispell-dictionary-alist-6): Don't use "-C" | |
353 option for Russian. | |
354 | |
25837 | 355 1999-09-25 Gerd Moellmann <gerd@gnu.org> |
356 | |
357 * faces.el (face-differs-from-default-p): Compare face | |
358 attributes individually. | |
359 | |
360 * image.el (put-image, insert-image): Add string argument. | |
361 | |
362 1999-09-24 Gerd Moellmann <gerd@gnu.org> | |
363 | |
364 * ange-ftp.el (ange-ftp-date-regexp): Make it work for | |
365 LANG=de_DE.iso88591 on HPUX 11.0. | |
366 | |
367 * dired.el (dired-move-to-filename-regexp): Make it work | |
368 for LANG=de_DE.iso88591 on HPUX 11.0. | |
369 | |
370 1999-09-24 Carsten Dominik <cd@gnu.org> | |
371 | |
372 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for | |
373 multiple thebibliography environments. | |
374 | |
375 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug | |
376 with recentering window. | |
377 (reftex-extract-bib-entries-from-thebibliography, | |
378 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal | |
379 with multiple thebibliography environments. | |
380 | |
381 * textmodes/reftex-vars.el | |
382 (reftex-section-levels): Function allowed as cdr. | |
383 (reftex-max-section-depth) New option. | |
384 | |
385 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal | |
386 with multiple thebibliography environments. | |
387 | |
388 1999-09-23 Gerd Moellmann <gerd@gnu.org> | |
389 | |
390 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end | |
391 instead of point-min in call to delete-region. | |
392 | |
393 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
394 | |
395 * vc.el (vc-backend-checkout): Use with-temp-file when checking | |
396 out into arbitrary file names. | |
397 | |
398 1999-09-19 Ken'ichi Handa <handa@gnu.org> | |
399 | |
400 * language/european.el ("Turkish"): New language environment. | |
401 | |
402 1999-09-19 Dave Love <fx@gnu.org> | |
403 | |
404 * delim-col.el: New file. | |
405 | |
406 1999-09-17 Richard Stallman <rms@gnu.org> | |
407 | |
408 * files.el (after-find-file): When visiting a backup file, | |
409 make it read-only. | |
410 | |
411 * apropos.el (apropos-symbol-face): Non-nil even for ttys. | |
412 (apropos-keybinding-face, apropos-label-face): Likewise. | |
413 (apropos-property-face, apropos-match-face): Likewise. | |
414 (apropos-label-properties): New variable. | |
415 (apropos-print-doc): Use apropos-label-properties. | |
416 (apropos-print): Set apropos-label-properties. | |
417 | |
418 1999-09-15 Richard Stallman <rms@gnu.org> | |
419 | |
420 * winner.el: Use aref instead of sref. | |
421 | |
422 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars. | |
423 | |
424 1999-09-14 Gerd Moellmann <gerd@gnu.org> | |
425 | |
426 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print. | |
427 | |
428 1999-09-14 Richard Stallman <rms@gnu.org> | |
429 | |
430 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload | |
431 cookie, even if followed by a letter. | |
432 | |
433 1999-09-14 Stephen Eglen <stephen@gnu.org> | |
434 | |
435 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and | |
436 --no-line-editing are passed to Octave by including them here | |
437 rather than storing them in inferior-octave-startup-args. | |
438 | |
439 1999-09-14 Eli Zaretskii <eliz@gnu.org> | |
440 | |
441 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref, | |
442 command, option, env and sc. | |
443 | |
444 * subr.el (shell-quote-argument): Quote argument with double | |
445 quotes for ms-dos. | |
446 | |
447 1999-09-14 Richard Stallman <rms@gnu.org> | |
448 | |
449 * simple.el (eval-expression-print-level): New variable. | |
450 (eval-expression-print-length): New variable. | |
451 (eval-expression-debug-on-error): New variable. | |
452 (eval-expression): Bind print-level, print-length and | |
453 debug-on-error from those vars. | |
454 | |
455 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp): | |
456 Bind print-level, print-length and debug-on-error. | |
457 | |
458 1999-09-14 Inge Frick <inge@nada.kth.se> | |
459 | |
460 * dired.el (dired-recursive-deletes): New custom variable. | |
461 (dired-re-no-dot): New variable. | |
462 (dired-delete-file): New function deletes files and directories | |
463 recursively. | |
464 (dired-internal-do-deletions): Use `dired-delete-file' to delete files. | |
465 | |
466 * dired-aux.el (dired-recursive-copies): New custom variable. | |
467 (dired-handle-overwrite): Broke a long line. | |
468 (dired-copy-file): Call `dired-copy-file-recursive' instead of | |
469 `copy-file'. | |
470 (dired-copy-file-recursive): New function. Copy directories | |
471 recursively. | |
472 (dired-do-create-files): Added support for generalized directory | |
473 target. How-to function may now return a function. New fluid | |
474 variable `dired-one-file'. | |
475 (dired-copy-how-to-fn): New variable. | |
476 (dired-do-copy): Bind `dired-recursive-copies' to preserve it. | |
477 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files. | |
478 (dired-do-copy-regexp): No recursive copies. | |
479 | |
480 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com> | |
481 | |
482 * whitespace.el (whitespace-version): Update version to 2.4 | |
483 | |
484 * whitespace.el: Add customization variables to conditionally test | |
485 any of the five whitespaces, per request from Rune Kleveland | |
486 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>. | |
487 | |
488 * whitespace.el (whitespace-spacetab-regexp): Fix doc string. | |
489 | |
490 * whitespace.el (whitespace-modes): Add `change-log-mode' to the | |
491 list of modes to be checked for bogus whitespaces. | |
492 | |
493 * whitespace.el (whitespace-rescan-timer-time): Update | |
494 documentation. | |
495 | |
496 * whitespace.el (whitespace-display-unchecked-whitespaces): | |
497 new function to update modeline with untested whitespaces. | |
498 | |
499 * whitespace.el (whitespace-buffer): Test only whitespaces whose | |
500 checking is turned on, and update modeline using the newly created | |
501 `whitespace-display-unchecked-whitespaces'. | |
502 | |
503 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces | |
504 whose checking is turned on, and update modeline using the newly | |
505 created `whitespace-display-unchecked-whitespaces'. | |
506 | |
507 * whitespace.el (whitespace-describe): Update documentation. | |
508 | |
509 * whitespace.el (whitespace-tickle-timer): Test if | |
510 `whitespace-rescan-timer-time' is non-zero before tickling timer. | |
511 | |
512 1999-09-13 Dave Love <fx@gnu.org> | |
513 | |
514 * hideif.el (hide-ifdef-mode): Add autoload cookie. | |
515 | |
516 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode | |
517 for temp buffer. | |
518 (checkdoc-this-string-valid): Don't assume default comment-start. | |
519 | |
520 1999-09-13 Gerd Moellmann <gerd@gnu.org> | |
521 | |
522 * rsz-mini.el: Remove code, keep the interface. | |
523 | |
524 1999-09-13 Dave Love <fx@gnu.org> | |
525 | |
526 * help.el (help-highlight-p): Doc fix. | |
527 | |
528 * faces.el (mode-line, header-line, tool-bar): Add :version. | |
529 (highlight, secondary-selection): Add :group. | |
530 (trailing-whitespace): Add :group, :version. | |
531 | |
532 * wid-edit.el: Remove some compatibility code and checks. | |
533 (widget-specify-field, widget-specify-button): Don't use XEmacs | |
534 properties. | |
535 (widget-overlay-inactive): Change error message. | |
536 (widget-button-pressed-face): New variable. | |
537 (widget-button-click): Use it. | |
538 (widget-documentation-link-add): Specify mouse and button faces. | |
539 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions | |
540 removed now the functionality is built in. | |
541 | |
542 * cus-edit.el: Don't define-widget-keywords. | |
543 (multimedia): New group. | |
544 (custom-last): Function removed. | |
545 (custom-quote): Add vectorp case, comment out characterp case. | |
546 (custom-buffer-done-function, custom-raised-buttons): New option. | |
547 (Custom-buffer-done): New function. | |
548 (custom-buffer-create-internal): Obey custom-raised-buttons, | |
549 Custom-buffer-done. | |
550 (custom-button-face): Make it `released-button'. | |
551 (custom-button-pressed-face): Make it `pressed-button' | |
552 (custom-mode-map): Bind "q" to Custom-buffer-done. | |
553 (custom-mode): Deal with raised/pressed buttons. | |
554 | |
555 Changes from Didier Verna: | |
556 (custom-prompt-variable): Optional third arg makes prompt for a | |
557 comment string. | |
558 (customize-set-value, customize-set-variable, | |
559 customize-save-variable): Optional prefix makes function handle | |
560 variable comments. | |
561 (customize-customized, customize-saved, custom-variable-state-set) | |
562 (custom-variable-set, custom-variable-save, custom-face-state-set) | |
563 (custom-variable-reset-saved, custom-variable-reset-standard) | |
564 (custom-face-set, custom-face-save, custom-face-reset-saved) | |
565 (custom-face-reset-standard, customize-save-customized): Handle | |
566 custom comments. | |
567 (custom-comment-face, custom-comment-tag-face): New face. | |
568 (custom-comment): New widget. | |
569 (custom-comment-create, custom-comment-delete) | |
570 (custom-comment-value-set, custom-comment-show) | |
571 ()custom-comment-invisible-p): New functions. | |
572 (custom-variable-value-create, custom-face-value-create): Create a | |
573 comment field widget. | |
574 (custom-variable-menu, custom-face-menu): New entry for custom | |
575 comment. | |
576 (custom-face-value-create): Remove compatibility code. | |
577 (custom-save-variables, custom-save-faces): Possibly save custom | |
578 comments. | |
579 | |
580 * cus-face.el (custom-face-attributes): Simplify :underline, | |
581 :overline, :inverse-video cases. Fix up :box case (probably needs | |
582 more work). | |
583 | |
584 Change from Didier Verna: | |
585 (custom-set-faces): The arguments can now have a custom comment as | |
586 fourth argument. | |
587 | |
588 * custom.el: Don't define-widget-keywords. | |
589 Change from Didier Verna: | |
590 (custom-set-variables): the arguments can now have a | |
591 custom comment as fifth element. | |
592 | |
593 1999-09-13 Richard Stallman <rms@gnu.org> | |
594 | |
595 * info.el (Info-find-node): Cope better if guesspos is too large. | |
596 | |
597 1999-09-12 Gerd Moellmann <gerd@gnu.org> | |
598 | |
599 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead | |
600 of buffer-substring because buffer-string doesn't copy the | |
601 prompt. | |
602 | |
603 * faces.el (mode-line): Replaces `modeline'. | |
604 (toplevel): Make `modeline' an alias for `mode-line'. | |
605 | |
606 1999-09-12 Gerd Moellmann <gerd@gnu.org> | |
607 | |
608 * gs.el: Change `ghostscript' to `postscript' in comment. | |
609 | |
610 1999-09-11 Rob Riepel <riepel@Stanford.EDU> | |
611 | |
612 * emulation/tpu-edt.el (tpu-version): New version. | |
613 (tpu-search-overlay, tpu-replace-overlay): New variables. | |
614 (tpu-search-highlight, tpu-toggle-direction): New functions. | |
615 (tpu-lm-replace): Set tpu-replace-overlay. | |
616 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post | |
617 command hook. | |
618 | |
619 1999-09-11 Richard Stallman <rms@gnu.org> | |
620 | |
621 * isearch.el (isearch-mode-map): Undo previous change. | |
622 | |
623 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER, | |
624 use all of that as the sexp. | |
625 | |
626 * files.el (find-file-noselect): Catch errors in file-expand-wildcards, | |
627 and use the initial argument as file name directly. | |
628 Likewise if nothing matches. | |
629 | |
630 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no> | |
631 | |
632 * winner.el: Major changes. Avoid changing point and mark. | |
633 Save configurations after they change, not before. | |
634 | |
635 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu> | |
636 | |
637 * emacs-lisp/bytecomp.el (byte-compile-output-docform): | |
638 Bind print-continuous-numbering and print-number-table. | |
639 | |
640 1999-09-10 Dave Love <fx@gnu.org> | |
641 | |
642 * bindings.el (debug-ignored-errors): Restore BBDB stuff. | |
643 | |
644 1999-09-09 Richard Stallman <rms@gnu.org> | |
645 | |
646 * whitespace.el: Finish making it fit Emacs conventions. | |
647 Add autoloads. | |
648 | |
649 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il> | |
650 | |
651 * generic-x.el (bat-generic-mode): "::"-style comments don't | |
652 need to begin with "-". Fix the font-lock definitions of ON/OFF | |
653 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO | |
654 from the list of keywords. Add DO to the list of keywords. | |
655 | |
656 1999-09-09 Dave Love <fx@gnu.org> | |
657 | |
658 * byte-opt.el (byte-optimize-backward-char): | |
659 (byte-optimize-backward-word): New optimizations. | |
660 (side-effect-free-fns, side-effect-and-error-free-fns): Add | |
661 entries. | |
662 | |
663 1999-09-09 Gerd Moellmann <gerd@gnu.org> | |
664 | |
665 * image.el (put-image): Remove optional buffer parameter. | |
666 | |
667 * faces.el (face-italic-p): Return t only for values `italic' | |
668 and `oblique'. | |
669 | |
670 * mouse.el (mouse-drag-mode-line-1): Extension of former | |
671 mouse-drag-mode-line that also drags the header line. | |
672 (mouse-drag-mode-line): Call it. | |
673 (mouse-drag-header-line): New. | |
674 (toplevel): Bind down-mouse-1 on header lines to | |
675 mouse-drage-header-line. | |
676 | |
677 1999-09-08 Gerd Moellmann <gerd@gnu.org> | |
678 | |
679 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref. | |
680 (make-mode-line-mouse-sensitive): Replace `top-line' by | |
681 `header-line'. | |
682 | |
683 1998-09-08 Michael Ernst <mernst@alum.mit.edu> | |
684 | |
685 * help.el (describe-function-1): Don't return empty string for keymaps. | |
686 | |
687 * fill.el (fill-region-as-paragraph, canonically-space-region): | |
688 Respect colon-double-space at end of line. | |
689 | |
690 1999-09-08 Stephen Gildea <gildea@alum.mit.edu> | |
691 | |
692 * files.el (backup-by-copying-when-privileged-mismatch): New variable. | |
693 (backup-buffer): Use it. | |
694 | |
695 1999-09-08 Peter Breton <pbreton@ne.mediaone.net> | |
696 | |
697 * generic-x.el (generic-define-unix-modes): Added new modes: | |
698 inetd-conf-generic-mode, etc-services-generic-mode, | |
699 etc-passwd-generic-mode. These are all defined for Unix by default. | |
700 (apache-generic-mode): Use an imenu-generic-expression to list | |
701 Configuration keywords. | |
702 (samba-generic-mode): Use both ; and # as comment characters. | |
703 (samba-generic-mode): Font-lock expressions now highlight name | |
704 value pairs. | |
705 (bat-generic-mode): Keywords are now case-insensitive through | |
706 font-lock-defaults setting. | |
707 (java-properties-generic-mode): Supports both ! and # as comment | |
708 characters. | |
709 (java-properties-generic-mode): Added an imenu-generic-expression | |
710 (java-properties-generic-mode): Reworked to support the various | |
711 different ways to separate name and value (viz, '=', ':' and | |
712 whitespace). | |
713 (show-tabs-generic-mode): Added this new generic-mode. | |
714 | |
715 1999-09-08 Richard Stallman <rms@gnu.org> | |
716 | |
717 * progmodes/inf-lisp.el: Moved from top directory. | |
718 | |
719 * tar-mode.el (tar-header-block-tokenize): | |
720 Use `when' instead of `and'. Fix some clobbered text. | |
721 | |
722 * gud.el (gud-make-debug-menu): Make a child for the | |
723 local menu, for its menu bar, and the debug menu. | |
724 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): | |
725 Use the history in the simple way. | |
726 | |
727 1999-09-07 Kenichi Handa <handa@etl.go.jp> | |
728 | |
729 * language/korea-util.el (default-korean-keyboard): Initialize it | |
730 according to the environment variable HANGUL_KEYBOARD_TYPE. | |
731 | |
732 1999-09-07 Richard Stallman <rms@gnu.org> | |
733 | |
734 * subr.el (make-temp-file): New function. | |
735 | |
736 1999-09-07 Stefan Monnier <monnier@cs.yale.edu> | |
737 | |
738 * font-lock.el (font-lock-multiline): New text property contains | |
739 a boolean to indicate if the char is part of a multiline match. | |
740 (font-lock-default-fontify-region): Extend the region appropriately | |
741 for multiline keywords. | |
742 (font-lock-default-unfontify-region): Also remove the new | |
743 font-lock-multiline text property. | |
744 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches. | |
745 (font-lock-fontify-keywords-region): Mark multiline regexp matches. | |
746 | |
747 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
748 | |
749 * diary-lib.el (list-diary-entries): Make sure two-digit years | |
750 have leading zeros. | |
751 | |
752 1999-09-07 Gerd Moellmann <gerd@gnu.org> | |
753 | |
754 * faces.el (face-set-after-frame-default): Initialize some | |
755 attributes of some faces from frame parameters. | |
756 | |
757 * faces.el (scroll-bar, border, cursor, mouse): New faces. | |
758 | |
759 1999-09-07 Gerd Moellmann <gerd@gnu.org> | |
760 | |
761 * faces.el (fringe): Replaces face `margin'. | |
762 | |
763 1999-09-07 Dave Love <fx@gnu.org> | |
764 | |
765 * tar-mode.el (tar-header-block-tokenize): Bind linkname. | |
766 | |
767 1999-09-07 Richard Stallman <rms@gnu.org> | |
768 | |
769 * subr.el (push): Doc fix. | |
770 | |
771 1999-09-06 Richard Stallman <rms@gnu.org> | |
772 | |
773 * vc.el (vc-annotate-display): Use < 69 not < 70 | |
774 to distinguish 20YY from 19YY. | |
775 | |
776 * timezone.el (timezone-parse-date): Use < 69 not < 70 | |
777 to distinguish 20YY from 19YY. | |
778 | |
779 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file. | |
780 | |
781 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk> | |
782 | |
783 * quickurl.el: (quickurl-list-focused-line): Removed. | |
784 (quickurl-list-insert): Now works out the focused line using | |
785 `count-lines' instead of using `quickurl-list-focused-line'. | |
786 | |
787 1999-09-06 Richard Stallman <rms@gnu.org> | |
788 | |
789 * mail/rmail.el (rmail-retry-failure): Unconditionally move | |
790 to beginning of message. | |
791 | |
792 1999-09-06 Dave Love <fx@gnu.org> | |
793 | |
794 * isearch.el (isearch-mode-map): Add mouse-2. | |
795 | |
796 * rmail.el (rmail-read-password): Deleted. | |
797 (rmail-get-pop-password): Use read-password. | |
798 | |
799 * quickurl.el: Don't conditionally define caddr. | |
800 (quickurl-url-comment): Use nth, not caddr in function and | |
801 defsetf. | |
802 | |
803 1999-09-06 Richard Stallman <rms@gnu.org> | |
804 | |
805 * auto-show.el: Doc fixes. | |
806 | |
807 1999-09-06 Stephen Eglen <stephen@gnu.org> | |
808 | |
809 * progmodes/octave-inf.el (inferior-octave-startup-args): Add | |
810 --no-line-editing so that TABs in source files are not interpreted | |
811 as completion requests. | |
812 | |
813 1999-09-06 Gerd Moellmann <gerd@gnu.org> | |
814 | |
815 * hscroll.el, auto-show.el: Remove all code, keep the public | |
816 interface as no-ops. | |
817 | |
818 * faces.el (face-bold-p): Don't return t if face has lighter | |
819 weight than normal. | |
820 | |
821 1999-09-06 Eli Zaretskii <eliz@gnu.org> | |
822 | |
823 * startup.el (command-line): Make small-temporary-file-directory | |
824 be nil except on ms-dos. | |
825 | |
826 * files.el (small-temporary-file-directory): Ditto. Also doc fix. | |
827 | |
828 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it | |
829 is defined. | |
830 | |
831 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive | |
832 letters with a colon after d or l. | |
833 | |
834 1999-09-06 Dave Love <fx@gnu.org> | |
835 | |
836 * byte-opt.el (byte-boolean-vars): Removed. (Now primitive.) | |
837 | |
838 1999-09-05 Richard Stallman <rms@gnu.org> | |
839 | |
840 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY. | |
841 | |
842 * textmodes/paragraphs.el (backward-kill-sentence): | |
843 Don't test minibuffer-prompt-end here. | |
844 (forward-sentence): Do handle it here. | |
845 (backward-kill-paragraph): Don't test it here. | |
846 (forward-paragraph): Handle it here. | |
847 | |
848 * mouse.el (font-menu-add-default): Simplify code. | |
849 | |
850 1999-09-05 Gerd Moellmann <gerd@gnu.org> | |
851 | |
852 * faces.el (header-line): Renamed from `top-line'. | |
853 | |
854 1999-09-05 Gerd Moellmann <gerd@gnu.org> | |
855 | |
856 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'. | |
857 | |
858 1999-09-04 Richard Stallman <rms@gnu.org> | |
859 | |
860 * whitespace.el: New file. | |
861 | |
862 1999-09-04 Dave Love <fx@gnu.org> | |
863 | |
864 * paths.el: Make some doc strings obey the make-docfile convention. | |
865 | |
866 * bindings.el: Likewise. | |
867 (debug-ignored-errors): Remove BBDB ones. | |
868 | |
869 1999-09-03 Richard Stallman <rms@gnu.org> | |
870 | |
871 * mail/mh-comp.el (mh-forward): Get new subject line from the original, | |
872 not from the draft to forward. | |
873 | |
874 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun. | |
875 | |
876 1999-09-03 Dave Love <fx@gnu.org> | |
877 | |
878 * double.el (double-mode): Customize the variable. | |
879 | |
880 1999-09-03 Kenichi Handa <handa@etl.go.jp> | |
881 | |
882 * international/characters.el: Delete duplicated code. | |
883 | |
884 1999-09-02 Richard Stallman <rms@gnu.org> | |
885 | |
886 * indent.el (indent-relative): Doc fix. | |
887 | |
888 * quickurl.el (quickurl): Doc fix. | |
889 | |
890 1999-09-02 Gerd Moellmann <gerd@gnu.org> | |
891 | |
892 * faces.el (margin): Change background to "gray" for mono (this is | |
893 drawn with a stipple pattern). | |
894 | |
895 1999-09-02 Gerd Moellmann <gerd@gnu.org> | |
896 | |
897 * simple.el (next-history-element): Use minibuffer-prompt-end once | |
898 again. Remove test for minibuffer-prompt-in-buffer. | |
899 | |
900 1999-09-02 Eli Zaretskii <eliz@gnu.org> | |
901 | |
902 * files.el (small-temporary-file-directory): New variable. | |
903 | |
904 * startup.el (command-line): Compute the value of | |
905 small-temporary-file-directory. | |
906 | |
907 * ediff-init.el (ediff-temp-file-prefix): Use | |
908 small-temporary-file-directory if non-nil. | |
909 | |
910 * vc.el (vc-update-change-log): Likewise. | |
911 | |
912 * progmodes/cmacexp.el (c-macro-expansion): Likewise. | |
913 | |
914 * simple.el (shell-command, shell-command-on-region): Use | |
915 make-temp-name properly. Use small-temporary-file-directory if | |
916 non-nil, otherwise temporary-file-directory, to generate temporary | |
917 files. | |
918 | |
919 * dos-w32.el (direct-print-region-helper): Use | |
920 temporary-file-directory. (From Stefan Monnier.) | |
921 | |
922 1999-09-02 Richard Stallman <rms@gnu.org> | |
923 | |
924 * progmodes/asm-mode.el (asm-mode): Set comment-start properly | |
925 from asm-comment-char. | |
926 (asm-font-lock-keywords): Recognize instruction width suffixes. | |
927 | |
928 1999-09-01 Richard Stallman <rms@gnu.org> | |
929 | |
930 * play/fortune.el: New file. | |
931 | |
932 1999-08-31 Dave Love <fx@gnu.org> | |
933 | |
934 * help.el (help-make-xrefs): Don't lose on non-empty blank line | |
935 after key table. | |
936 | |
937 * byte-opt.el (byte-boolean-vars): Add several w32 and redisplay | |
938 variables. | |
939 | |
940 * subr.el (push): Fix typo. | |
941 | |
942 1999-08-30 Kevin Blake <kblake@ticnet.com> | |
943 | |
944 * emacs-lisp/ring.el: Many doc fixes. | |
945 (ring-size, ring-copy): New functions. | |
946 | |
947 1999-08-29 Richard Stallman <rms@gnu.org> | |
948 | |
949 * progmodes/etags.el (tags-loop-continue): | |
950 After tags-loop-operate returns, force skip to next file. | |
951 | |
952 * mail/mail-extr.el (mail-extr-all-letters-but-separators) | |
953 (mail-extr-first-letters, mail-extr-last-letters): | |
954 Use character classes [:alpha:] and [:alnum:]. | |
955 | |
956 * subr.el (push, pop): New macros. | |
957 | |
958 * progmodes/compile.el (compilation-error-regexp-alist): | |
959 New item for SGI IRIX MipsPro compilers. | |
960 | |
961 * speedbar.el (speedbar-directory-buttons): Recognize | |
962 device names when checking for file names. | |
963 | |
964 * array.el (array-reconfigure-rows): Use generate-new-buffer. | |
965 | |
966 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros, | |
967 and specially handle defvar inside their expansions. | |
968 (eval-defun-1): New subroutine. | |
969 | |
970 * progmodes/compile.el (compilation-error-regexp-alist): | |
971 Fix the Perl -w entry to allow period after line number. | |
972 Don't allow newlines in file name, but allow them after line number | |
973 for Perl debugging traces. | |
974 | |
975 * which-func.el (which-func-cleanup-function): New variable. | |
976 (which-function): Call that function. | |
977 | |
978 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or ( | |
979 to end a function name. | |
980 | |
981 * informat.el (Info-tagify): Don't insert more than one newline | |
982 before the tag table. | |
983 | |
984 1999-08-29 Stefan Monnier <monnier@cs.yale.edu> | |
985 | |
986 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather | |
987 than make-temp-name, use match-string-no-properties, and eliminate | |
988 a quadratic behavior when building bibtex-strings. | |
989 | |
990 1999-08-29 Alex Schroeder <alex@gnu.org> | |
991 | |
992 * comint.el (comint-input-ring-separator): New variable. | |
993 (comint-read-input-ring): Doc change; use | |
994 comint-input-ring-separator when reading file. | |
995 (comint-write-input-ring): Use | |
996 comint-input-ring-separator when writing file. | |
997 | |
998 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com> | |
999 | |
1000 * informat.el (Info-tagify): Start by widening. | |
1001 Match node headers that don't list the file name, | |
1002 and more kinds of page separations. | |
1003 Strip properties during tagification. | |
1004 Use start of node header line as tag's position. | |
1005 Fix the "done" message. | |
1006 | |
1007 (Info-validate): Save and restore match data around narrowing down. | |
1008 | |
1009 1999-08-28 Richard M. Stallman <rms@gnu.org> | |
1010 | |
1011 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode): | |
1012 On repeated call, override previous values put into | |
1013 minor-mode-map-alist and minor-mode-alist. | |
1014 | |
1015 1999-08-28 Michael Ernst <mernst@alum.mit.edu> | |
1016 | |
1017 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format. | |
1018 | |
1019 1999-08-27 Andreas Schwab <schwab@gnu.org> | |
1020 | |
1021 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker | |
1022 from cvs update. | |
1023 | |
1024 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
1025 | |
1026 * calendar/calendar.el (calendar-move-hook): New hook. | |
1027 | |
1028 * calendar/cal-move.el: Call the new hook in every movement function. | |
1029 | |
1030 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload | |
1031 the right function name. | |
1032 | |
1033 1999-08-26 Stephen Gildea <gildea@alum.mit.edu> | |
1034 | |
1035 * time-stamp.el: Put quote-backquote around all symbol names | |
1036 in doc strings, for mousing. | |
1037 (time-stamp): support multi-line patterns. | |
1038 (time-stamp-inserts-lines): new variable. | |
1039 (time-stamp-count): new variable. | |
1040 (time-stamp-string-preprocess): fixed bug where "%%a" becomes | |
1041 "Thu" instead of "%a". | |
1042 | |
1043 1999-08-25 Gerd Moellmann <gerd@gnu.org> | |
1044 | |
1045 * simple.el (kill-word): Undo previous change. | |
1046 | |
1047 1999-08-25 Gerd Moellmann <gerd@gnu.org> | |
1048 | |
1049 * jit-lock.el (jit-lock-function): Extend the fontified range | |
1050 to the beginning of the line containing the range start and | |
1051 the beginning of the line following the range end. | |
1052 | |
1053 1999-08-24 Dave Love <fx@gnu.org> | |
1054 | |
1055 * timezone.el: Move provide to end. | |
1056 (timezone-parse-date): Simplify somewhat. Assume 2-digit years | |
1057 <70 are 2000+. | |
1058 (timezone-parse-time): Simplify somewhat. | |
1059 | |
1060 1999-08-24 Gerd Moellmann <gerd@gnu.org> | |
1061 | |
1062 * faces.el (margin): Renamed from bitmap-area. | |
1063 | |
1064 1999-08-24 Alex Schroeder <alex@gnu.org> | |
1065 | |
1066 * sql.el: Doc changes. | |
1067 (sql-sybase): use sql-server instead of sql-database. | |
1068 | |
1069 1999-08-23 Dave Love <fx@gnu.org> | |
1070 | |
1071 * rect.el: Add/fix various doc strings. Add `*' to all the | |
1072 interactive specs. | |
1073 | |
1074 1999-08-21 Gerd Moellmann <gerd@gnu.org> | |
1075 | |
1076 * jit-lock.el (jit-lock-function): Use line-beginning-position. | |
1077 Don't unwind-protect font-lock-fontify-region. | |
1078 | |
1079 * paragraphs.el (backward-kill-paragraph): Don't move | |
1080 point into mini-buffer prompt. | |
1081 (backward-kill-sentence): Ditto. | |
1082 | |
1083 * simple.el (next-history-element): Use minibuffer-prompt-end. | |
1084 Remove test for minibuffer-prompt-in-buffer. | |
1085 (kill-word): Don't move point into mini-buffer prompt. | |
1086 | |
1087 1999-08-21 Dave Love <fx@gnu.org> | |
1088 | |
1089 * Makefile: Exclude CVS dirs like RCS. | |
1090 | |
1091 1999-08-19 Dave Love <fx@gnu.org> | |
1092 | |
1093 * tooltip.el (tooltip-mode): Customize this, per convention. | |
1094 (tooltip-active): Option deleted. | |
1095 | |
1096 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize. | |
1097 | |
1098 * hanoi.el, page-ext.el: Declare dynamic vars. | |
1099 | |
1100 * term.el: Avoid ange-ftp related compilation warnings. | |
1101 | |
1102 1999-08-18 Gerd Moellmann <gerd@gnu.org> | |
1103 | |
1104 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode' | |
1105 the default so that beginners can benefit from it without | |
1106 searching in manuals. | |
1107 | |
1108 1999-08-18 Ray Blaak <blaak@gnu.org> | |
1109 | |
1110 * progmodes/delphi.el: Consider assembly sections as blocks, to | |
1111 indent them better. Make auto-indent on newline optional. | |
1112 | |
1113 1999-08-17 Gerd Moellmann <gerd@gnu.org> | |
1114 | |
1115 * bindings.el (mode-line-modified): Look up key binding for C-x | |
1116 C-q. If it's bound call that binding, otherwise call | |
1117 toggle-read-only. | |
1118 | |
1119 1999-08-17 Dave Love <fx@gnu.org> | |
1120 | |
1121 * info.el (info): Doc fix. | |
1122 | |
1123 * finder.el (finder-known-keywords): Add `multimedia'. | |
1124 | |
1125 * apropos.el: Don't capitalize custom group name. | |
1126 | |
1127 * info-look.el: Remove compatibility code. | |
1128 (info-lookup-guess-default*): DTRT for point at start of symbol. | |
1129 (info-complete): Don't lose with point not at end of symbol. | |
1130 | |
1131 1999-08-16 Gerd Moellmann <gerd@gnu.org> | |
1132 | |
1133 * term.el (toplevel): Make face `term-default' an empty face. | |
1134 The code relied on the fact that Emacs ignored invalid faces in | |
1135 face text properties in 20.4. | |
1136 | |
1137 1999-08-16 Richard M. Stallman <rms@gnu.org> | |
1138 | |
1139 * subr.el (point-at-eol, point-at-bol): New aliases. | |
1140 | |
1141 * simple.el: Functions reordered. | |
1142 | |
1143 * rect.el (delete-rectangle-line): Use line-end-position. | |
1144 | |
1145 1999-08-16 Karl Heuer <kwzh@gnu.org> | |
1146 | |
1147 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved | |
1148 here from simple.el. | |
1149 | |
1150 1999-08-16 Dave Love <fx@gnu.org> | |
1151 | |
1152 * mouse.el: Provide `mldrag' for compatibility. | |
1153 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases, | |
1154 marked obsolete. | |
1155 | |
1156 * mldrag.el: Removed since the features are in mouse.el. | |
1157 | |
1158 * jka-compr.el (auto-compression-mode): New variable for | |
1159 customization. | |
1160 | |
1161 * bindings.el (mode-line-mule-info): Doc fix. | |
1162 | |
1163 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in | |
1164 name comparisons. | |
1165 | |
1166 * files.el (interpreter-mode-alist): Add make, guile, clisp. | |
1167 (find-file): Doc fix. | |
1168 | |
1169 1999-08-16 Carsten Dominik <cd@gnu.org> | |
1170 | |
1171 * textmodes/reftex.el: Most of the code moved to other files. | |
1172 * textmodes/reftex-auc.el: New file, split out from reftex.el | |
1173 * textmodes/reftex-cite.el: New file, split out from reftex.el | |
1174 * textmodes/reftex-global.el: New file, split out from reftex.el | |
1175 * textmodes/reftex-index.el: New file, split out from reftex.el | |
1176 * textmodes/reftex-parse.el: New file, split out from reftex.el | |
1177 * textmodes/reftex-ref.el: New file, split out from reftex.el | |
1178 * textmodes/reftex-sel.el: New file, split out from reftex.el | |
1179 * textmodes/reftex-toc.el: New file, split out from reftex.el | |
1180 * textmodes/reftex-vars.el: New file, split out from reftex.el | |
1181 * textmodes/reftex-vcr.el: New file, split out from reftex.el | |
1182 | |
1183 1999-08-16 Carsten Dominik <cd@gnu.org> | |
1184 | |
1185 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed | |
1186 conflict with pop-up-frames. | |
1187 (reftex-special-environment-parsers): New constant. | |
1188 (reftex-label-alist): car of an entry can also be a function. | |
1189 (reftex-what-special-env): new function. | |
1190 (reftex-label-location): Call `reftex-what-special-env'. | |
1191 (reftex-compile-variables): Check for symbol in | |
1192 `reftex-label-alist'. | |
1193 (reftex-what-environment): fixed bug with stacked environments of | |
1194 same kind (e.g. enumerate). | |
1195 (reftex-process-string): Preserve default directory. | |
1196 (reftex-label-alist-builtin): changed prefixes of endnote and | |
1197 footnote. Also the magic words. | |
1198 (reftex-reference): Interprete new option | |
1199 `reftex-fref-is-default'. | |
1200 (reftex-replace-prefix-escapes): Interprete new `%S' format. | |
1201 (reftex-toc-mouse-view-line): Command removed (had no binding). | |
1202 (reftex-everything-regexp): New function. | |
1203 (reftex-nearest-match): Made better. | |
1204 (reftex-toc-find-section): Use new version of | |
1205 `reftex-nearest-match'. | |
1206 (reftex-insert-docstruct): adapted to work with the index stuff. | |
1207 (reftex-parse-from-file): Find index entries as well. | |
1208 (reftex-toc-toggle-index): New function | |
1209 (reftex-toc-map): `i' is now used to togle the index, File | |
1210 boundaries has been moved to `F'. | |
1211 (reftex-select-label-map): Toggling display of file boundaries is | |
1212 now on the `F' key, for consistency with `reftex-toc-map'. | |
1213 (reftex-erase-all-selection-and-index-buffers): Renamed from | |
1214 `reftex-erase-all-selection-buffer'. Now also kills the index | |
1215 buffers. | |
1216 (reftex-viewing-cross-references): Customization group renamed | |
1217 from reftex-viewing-cross-references-and-citations. | |
1218 (reftex-index-macro-regexp, | |
1219 reftex-find-index-entry-regexp-format): New variables | |
1220 (reftex-macros-with-index): New variable | |
1221 (reftex-add-index-macros): New function | |
1222 (reftex-renumber-simple-labels, reftex-translate): Allow for | |
1223 multiple labels in a single ref command. | |
1224 (reftex-index-support): New customization group | |
1225 (reftex-support-index, reftex-index-special-chars, | |
1226 reftex-index-macros, reftex-index-default-macro, | |
1227 reftex-index-default-tag, reftex-index-math-format, | |
1228 reftex-index-section-letters, reftex-index-include-context, | |
1229 reftex-index-follow-mode, reftex-index-header-face, | |
1230 reftex-index-section-face, reftex-index-tag-face, | |
1231 reftex-index-face): New options | |
1232 (reftex-index-map, reftex-index-menu, reftex-last-index-file, | |
1233 reftex-index-tag, reftex-index-return-marker, | |
1234 reftex-index-restriction-indicator, reftex-index-restriction-data, | |
1235 reftex-index-macro-regexp, reftex-index-level-re, | |
1236 reftex-index-key-end-re, reftex-find-index-entry-regexp-format, | |
1237 reftex-everything-regexp-no-index, reftex-index-re, | |
1238 reftex-macros-with-index, reftex-index-macro-alist): New variables | |
1239 (reftex-index-help, reftex-index-macros-builtin, | |
1240 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt, | |
1241 reftex-query-index-macro-help): New constants | |
1242 (reftex-index-selection-or-word, reftex-index, | |
1243 reftex-default-index, reftex-update-default-index, | |
1244 reftex-index-complete-tag, reftex-index-select-tag, | |
1245 reftex-index-complete-key, reftex-index-update-taglist, | |
1246 reftex-index-globally, reftex-index-mode, reftex-index-show-entry, | |
1247 reftex-display-index, reftex-insert-index, | |
1248 reftex-index-insert-new-letter, reftex-get-restriction, | |
1249 reftex-index-pre-command-hook, reftex-index-post-command-hook, | |
1250 reftex-index-show-help, reftex-index-next, reftex-index-previous, | |
1251 reftex-index-toggle-follow, reftex-index-toggle-context, | |
1252 reftex-index-view-entry, reftex-index-goto-entry-and-hide, | |
1253 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide, | |
1254 reftex-index-quit, reftex-index-quit-and-kill, | |
1255 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan, | |
1256 reftex-index-revert, reftex-index-switch-index-tag, | |
1257 reftex-index-restrict-to-section, reftex-index-widen, | |
1258 reftex-index-restriction-forward, | |
1259 reftex-index-restriction-backward, reftex-index-visit-location, | |
1260 reftex-index-analyze-entry, reftex-index-globalize, | |
1261 reftex-index-edit, reftex-index-toggle-range-beginning, | |
1262 reftex-index-toggle-range-end, reftex-index-edit-key, | |
1263 reftex-index-edit-attribute, reftex-index-edit-visual, | |
1264 reftex-index-edit-part, reftex-index-level-down, | |
1265 reftex-index-level-up, reftex-index-kill, reftex-index-undo, | |
1266 reftex-index-change-entry, reftex-index-goto-letter, | |
1267 reftex-add-index-macros, reftex-ensure-index-support, | |
1268 reftex-index-info-safe, reftex-index-info): New functions. | |
1269 | |
1270 | |
1271 1999-08-15 Richard M. Stallman <rms@gnu.org> | |
1272 | |
1273 * paren.el (show-paren-mode): Support making show-paren-mode | |
1274 a buffer-local variable. Don't check for a window system. | |
1275 (show-paren-function): Check whether show-paren-function is | |
1276 enabled in current buffer; do the right thing if not. | |
1277 Don't check for a window system. | |
1278 (show-paren-mode): Make it a user variable. | |
1279 | |
1280 * add-log.el (add-log-current-defun): Exclude all trailing whitespace. | |
1281 Handle `enum' like `struct'. | |
1282 | |
1283 * server.el (server-process-filter): If a client visits no buffers, | |
1284 close it immediately before recording it. | |
1285 | |
1286 * mail/mail-utils.el (mail-unquote-printable): Make it autoload. | |
1287 Optimize by calling concat just once. Handle =\n sequence. | |
1288 (mail-unquote-printable-region): New command. | |
1289 (mail-quote-printable): Make it autoload. | |
1290 | |
1291 1999-08-15 Karl Heuer <kwzh@gnu.org> | |
1292 | |
1293 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org. | |
1294 | |
1295 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
1296 | |
1297 * lisp/texinfmt.el: Handle @ifnottex. | |
1298 | |
1299 1999-08-15 Eli Zaretskii <eliz@gnu.org> | |
1300 | |
1301 * frame.el (blink-cursor): Don't turn on cursor blinking for | |
1302 ms-dos. | |
1303 | |
1304 * faces.el (face-valid-attribute-values): Look in | |
1305 x-bitmap-file-path only for x and w32 window systems. | |
1306 | |
1307 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default". | |
1308 Do that if width is nil as well. | |
1309 (x-display-mm-height, x-display-mm-width): Update values. | |
1310 (x-colors): Compute the list from msdos-color-values. | |
1311 (x-select-enable-clipboard): Doc fix. | |
1312 (x-frob-font-weight, x-font-family-list): New functions. | |
1313 | |
1314 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk> | |
1315 | |
1316 * window.el (shrink-window-if-larger-than-buffer): Don't try to | |
1317 back up from beginning of buffer. | |
1318 | |
1319 1999-08-13 Karl Heuer <kwzh@gnu.org> | |
1320 | |
1321 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound. | |
1322 | |
1323 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US> | |
1324 | |
1325 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G | |
1326 doomsday clock, speed control is added and changes are made to | |
1327 allow large numbers of rings: rings now show the whole ring | |
1328 number, not just the last digit; consecutive rings are allowed to | |
1329 be the same size when necessary to fit all the rings in the | |
1330 window; and poles can be oriented horizontally. Face support is | |
1331 thrown in gratuitously. | |
1332 (hanoi): Changed default number of rings back to 3. | |
1333 (hanoi-unix, hanoi-unix-64): New commands | |
1334 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces, | |
1335 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face, | |
1336 hanoi-odd-ring-face): New variables. | |
1337 (hanoi-internal, hanoi-current-time-float, hanoi-put-face, | |
1338 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for, | |
1339 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions. | |
1340 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n. | |
1341 (hanoi-topos, hanoi-draw-ring): Removed. | |
1342 | |
1343 1999-08-12 Gerd Moellmann <gerd@gnu.org> | |
1344 | |
1345 * faces.el (face-valid-attribute-values): Return an alist for | |
1346 families on ttys. | |
1347 (face-read-integer): Handle unspecified face attributes. Add | |
1348 completion for `unspecified'. | |
1349 (read-face-attribute): Handle unspecified font attributes. | |
1350 (face-valid-attribute-values): Add `unspecified' to lists so that | |
1351 it can be chosen via completion. | |
1352 (face-read-string): Don't recognize "none" as input. | |
1353 | |
1354 1999-08-10 Dave Love <fx@gnu.org> | |
1355 | |
1356 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc | |
1357 string. | |
1358 | |
1359 * sun-curs.el: Require sun-fns. | |
1360 | |
1361 1999-08-10 Dave Love <fx@gnu.org> | |
1362 | |
1363 * autorevert.el (auto-revert-mode): Add autoload cookie. | |
1364 | |
1365 * hscroll.el, auto-show.el: Files deleted -- we have built-in | |
1366 hscroll. | |
1367 | |
1368 * simple.el (hscroll-step, hscroll-point-visible) | |
1369 (hscroll-window-column): Remove now we have the mentioned real | |
1370 horizontal autoscrolling. | |
1371 | |
1372 1999-08-10 Richard M. Stallman <rms@gnu.org> | |
1373 | |
1374 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from | |
1375 control use of -f option. | |
1376 (mail-specify-envelope-from): New variable. | |
1377 (mail-from-style): Doc fix. | |
1378 | |
1379 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn. | |
1380 (easy-menu-get-map): New arg TO-MODIFY helps choose | |
1381 between local and global maps. | |
1382 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map. | |
1383 (easy-menu-change): Doc fix. | |
1384 | |
1385 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward. | |
1386 (info-lookup-guess-default): Simplified and cleaned up. | |
1387 (info-lookup-guess-default*): Preserve point. | |
1388 | |
1389 * view.el (view-mode-disable): If buffer-read-only is nil, | |
1390 don't change it. | |
1391 | |
1392 * files.el (after-find-file): Disable View mode if buffer is no | |
1393 longer read-only. | |
1394 | |
1395 * view.el (view-mode-enable, view-mode-disable): | |
1396 Call force-mode-line-update. | |
1397 | |
1398 1999-08-10 Karl Heuer <kwzh@gnu.org> | |
1399 | |
1400 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call. | |
1401 * array.el, play/landmark.el, international/latin-3.el: Likewise. | |
1402 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise. | |
1403 | |
1404 1999-08-10 Alex Schroeder <asc@bsiag.com> | |
1405 | |
1406 * ansi-color.el (ansi-color-to-text-properties): Added New state 5 | |
1407 to prevent m-eating-bug. | |
1408 | |
1409 1999-08-10 Eli Zaretskii <eliz@gnu.org> | |
1410 | |
1411 * term/pc-win.el (msdos-bg-mode): Remove. Call | |
1412 frame-set-background-mode instead. All callers changed. | |
1413 (msdos-face-setup): Don't force color display parameter, it is set | |
1414 by frame-set-background-mode. | |
1415 (make-msdos-frame): Call x-handle-reverse-video and | |
1416 face-set-after-frame-default. Delete frame if creation failed. | |
1417 | |
1418 * faces.el (face-set-after-frame-default): Don't call | |
1419 make-face-x-resource-internal for the pc window-system. | |
1420 | |
1421 1999-08-10 Dave Love <fx@melange.gnu.org> | |
1422 | |
1423 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat | |
1424 case with no docstring specially. | |
1425 | |
1426 1999-08-09 Eli Zaretskii <eliz@gnu.org> | |
1427 | |
1428 * complete.el (PC-do-completion): If completing on file name, | |
1429 reproduce str by concatenating its directory and basename parts. | |
1430 | |
1431 1999-08-07 Dave Love <fx@gnu.org> | |
1432 | |
1433 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid | |
1434 unibyte to multibyte conversion of search-forward (from Handa), | |
1435 but avoid the replacement if the language is Latin-N. | |
1436 | |
1437 1999-08-06 Richard Stallman <rms@gnu.org> | |
1438 | |
1439 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args | |
1440 of eval-buffer. | |
1441 | |
1442 * international/mule.el (load-with-code-conversion): | |
1443 Pass t to eval-buffer for DO-ALLOW-PRINT. | |
1444 | |
1445 1999-08-06 Geoff Voelker <voelker@cs.washington.edu> | |
1446 | |
1447 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist | |
1448 of filenames and attributes. | |
1449 (ls-lisp-insert-directory): Use directory-files-and-attributes | |
1450 for speed. | |
1451 | |
1452 1999-08-05 Dave Love <fx@gnu.org> | |
1453 | |
1454 * auto-show.el (auto-show-mode): Fix :set. | |
1455 | |
1456 * widget.el (define-widget-keywords): Make dummy definition and | |
1457 comment-out its use. | |
1458 | |
1459 1999-08-04 Richard Stallman <rms@gnu.org> | |
1460 | |
1461 * progmodes/tcl.el: Customized. | |
1462 | |
1463 * sql.el (sql-accumulate-and-indent): Instead of testing | |
1464 whether this is Emacs 20 before calling comint-accumulate, | |
1465 test whether comint-accumulate is defined. | |
1466 | |
1467 1999-08-04 Dave Love <fx@gnu.org> | |
1468 | |
1469 * sgml-mode.el: Require outline when compiling. | |
1470 (sgml-mode-hook, html-mode-hook): Customize. | |
1471 (sgml-validate-command): Fix :version. | |
1472 (html-autoview-mode): Doc fix. | |
1473 | |
1474 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do | |
1475 nothing in Latin-N environment. | |
1476 | |
1477 * info.el (Info-find-node): Call info-initialize here. | |
1478 (info): Not here. | |
1479 (Info-file-list-for-emacs): Add message, dired-x, c, viper. | |
1480 | |
1481 1999-08-04 Richard Stallman <rms@gnu.org> | |
1482 | |
1483 * ansi-color.el: New file. | |
1484 | |
1485 1999-08-04 Stefan Monnier <monnier@cs.yale.edu> | |
1486 | |
1487 * dired.el (dired-string-replace-match): Return `nil' when no match | |
1488 found with global search. | |
1489 | |
1490 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file): | |
1491 * terminal.el (te-terminfo-directory): | |
1492 * mail/mailpost.el (post-mail-send-it): | |
1493 * mail/metamail.el (metamail-region): | |
1494 * progmodes/ada-mode.el (ada-tmp-directory): | |
1495 Use temporary-file-directory. | |
1496 | |
1497 * progmodes/compile.el (compilation-parsing-end,compilation-setup) | |
1498 (compilation-filter, compilation-forget-errors) | |
1499 (compilation-parse-errors): Use a marker instead of an integer for | |
1500 `compilation-parsing-end'. | |
1501 | |
1502 * progmodes/diff.el (diff-parse-differences): | |
1503 Use a marker instead of an integer for `compilation-parsing-end'. | |
1504 * textmodes/tex-mode.el (tex-compilation-parse-errors): | |
1505 Use a marker instead of an integer for `compilation-parsing-end'. | |
1506 | |
1507 1999-08-03 Richard Stallman <rms@gnu.org> | |
1508 | |
1509 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View. | |
1510 (Buffer-menu-mode): Doc fix. | |
1511 (Buffer-menu-view): New command. | |
1512 (Buffer-menu-view-other-window): New command. | |
1513 | |
1514 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com> | |
1515 | |
1516 * replace.el (query-replace-regexp-eval) | |
1517 (replace-eval-replacement, replace-loop-through-replacements) | |
1518 (replace-match-string-symbols): New functions. | |
1519 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA). | |
1520 Use replace-loop-through-replacements. | |
1521 | |
1522 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk> | |
1523 | |
1524 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f. | |
1525 (5x5): Doc fix. | |
1526 | |
1527 1999-08-03 Dave Love <fx@gnu.org> | |
1528 | |
1529 * fortran.el (fortran-indent-new-line): Make it an alias | |
1530 for reindent-then-newline-and-indent. | |
1531 | |
1532 1999-08-03 Didier Verna <verna@inf.enst.fr> | |
1533 | |
1534 * rect.el: All functions rewritten, except when noted above | |
1535 their declaration. Below is a list of interface changes. | |
1536 (apply-on-rectangle): New function, mostly replaces | |
1537 `operate-on-rectangle'. All callers changed. | |
1538 (move-to-column-force): Pass new second argument to `move-to-column'. | |
1539 (kill-rectangle): Added optional prefix arg to fill lines. | |
1540 (delete-rectangle): Ditto. | |
1541 (delete-whitespace-rectangle): Ditto. | |
1542 (delete-extract-rectangle): Ditto. | |
1543 (open-rectangle): Ditto. | |
1544 (clear-rectangle): Ditto. | |
1545 (delete-whitespace-rectangle-line): New function. | |
1546 (delete-rectangle-line): Added third arg FILL. | |
1547 (delete-extract-rectangle-line): Ditto. | |
1548 (open-rectangle-line): Ditto. | |
1549 (clear-rectangle-line): Ditto. | |
1550 | |
1551 1999-08-03 Ray Blaak <blaak@gnu.org> | |
1552 | |
1553 * progmodes/delphi.el: New file. | |
1554 | |
1555 1999-08-02 Richard Stallman <rms@gnu.org> | |
1556 | |
1557 * textmodes/outline.el (outline-previous-heading): New function. | |
1558 (outline-up-heading-all): Use outline-previous-heading. | |
1559 (outline-next-heading): Delete definition inserted yesterday. | |
1560 | |
1561 1999-08-01 Richard Stallman <rms@gnu.org> | |
1562 | |
1563 * textmodes/outline.el (outline-next-heading): New function. | |
1564 (outline-up-heading-all): New function. | |
1565 (outline-font-lock-level): Using outline-up-heading-all. | |
1566 Tell outline-back-to-heading to accept invisible headings. | |
1567 | |
1568 * simple.el (shell-command-on-region): EXIT-STATUS can be a string. | |
1569 | |
1570 * mail/mh-utils.el (mh-find-path-run): New variable. | |
1571 (mh-find-path): Test and set that. | |
1572 Set mail-user-agent only the first time this function is run. | |
1573 (mail-user-agent): Defvar deleted. | |
1574 | |
1575 * info.el (info-initialize): New function. | |
1576 (info): Call info-initialize. | |
1577 (Info-directory-list): Initialize to nil, | |
1578 so info-initialize will set it up for real. | |
1579 | |
1580 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
1581 | |
1582 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it | |
1583 does not interpret a time as the year in a day-month entry. | |
1584 | |
1585 * calendar/diary-lib.el: Change syntax table entry for colon in | |
1586 the diary as part of the european-date-diary-pattern fix. | |
1587 | |
1588 1999-08-01 Eli Zaretskii <eliz@gnu.org> | |
1589 | |
1590 * international/mule.el (set-auto-coding): Allow whitespace before | |
1591 and after the "variable: value" pair. | |
1592 | |
1593 1999-07-30 Ken'ichi Handa <handa@gnu.org> | |
1594 | |
1595 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed. | |
1596 (default-sendmail-coding-system): Doc-string fixed. | |
1597 | |
1598 1999-07-30 Dave Love <fx@gnu.org> | |
1599 | |
1600 * subr.el (assoc-delete-all): New function, renamed from | |
1601 frame-delete-all. | |
1602 | |
1603 * frame.el: Change comments to doc strings and other doc fixes. | |
1604 (frame-delete-all): Moved to subr.el as `assoc-delete-all'. | |
1605 Callers changed. | |
1606 (set-background-color, set-foreground-color, set-cursor-color) | |
1607 (set-mouse-color, set-border-color): Offer completion of colours. | |
1608 (cursor): Add :version to defgroup. | |
1609 | |
1610 * facemenu.el (list-colors-display): Make it work on ttys. | |
1611 (facemenu-read-color): Likewise. | |
1612 | |
1613 1999-07-30 Richard M. Stallman <rms@gnu.org> | |
1614 | |
1615 * frame.el (frame-notice-user-settings): If background | |
1616 color has been changed, update background-mode from it, | |
1617 then update faces. | |
1618 | |
1619 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com> | |
1620 | |
1621 * net-utils.el (finger): Don't do indirect fingering. | |
1622 | |
1623 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
1624 | |
1625 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of | |
1626 rules. Add separator at end of holidays. | |
1627 (cal-tex-rules): New customizable variable. | |
1628 (cal-tex-latexify-list): Add optional parameter to put separator | |
1629 at end. | |
1630 | |
1631 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu> | |
1632 | |
1633 * textmodes/fill.el (fill-individual-paragraphs): Calculate new | |
1634 fill prefix on each line while looping to the end of paragraph. | |
1635 End paragraph if it's longer than the existing fill prefix. | |
1636 | |
1637 * textmodes/fill.el (fill-context-prefix): Doc fix. | |
1638 | |
1639 1999-07-30 Dave Love <fx@gnu.org> | |
1640 | |
1641 * font-lock.el (jit-lock): Fix :load, add :version. | |
1642 | |
1643 1999-07-30 Eli Zaretskii <eliz@gnu.org> | |
1644 | |
1645 * term/pc-win.el (msdos-face-setup): Register standard colors in | |
1646 Vface_tty_color_alist. | |
1647 (face-color-supported-p, face_color_gray_p): New functions. | |
1648 | |
1649 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p | |
1650 is bound. | |
1651 | |
1652 * startup.el (command-line): Don't register default colors for | |
1653 MSDOS window-system. | |
1654 | |
1655 1999-07-29 Dave Love <fx@gnu.org> | |
1656 | |
1657 * f90.el (f90-mode-syntax-table): Change backslash to escape, not | |
1658 charquote. | |
1659 | |
1660 * lisp-mode.el (eval-defun): Re-written to avoid | |
1661 capturing variables. | |
1662 | |
1663 * picture.el (picture-beginning-of-line): Don't call | |
1664 hscroll-point-visible now we have real autoscrolling. | |
1665 (picture-end-of-line, picture-newline, picture-open-line): | |
1666 Likewise. | |
1667 | |
1668 * international/latin-8.el: New file. | |
1669 * international/latin-9.el: New file. | |
1670 | |
1671 1999-07-28 Dave Love <fx@gnu.org> | |
1672 | |
1673 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter. | |
1674 | |
1675 * msb.el: Require cl only when compiling. | |
1676 (msb--home-dir): Deleted. | |
1677 (msb--format-title): Use abbreviate-file-name. | |
1678 (msb--choose-file-menu): Simplify string comparison. | |
1679 | |
1680 1999-07-28 Gerd Moellmann <gerd@gnu.org> | |
1681 | |
1682 * faces.el (toolbar): Add face definition for mono displays. | |
1683 | |
1684 1999-07-27 Richard M. Stallman <rms@gnu.org> | |
1685 | |
1686 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change. | |
1687 | |
1688 * frame.el (frame-initialize): When setting frame-initial-frame-alist, | |
1689 force copying of default-frame-alist. | |
1690 | |
1691 1999-07-26 Ken'ichi Handa <handa@gnu.org> | |
1692 | |
1693 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp. | |
1694 | |
1695 1999-07-26 Richard M. Stallman <rms@gnu.org> | |
1696 | |
1697 * frame.el (set-mouse-color): If new color is nil, | |
1698 really respecify the current color. | |
1699 | |
1700 1999-07-26 Gerd Moellmann <gerd@gnu.org> | |
1701 | |
1702 * faces.el (bitmap-area): Change background of face `bitmap-area' | |
1703 to white for mono displays. | |
1704 | |
1705 1999-07-26 Kenichi Handa <handa@etl.go.jp> | |
1706 | |
1707 * international/ccl.el (ccl-embed-symbol): New function. | |
1708 (ccl-program-p): Deleted. Now it's implemented in C code. | |
1709 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol. | |
1710 (ccl-compile-translate-character): Likewise. | |
1711 (ccl-compile-map-single): Likewise. | |
1712 (ccl-compile-multiple-map-function): Likewise. | |
1713 (declare-ccl-program): Doc-string modified. | |
1714 (check-ccl-program): Check compiled CCL code by ccl-program-p. | |
1715 | |
1716 1999-07-25 Ken'ichi Handa <handa@etl.go.jp> | |
1717 | |
1718 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change. | |
1719 | |
1720 1999-07-25 Markus Rost <rost@gnu.org> | |
1721 | |
1722 * cus-edit.el (custom-save-variables, custom-save-faces): Sort | |
1723 the entries to make custom-file more readable. | |
1724 | |
1725 1999-07-25 Richard M. Stallman <rms@gnu.org> | |
1726 | |
1727 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs. | |
1728 | |
1729 * emacs-lisp/edebug.el: Delete compatibility code. | |
1730 (edebug-next-token-class): If . is followed by a digit, | |
1731 return `symbol' for the token class. | |
1732 | |
1733 * startup.el (command-line): If we don't find the user's init file, | |
1734 set user-init-file to nil. | |
1735 | |
1736 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
1737 | |
1738 * info-look.el (info-lookup-interactive-arguments): Add optional | |
1739 argument query for new choice of help mode. | |
1740 (info-lookup-symbol): Use it. | |
1741 (info-lookup-file): Ditto. | |
1742 (info-lookup): Don't switch to other window, if already in Info | |
1743 buffer. | |
1744 | |
1745 1999-07-23 Dave Love <fx@gnu.org> | |
1746 | |
1747 * fortran.el (fortran-mode-syntax-table): Change `\' to `\' | |
1748 syntax. | |
1749 (fortran-fontify-string, fortran-match-!-commen): Deleted. | |
1750 (fortran-font-lock-syntactic-keywords): New variable. | |
1751 (fortran-mode): Use it. | |
1752 (fortran-font-lock-keywords-1): Don't do comments. | |
1753 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save | |
1754 match data. | |
1755 | |
1756 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls. | |
1757 | |
1758 * msb.el (msb-menu-bar-update-buffers): Renamed from | |
1759 menu-bar-update-buffers. | |
1760 (msb-custom-set, msb--toggle-menu-type): Call | |
1761 msb-menu-bar-update-buffers. | |
1762 (msb-mode): Revise the hook setting. | |
1763 | |
1764 * font-lock.el (turn-on-font-lock): Use tty-display-color-p. | |
1765 | |
1766 1999-07-23 Gerd Moellmann <gerd@gnu.org> | |
1767 | |
25956 | 1768 * font-lock.el, help.el, simple.el: Re-integrate previously |
1769 described changes that were lost due to errors while checking them | |
1770 in. | |
25837 | 1771 |
1772 1999-07-23 Kevin Blake <kblake@ticnet.com> | |
1773 | |
1774 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp. | |
1775 | |
1776 1999-07-23 Ken'ichi Handa <handa@etl.go.jp> | |
1777 | |
1778 * international/encoded-kb.el | |
1779 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character | |
1780 but push it to unread-command-events. | |
1781 (encoded-kbd-self-insert-iso2022-8bit): Likewise. | |
1782 (encoded-kbd-self-insert-sjis): Likewise. | |
1783 (encoded-kbd-self-insert-big5): Likewise. | |
1784 | |
1785 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up | |
1786 before left margin and fill-prefix by fill-find-break-point. | |
1787 | |
1788 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
1789 | |
1790 * info-look.el (info-lookup-setup-mode): Don't give up, if | |
1791 info-lookup-make-completions returns an error. | |
1792 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file | |
1793 name latex, not latex2e. | |
1794 | |
1795 1999-07-21 Richard M. Stallman <rms@gnu.org> | |
1796 | |
1797 * replace.el (perform-replace): Turn off case-fold-search | |
1798 if FROM-STRING argument has uppercase in it. | |
1799 | |
1800 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1801 | |
1802 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock | |
1803 mode is on. Don't use end of changed text. | |
1804 | |
1805 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1806 | |
1807 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table. | |
1808 (cl-hash-table-p): Renamed from hash-table-p. | |
1809 (cl-hash-table-count): Renamed from hash-table-count. | |
1810 (maphash): Alias to cl-maphash removed. | |
1811 (gethash): Likewise. | |
1812 (puthash): Likewise. | |
1813 (remhash): Likewise. | |
1814 (clrhash): Likewise. | |
1815 | |
1816 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1817 | |
1818 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with | |
1819 third arg non-nil. See comment there why this isn't a good idea. | |
1820 | |
1821 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1822 | |
1823 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message. | |
1824 | |
1825 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call | |
1826 sit-for with 3rd arg non-nil to prevent redisplay. | |
1827 | |
1828 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1829 | |
1830 * image.el (image-type-from-file-header): If file doesn't | |
1831 have a directory part, add data-directory. | |
1832 | |
1833 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1834 | |
1835 * tooltip.el (tooltip-gud-tips-p): Set default to nil. | |
1836 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse | |
1837 motion handling when tooltip-gud-tips-p is nil. | |
1838 | |
1839 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1840 | |
1841 * tooltip.el (tooltip-mode): Don't use `plusp'. | |
1842 (tooltip-active): Use initial value of nil. | |
1843 | |
1844 * jit-lock.el (jit-lock-mode): Don't use `plusp'. | |
1845 | |
1846 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1847 | |
1848 * bindings.el (make-mode-line-mouse-sensitive): Add key | |
1849 definitions for `top-line'. | |
1850 | |
1851 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1852 | |
1853 * faces.el (top-line): New face. | |
1854 | |
1855 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1856 | |
1857 * image.el (image-type-regexps): Add regexp for PS files. | |
1858 | |
1859 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1860 | |
1861 * faces.el (set-face-attribute): Fix wrong handling of frame | |
1862 begin equal to t. | |
1863 | |
1864 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1865 | |
1866 * image.el (image-type-regexps): Add PNG format. | |
1867 | |
1868 1999-07-21 Dave Love <fx@gnu.org> | |
1869 | |
1870 * bindings.el (mode-line-modified): New variable. | |
1871 (mode-line-mode-menu-1): Switch to appropriate window before | |
1872 showing menu. | |
1873 | |
1874 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1875 | |
1876 * faces.el (face-underline): Removed. | |
1877 (face-underline-color): Ditto. | |
1878 | |
1879 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1880 | |
1881 * faces.el (face-x-resources): Fix typo. | |
1882 | |
1883 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1884 | |
1885 * faces.el: Remove handling of `:relief', extend handling of | |
1886 `:box'. | |
1887 (frame-set-background-mode): Choose new defface specs after | |
1888 frame parameters have changed. | |
1889 | |
1890 * cus-face.el: Ditto. | |
1891 | |
1892 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1893 | |
1894 * custom.el (defface): Extend documentation to include new | |
1895 face attributes. | |
1896 | |
1897 * cus-face.el (custom-face-attributes): Add overline, | |
1898 strike-through, box. | |
1899 | |
1900 * faces.el (face-valid-attribute-values): Handle overline, | |
1901 strike-through, box. | |
1902 (face-attribute-name-alist): Add pairs for new face attributes. | |
1903 (describe-face): Handle new face attributes. | |
1904 | |
1905 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1906 | |
1907 * faces.el (face-x-resources): Add overline, strike-through, box. | |
1908 | |
1909 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1910 | |
1911 * enriched.el (enriched-translations): Add `display' and | |
1912 "x-display". | |
1913 (enriched-handle-display-prop): New. | |
1914 (enriched-decode-display-prop): New. | |
1915 | |
1916 * format.el (top-level): Give `display' property | |
1917 `format-list-atomic-p. | |
1918 (format-annotate-single-property-change): Test that property. | |
1919 If present, treat list property values like atoms. | |
1920 | |
1921 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1922 | |
1923 * cus-face.el (custom-face-attributes): Use `choice' everywhere | |
1924 so that "*" can be entered. | |
1925 | |
1926 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1927 | |
1928 * cus-face.el (custom-face-attributes): Don't use `#''. | |
1929 | |
1930 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp> | |
1931 | |
1932 * cus-face.el (custom-face-attributes): Return underline | |
1933 face attribute directly from the second lambda of underline. | |
1934 | |
1935 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1936 | |
1937 * jit-lock.el (jit-lock-stealth-verbose): Set to nil. | |
1938 | |
1939 * frame.el (after-setting-font-hooks): New variable. | |
1940 (set-frame-font): Run those hooks. | |
1941 | |
1942 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region. | |
1943 | |
1944 * faces.el (set-face-attribute): Fix doc string. | |
1945 | |
1946 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1947 | |
1948 * cus-face.el (custom-face-attributes): Accept color name. | |
1949 | |
1950 * faces.el (face-underline-p): Accept unspecified underlining. | |
1951 (face-underline): Ditto. Fix doc string. | |
1952 | |
1953 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp> | |
1954 | |
1955 * faces.el (face-underline-color): New function. | |
1956 | |
1957 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp> | |
1958 | |
1959 * cus-face.el (custom-face-attributes): Support underline coloring. | |
1960 Added slot to choose a color. | |
1961 | |
1962 * faces.el (face-underline): New function. | |
1963 (face-underline-p): Support underline coloring. | |
1964 Return nil only if the underline attribute is 'normal. | |
1965 (set-face-underline): New function. | |
1966 (face-valid-attribute-values): Support underline coloring. | |
1967 | |
1968 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1969 | |
1970 * image.el (insert-image): Use `display' instead of `glyph' | |
1971 as text property name. | |
1972 (put-image): Ditto. | |
1973 (image-type-from-file-header): Use insert-file-contents-literally. | |
1974 | |
1975 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1976 | |
1977 * easymenu.el (easy-menu-do-add-item): Don't use the empty | |
1978 string to indicate separators. | |
1979 | |
1980 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1981 | |
1982 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max | |
1983 instead of message-log. | |
1984 | |
1985 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1986 | |
1987 * faces.el (bitmap-area): New face. | |
1988 | |
1989 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1990 | |
1991 * image.el (insert-image): New. | |
1992 | |
1993 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1994 | |
1995 * frame.el (blink-cursor): Set the symbol's value. | |
1996 (show-trailing-whitespace): Change group to font-lock. | |
1997 | |
1998 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
1999 | |
2000 * jit-lock.el: New. | |
2001 * font-lock.el: Add jit-mode as new support mode. | |
2002 | |
2003 * font-lock.el (font-lock-fontify-keywords-region): Stop when | |
2004 reaching end instead of letting re-search-forward signal an error. | |
2005 (demand-lock-mode): New. | |
2006 (font-lock-turn-on-thing-lock): Add demand-lock-mode. | |
2007 (font-lock-turn-off-thing-lock): Ditto. | |
2008 (font-lock-after-fontify-buffer): Ditto. | |
2009 (font-lock-after-unfontify-buffer): Ditto. | |
2010 | |
2011 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2012 | |
2013 * gs.el: New file. | |
2014 | |
2015 * startup.el (command-line-1): Activate tooltip mode if | |
2016 interactive. | |
2017 | |
2018 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2019 | |
2020 * faces.el (toolbar): Grey default background. | |
2021 (modeline): Ditto. | |
2022 | |
2023 * image.el (image-type-regexps): New. | |
2024 (image-type-from-file-header): New. | |
2025 (create-image): Call it. | |
2026 | |
2027 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2028 | |
2029 * image.el: New file. | |
2030 | |
2031 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2032 | |
2033 * bindings.el (mode-line-format): Replace `mode-name' with | |
2034 `(:eval mode-line-mode-name)'. | |
2035 (mode-line-mode-name): New. | |
2036 (make-mode-line-mouse-sensitive): Don't change default value | |
2037 of `mode-name'. | |
2038 | |
2039 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2040 | |
2041 * tooltip.el: New file. | |
2042 | |
2043 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2044 | |
2045 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3 | |
2046 instead of mouse-3 to pop up menus. | |
2047 (mode-line-kill-buffer): Removed. | |
2048 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over | |
2049 buffer name. | |
2050 (mode-line-buffer-menu-1): Removed. | |
2051 | |
2052 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive. | |
2053 | |
2054 * bindings.el (mode-line-buffer-identification-keymap): New. | |
2055 (mode-line-buffer-menu-keymap): New. | |
2056 (mode-line-mode-menu-keymap): New. | |
2057 (mode-line-unbury-buffer): New. | |
2058 (mode-line-other-buffer): New. | |
2059 (mode-line-kill-buffer): New. | |
2060 (mode-line-buffer-menu-1): New. | |
2061 (mode-line-mode-menu-1): New. | |
2062 (make-mode-line-mouse-sensitive): New. | |
2063 | |
2064 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2065 | |
2066 * help.el (describe-key-briefly): Handle mode line strings | |
2067 with local-map properties. | |
2068 (describe-key): Ditto. | |
2069 (mode-line-key-binding): New. | |
2070 | |
2071 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2072 | |
2073 * scroll-bar.el (scroll-bar-timer): New. | |
2074 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer. | |
2075 | |
2076 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2077 | |
2078 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top' | |
2079 and `bottom'. | |
2080 | |
2081 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2082 | |
2083 * scroll-bar.el (scroll-bar-toolkit-scroll): New. | |
2084 (global): Use different key bindings if using tookit scroll bars. | |
2085 | |
2086 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2087 | |
2088 * faces.el (modeline): Define mode line face with relief for | |
2089 class color, only. | |
2090 (toolbar): New face. | |
2091 | |
2092 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2093 | |
2094 * frame.el (frame-initialize): Set frame-creation-function to | |
2095 tty-create-frame-with-faces. | |
2096 | |
2097 * faces.el (frame-set-background-mode): Make it work for | |
2098 window-system nil. | |
2099 | |
2100 * faces.el (tty-create-frame-with-faces): New. | |
2101 (face-set-after-frame-default): Make it work for TTY frames. | |
2102 | |
2103 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2104 | |
2105 * faces.el (face-valid-attribute-values): Use tty-defined-colors. | |
2106 Return a list of one font family for TTYs. Don't return bitmap | |
2107 file paths for TTY frames. | |
2108 | |
2109 * faces.el: Add face specs for tty displays to basic faces. | |
2110 | |
2111 * font-lock.el (font-lock-comment-face): Add spec for color tty. | |
2112 (font-lock-string-face): Ditto. | |
2113 (font-lock-keyword-face): Ditto. | |
2114 (font-lock-builtin-face): Ditto. | |
2115 (font-lock-function-name-face): Ditto. | |
2116 (font-lock-variable-name-face): Ditto. | |
2117 (font-lock-type-face): Ditto. | |
2118 (font-lock-constant-face): Ditto. | |
2119 (font-lock-warning-face): Ditto. | |
2120 | |
2121 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2122 | |
2123 * startup.el (command-line): Register default tty colors. | |
2124 | |
2125 * faces.el (face-spec-set-match-display): Recognize `type tty'. | |
2126 | |
2127 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2128 | |
2129 * faces.el (modeline): For X frames, use a modeline with relief. | |
2130 | |
2131 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2132 | |
2133 * faces.el (frame-update-faces): Copied from 20.2. | |
2134 (frame-update-face-colors): Ditto. Code removed that isn't | |
2135 applicable in the new face implementation. | |
2136 | |
2137 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2138 | |
2139 * frame.el (show-trailing-whitespace): New. | |
2140 | |
2141 * faces.el (trailing-whitespace): New basic face. | |
2142 | |
2143 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2144 | |
2145 * cus-face.el (custom-facep): Always define as alias for facep. | |
2146 | |
2147 * cus-face.el (custom-face-attributes): Use choice widgets. | |
2148 Remove :bold and :italic. | |
2149 | |
2150 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2151 | |
2152 * faces.el (face-charset-registries): Removed since fontset.el | |
2153 is no always loaded. | |
2154 | |
2155 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2156 | |
2157 * faces.el (internal-get-face): Added as obsolete function for | |
2158 compatibility. | |
2159 | |
2160 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2161 | |
2162 * frame.el (blink-cursor-end): Call show-cursor. | |
2163 (blink-cursor-mode): Ditto. | |
2164 | |
2165 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2166 | |
2167 * faces.el (face-spec-reset-face): Reset all attributes to | |
2168 `unspecified'. | |
2169 (face-spec-set): Use it. | |
2170 | |
2171 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2172 | |
2173 * faces.el (read-all-face-attributes): Bug fix. | |
2174 (face-read-integer): Allow nil default value. | |
2175 (face-valid-attribute-values): Use symbol names of attribute | |
2176 values for completion list. | |
2177 | |
2178 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2179 | |
2180 * faces.el (internal-find-face): Define for compatibility with | |
2181 20.2. | |
2182 (face-id): Likewise. | |
2183 | |
2184 * faces.el (face-id): Return the ID of a realized face for ASCII. | |
2185 | |
2186 * fontset.el (x-charset-registries): Removed. Now in faces.el. | |
2187 (x-complement-fontset-spec): Use face-charset-registries. | |
2188 | |
2189 * faces.el (face-font-selection-order): Set font selection order | |
2190 from Lisp. | |
2191 (face-alternative-font-family-alist): Set alternative font | |
2192 families from Lisp. | |
2193 | |
2194 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2195 | |
2196 * faces.el (set-face-charset-registries): Set symbol value. | |
2197 | |
2198 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2199 | |
2200 * faces.el (face-set-after-frame-default): Call function | |
2201 internal-merge-in-global-face. | |
2202 | |
2203 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2204 | |
2205 * faces.el (face-list): Return symbols from face-global-alist. | |
2206 | |
2207 * faces.el (face-list): Return a copy of the face name list so | |
2208 that it cannot be modified from outside (facemenu.el uses | |
2209 nreverse, for example). | |
2210 | |
2211 * cus-face.el (custom-face-attributes): Add :bold and :italic | |
2212 for compatibility with old code. | |
2213 | |
2214 * faces.el (set-face-attributes-from-resources): Additional | |
2215 frame parameter. | |
2216 (make-face-x-resource-internal): Set attributes from resources | |
2217 for a given frame or all frames. | |
2218 | |
2219 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2220 | |
2221 * faces.el (all-faces): Removed. | |
2222 | |
2223 * custom.el (defface): Add new face attributes to function | |
2224 comment. | |
2225 | |
2226 * font-lock.el (font-lock-comment-face): Use new face attribute | |
2227 names. | |
2228 (font-lock-string-face): Ditto. | |
2229 (font-lock-keyword-face): Ditto. | |
2230 (font-lock-builtin-face): Ditto. | |
2231 (font-lock-function-name-face): Ditto. | |
2232 (font-lock-variable-name-face): Ditto. | |
2233 (font-lock-type-face): Ditto. | |
2234 (font-lock-reference-face): Ditto. | |
2235 (font-lock-warning-face): Ditto. | |
2236 ((boundp 'font-lock-face-attributes)): Ditto. | |
2237 | |
2238 * cus-face.el (custom-face-attributes): Use new face attributes. | |
2239 | |
2240 * faces.el (set-face-attribute-from-resource): Initialize | |
2241 from resources only for X and W32. | |
2242 | |
2243 * cus-face.el (custom-declare-face): Don't make frame-local | |
2244 faces. | |
2245 | |
2246 * faces.el (describe-face): Use princ instead of insert. | |
2247 | |
2248 * faces.el: Add XLFD manipulation functions from 20.2 again | |
2249 because fontset.el uses them. | |
2250 (face-set-after-frame-default): Add empty definition. | |
2251 | |
2252 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2253 | |
2254 * faces.el (make-face): Correct typo. | |
2255 (set-face-attribute-from-resource): Use let*. | |
2256 (face-underline-p): Correct typo. | |
2257 (face-inverse-video-p): Ditto. | |
2258 (set-face-stipple): Ditto. | |
2259 (face-read-string): Make completion-list optional parameter. | |
2260 | |
2261 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2262 | |
2263 * faces.el (face-charset-registries): Alist mapping charset | |
2264 symbols to registries and encoding. | |
2265 | |
2266 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2267 | |
2268 * frame.el (blink-cursor-mode): Use interactive spec "P". | |
2269 | |
2270 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2271 | |
2272 * frame.el (blink-cursor-mode): Function to toggle blinking cursor | |
2273 mode. The cursor of selected_window blinks if the mode is enabled. | |
2274 | |
2275 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2276 | |
2277 * simple.el (next-history-element): Set point to the end of the | |
2278 prompt if minibuffer-prompt-in-buffer. | |
2279 | |
2280 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
2281 | |
2282 * faces.el (x-font-regexp): Add sub-expression parentheses for | |
2283 several font name components. | |
2284 | |
2285 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
2286 | |
2287 * faces.el (set-face-relief): Use index 12 for relief. | |
2288 (face-fill-in): Set relief from data. | |
2289 (internal-make-face): Init relief to zero. | |
2290 | |
2291 * faces.el (face-spec-set): call modify-face with additional | |
2292 parameters for relief and fixed-p. | |
2293 | |
2294 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
2295 | |
2296 * cus-face.el: ':fixed and ':relief added. | |
2297 | |
2298 * faces.el (describe-face): Add fixed font attribute and relief. | |
2299 (face-attr-match-p): Ditto. | |
2300 (face-attr-construct): Ditto. | |
2301 (face-spec-set): Ditto. | |
2302 | |
2303 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
2304 | |
2305 * faces.el (internal-make-face): Function to create a Lisp vector | |
2306 suitable for representing a face. | |
2307 (make-face): Use it instead of make-vector. | |
2308 (x-create-frame-with-faces): Use it instead of vector. | |
2309 (internal-facep): Increase vector size to 14. | |
2310 (internal-make-face): Ditto. | |
2311 (face-relief): Access relief thickness. | |
2312 (face-fixed-p): Access fixed font attribute. | |
2313 (set-face-fixed-p): Set fixed font attribute. | |
2314 (set-face-relief): Set relief attribute. | |
2315 (internal-face-interactive-int): Read int attribute of face. | |
2316 (modify-face): Add fixed-p and relief parameters. | |
2317 (copy-face): Handle fixed-p and relief. | |
2318 (face-equal): Compare fixed-p and relief. | |
2319 (face-differs-from-default-p): Ditto. | |
2320 (face-nontrivial-p): Add fixed-p and relief. | |
2321 | |
2322 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
2323 | |
2324 * faces.el (eval-when-compile): Add set-face-shadow-thickness. | |
2325 (internal-facep): Increase vector size. | |
2326 (make-face): Ditto. | |
2327 (face-shadow-thickness): Added. | |
2328 (set-face-shadow-thickness): Added. | |
2329 (modify-face): Add optional shadow-thickness parameter. | |
2330 (make-face-x-resource-internal): Add shadows. | |
2331 (copy-face): Ditto. | |
2332 (face-equal): Ditto. | |
2333 (face-differs-from-default-p): Ditto. | |
2334 (face-nontrivial-p): Ditto. | |
2335 (face-attr-match-p): Ditto. | |
2336 (face-attr-construct): Ditto. | |
2337 (face-spec-set): Ditto. | |
2338 (face-fill-in): Ditto. | |
2339 | |
2340 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
2341 | |
2342 * bench.el (bench-mark-split-window): New bench mark. | |
2343 | |
2344 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
2345 | |
2346 * faces.el (set-face-font): Don't pass default font to | |
2347 x-resolve-font so that font will not have to be of the same | |
2348 size. | |
2349 | |
2350 1999-07-20 Dave Love <fx@gnu.org> | |
2351 | |
2352 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it | |
2353 unconditionally t. | |
2354 | |
2355 1999-07-20 Karl Heuer <kwzh@gnu.org> | |
2356 | |
2357 * font-lock.el (c++-font-lock-extra-types): Add "type_info". | |
2358 | |
2359 1999-07-20 Dave Love <fx@gnu.org> | |
2360 | |
2361 * help.el (describe-variable): Fix test for customizability. | |
2362 | |
2363 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer): | |
2364 Check for readonly buffer in interactive spec. | |
2365 (zap-to-char, kill-line, kill-region, comment-region, kill-word) | |
2366 (backward-kill-word): Add * to interactive spec. | |
2367 | |
2368 * underline.el (underline-region, ununderline-region): Add * to | |
2369 interactive spec. | |
2370 | |
2371 * fill.el (canonically-space-region, justify-current-line): Add * | |
2372 to interactive spec. | |
2373 (fill-region-as-paragraph, fill-paragraph, fill-region) | |
2374 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check | |
2375 readonly buffer in interactive spec. | |
2376 | |
2377 * paragraphs.el: (kill-paragraph, backward-kill-paragraph) | |
2378 (backward-kill-sentence, kill-sentence): Add * to interactive | |
2379 spec. | |
2380 | |
2381 1999-07-19 Richard M. Stallman <rms@gnu.org> | |
2382 | |
2383 * dired-aux.el (dired-do-shell-command): Doc fix. | |
2384 | |
2385 * shell.el (shell-unquote-argument): New function. | |
2386 (shell-directory-tracker): Use shell-unquote-argument. | |
2387 * comint.el (comint-arguments): Handle \ followed by space or tab. | |
2388 | |
2389 1999-07-19 John Wiegley <jwiegley@borland.com> | |
2390 | |
2391 * term.el (ansi-term-fg-faces-vector): Added support for ANSI | |
2392 color codes 39 and 49, which by the way lynx uses them seem to | |
2393 mean "foreground reset" and "background reset". | |
2394 | |
2395 1999-07-19 Karl Heuer <kwzh@gnu.org> | |
2396 | |
2397 * font-lock.el (c++-keywords): Add "typeid". | |
2398 | |
2399 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but | |
2400 selects no font, treat that as zero selections, not one. | |
2401 | |
2402 1999-07-19 Dave Love <fx@gnu.org> | |
2403 | |
2404 * info.el (Info-search): Don't lose with empty regexp. | |
2405 | |
2406 * version.el: Cater for (free) `ident' program, not `which'. | |
2407 | |
2408 * hl-line.el: New file. | |
2409 | |
2410 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu | |
2411 for modes which don't define menus. | |
2412 | |
2413 1999-07-16 Richard M. Stallman <rms@gnu.org> | |
2414 | |
2415 * webjump.el (webjump-sample-sites): Update some URLs. | |
2416 | |
2417 1999-07-14 Richard Stallman <rms@gnu.org> | |
2418 | |
2419 * Version 20.4 released. | |
2420 | |
2421 1999-07-14 Andreas Schwab <schwab@gnu.org> | |
2422 | |
2423 * compare-w.el (compare-windows): Try to find the next window in | |
2424 the current frame before looking at the other frames. | |
2425 | |
2426 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru> | |
2427 | |
2428 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"): | |
2429 Use cyrillic-jcuken as default input method. | |
2430 | |
2431 1999-07-12 Richard Stallman <rms@gnu.org> | |
2432 | |
2433 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for | |
2434 Java anonymous array expressions ("new Foo[] {.. bracelist ..}"). | |
2435 | |
2436 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian. | |
2437 (ispell-local-dictionary-alist): Add koi8-r for character set. | |
2438 | |
2439 * textmodes/flyspell.el (flyspell-get-word): | |
2440 Add special handling for when ispell-otherchars is empty. | |
2441 | |
2442 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no> | |
2443 | |
2444 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior | |
2445 when having nested functons. | |
2446 (pascal-indent-nested-functions) (pascal-indent-line) | |
2447 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for | |
2448 indenting nested functions. | |
2449 | |
2450 1999-07-09 Richard Stallman <rms@gnu.org> | |
2451 | |
2452 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes. | |
2453 | |
2454 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no> | |
2455 | |
2456 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when | |
2457 the `end' keyword was in the very beginning of the buffer. | |
2458 | |
2459 1999-07-08 Richard Stallman <rms@gnu.org> | |
2460 | |
2461 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix. | |
2462 | |
2463 * term.el (term-emulate-terminal): Avoid infinite loop | |
2464 in strange case where minibuffer window is selected but not active. | |
2465 | |
2466 1999-07-07 Stephen Eglen <stephen@gnu.org> | |
2467 | |
2468 * progmodes/octave-inf.el (inferior-octave-directory-tracker): | |
2469 Change regexp so that it doesn't match commands beginning with `cd'. | |
2470 | |
2471 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
2472 | |
2473 * mail/rmail.el (mail-unsent-separator): Add a missing \\|. | |
2474 | |
2475 1999-07-06 Richard Stallman <rms@gnu.org> | |
2476 | |
2477 * hscroll.el (hscroll-minibuffer-hook): New function. | |
2478 (hscroll-global-mode): Add and remove that hook. | |
2479 Set hscroll-old-truncate-was-global's default value. | |
2480 | |
2481 1999-07-05 Richard Stallman <rms@gnu.org> | |
2482 | |
2483 * files.el (revert-buffer): Don't preserve point here. | |
2484 (revert-buffer-insert-file-contents-function): Doc fix. | |
2485 | |
2486 * isearch.el (isearch-process-search-char): Write octal 200 correctly. | |
2487 | |
2488 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid | |
2489 doing a `stat' when it isn't necessary because that can cause | |
2490 trouble when an NFS server is down. | |
2491 | |
2492 1999-07-04 Richard Stallman <rms@gnu.org> | |
2493 | |
2494 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer. | |
2495 | |
2496 1999-07-03 Richard Stallman <rms@gnu.org> | |
2497 | |
2498 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte | |
2499 for \200...\240 also. | |
2500 (isearch-printing-char): Use unibyte-char-to-multibyte. | |
2501 | |
2502 1999-07-02 Richard Stallman <rms@gnu.org> | |
2503 | |
2504 * frame.el (minibuffer-frame-alist): Use defcustom. | |
2505 (pop-up-frame-alist): Likewise. | |
2506 (initial-frame-alist): Specify * in the doc string. | |
2507 | |
2508 * hscroll.el (hscroll-mode): Make it a permanent local. | |
2509 (hscroll-mode): Don't cancel the timer | |
2510 if HScroll mode is enabled in some other buffer. | |
2511 | |
2512 * isearch.el (isearch-done): If search ends in middle of intangible | |
2513 text (due to text property), move on to the limit of that text. | |
2514 | |
2515 1999-07-01 Andrew Innes <andrewi@gnu.org> | |
2516 | |
2517 * man.el (Man-build-man-command): Use value of null-device, | |
2518 instead of hard-coding "/dev/null". | |
2519 | |
2520 * dos-w32.el (untranslated-canonical-name): Avoid expanding | |
2521 ange-ftp file names, which might force ange-ftp to prompt for a | |
2522 password. | |
2523 | |
2524 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t, | |
2525 to prevent references to temp files. | |
2526 | |
2527 1999-06-30 Richard Stallman <rms@gnu.org> | |
2528 | |
2529 * progmodes/sh-script.el (sh-feature): If nothing is known | |
2530 about the given shell, use the values for `sh'. | |
2531 | |
2532 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
2533 | |
2534 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status", | |
2535 to make it non-recursive. | |
2536 | |
2537 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly. | |
2538 | |
2539 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
2540 | |
2541 * auto-show.el (auto-show-mode): Fix Typo in :set. | |
2542 | |
2543 1999-06-29 Richard M. Stallman <rms@gnu.org> | |
2544 | |
2545 * progmodes/sh-script.el (sh-mode): When setting syntax | |
2546 table, default to the standard one. | |
2547 | |
2548 1999-06-27 Richard M. Stallman <rms@gnu.org> | |
2549 | |
2550 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix. | |
2551 | |
2552 1999-06-27 Stefan Monnier <monnier@tequila.cs.yale.edu> | |
2553 | |
2554 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): don't pop up | |
2555 a frame when `return' is requested (even if pop-up-frames = t) | |
2556 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function' | |
2557 should only be set for the bibtex buffer. | |
2558 | |
2559 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix. | |
2560 | |
2561 * progmodes/compile.el: Deal with compilation-error-screen-columns | |
2562 being buffer-local. | |
2563 | |
2564 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
2565 | |
2566 * comint.el (comint-password-prompt-regexp): Allow "(again)". | |
2567 | |
2568 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
2569 | |
2570 * cal-x.el (calendar-only-one-frame-setup): New function. | |
2571 * calendar.el (calendar): Call it if requested. | |
2572 | |
2573 1999-06-24 Karl Heuer <kwzh@gnu.org> | |
2574 | |
2575 * startup.el (iso-8859-n-locale-regexp): Doc fix. | |
2576 | |
2577 1999-06-22 Richard M. Stallman <rms@gnu.org> | |
2578 | |
2579 * mail/supercite.el (sc-emacs-features): Doc fix. | |
2580 | |
2581 1999-06-22 Karl Heuer <kwzh@gnu.org> | |
2582 | |
2583 * files.el (auto-mode-alist): Add pike-mode. | |
2584 | |
2585 1999-06-20 Paul R. Eggert <eggert@twinsun.com> | |
2586 | |
2587 * tar-mode.el (tar-header-block-tokenize): Don't assume that the | |
2588 last byte of a numeric field is a space or a NUL. Parse it as | |
2589 potentially part of the number. This is used by GNU tar | |
2590 1.12.64012 to handle larger values. | |
2591 | |
2592 1999-06-20 Karl Heuer <kwzh@gnu.org> | |
2593 | |
2594 * custom.el (custom-handle-keyword): Fix error message. | |
2595 | |
2596 1999-06-18 Andrew Innes <andrewi@gnu.org> | |
2597 | |
2598 * mail/smtpmail.el (smtpmail-send-it): Use | |
2599 convert-standard-filename to make file names for queued mail safe | |
2600 on Windows (`:' is invalid in file names on Windows). | |
2601 | |
2602 1999-06-17 Kenichi Handa <handa@etl.go.jp> | |
2603 | |
2604 * international/mule-cmds.el (describe-current-input-method): | |
2605 Current-input-method is string. | |
2606 (toggle-input-method): Docstring fixed. | |
2607 | |
2608 * international/mule-diag.el | |
2609 (describe-current-coding-system-briefly): Fix format string. | |
2610 | |
2611 * international/mule-util.el (coding-system-eol-type-mnemonic): | |
2612 Docstring modified. Return a string. | |
2613 | |
2614 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch> | |
2615 | |
2616 * sql.el (sql-input-ring-file-name): Doc fix. | |
2617 | |
2618 1999-06-17 Richard M. Stallman <rms@gnu.org> | |
2619 | |
2620 * calendar/cal-x.el (special-display-buffer-names): | |
2621 Don't put (get-file-buffer diary-file) on this list. | |
2622 | |
2623 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov> | |
2624 | |
2625 * play/mpuz.el (mpuz-try-proposal): Fix message call. | |
2626 Don't penalize player for certain impossible guesses. | |
2627 | |
2628 1999-06-16 Andrew Innes <andrewi@gnu.org> | |
2629 | |
2630 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid, | |
2631 return the string "Unk 0 0000" so at least it appears to be a | |
2632 valid timestamp to `dired-move-to-filename-regexp'. | |
2633 | |
2634 1999-06-15 Ken'ichi Handa <handa@gnu.org> | |
2635 | |
2636 * ps-print.el (ps-control-character): Fix previous change. | |
2637 | |
2638 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
2639 | |
2640 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid | |
2641 multiple output of the last message. | |
2642 | |
2643 1999-06-14 Eli Zaretskii <eliz@gnu.org> | |
2644 | |
2645 * term/internal.el (IT-display-table-setup): Do not remap \222 to | |
2646 the ASCII apostrophe, as most DOS codepages have some other glyph | |
2647 there. | |
2648 | |
2649 1999-06-14 Ken'ichi Handa <handa@gnu.org> | |
2650 | |
2651 * language/ethio-util.el (setup-ethiopic-environment-internal): | |
2652 Use quail-activate-hook instead of obsolete hook quail-mode-hook. | |
2653 (exit-ethiopic-environment): Likewize. | |
2654 | |
2655 1999-06-12 Richard M. Stallman <rms@gnu.org> | |
2656 | |
2657 * cus-start.el (scroll-preserve-screen-position): Fix typo in type. | |
2658 | |
2659 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
2660 | |
2661 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with | |
2662 custom-initialize-default to avoid infinite loop. | |
2663 (crisp-mode): (defun) Call transient-mark-mode here, not when | |
2664 loading the file. Run crisp-mode-hook here, and run | |
2665 crisp-load-hook when loading the file. | |
2666 | |
2667 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in | |
2668 rmail-summary buffer, search for pattern in rmail-file. | |
2669 | |
2670 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo. | |
2671 | |
2672 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type. | |
2673 | |
2674 * ps-print.el (ps-printer-name): Fix custom type. | |
2675 | |
2676 1999-06-12 Reto Zimmermann <reto@synopsys.com> | |
2677 | |
2678 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug. | |
2679 (vhdl-port-paste-generic-map): Fix indentation bug. | |
2680 (vhdl-port-paste-port-map): Fix indentation bug. | |
2681 (vhdl-scan-file-contents): Make scanning case insensitive. | |
2682 | |
2683 1999-06-11 Richard M. Stallman <rms@gnu.org> | |
2684 | |
2685 * files.el (write-file): When buffer is not already visiting a file, | |
2686 don't put buffer name in the minibuffer, just make it the default. | |
2687 Also handle just directory as arg usefully in that case. | |
2688 | |
2689 * simple.el (sendmail-user-agent-compose): | |
2690 Ignore case when inserting the rest of the "other" headers. | |
2691 | |
2692 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n. | |
2693 | |
2694 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix. | |
2695 (info-lookup-interactive-arguments): Never insert the default | |
2696 into the minibuffer automatically. | |
2697 | |
2698 * emacs-lisp/cl-extra.el (getf): Don't call get*. | |
2699 | |
2700 1999-06-09 Richard M. Stallman <rms@gnu.org> | |
2701 | |
2702 * simple.el (shell-command): Avoid printing "mark set" message. | |
2703 | |
2704 1999-06-09 Dave Love <fx@gnu.org> | |
2705 | |
2706 * progmodes/compile.el (compilation-error-regexp-alist): Allow | |
2707 digits in program name in first pattern. | |
2708 | |
2709 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
2710 | |
2711 * vc.el (vc-dired-mode): Don't match anything before the date in | |
2712 dired-move-to-filename-regexp. | |
2713 | |
2714 1999-06-07 Ken'ichi Handa <handa@gnu.org> | |
2715 | |
2716 * international/quail.el (quail-define-rules): Fix typo in | |
2717 docstring. | |
2718 | |
2719 1999-06-05 Stephen Eglen <stephen@gnu.org> | |
2720 | |
2721 * iswitchb.el (iswitchb-default-keybindings): Add | |
2722 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather | |
2723 than when package is loaded. | |
2724 | |
2725 1999-06-04 Richard M. Stallman <rms@gnu.org> | |
2726 | |
2727 * startup.el (command-line): Don't set user-init-file directly; | |
2728 tell `load' to set it. | |
2729 | |
2730 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg. | |
2731 | |
2732 * simple.el (next-history-element): | |
2733 Handle minibuffer-text-before-history properly when reading sexps. | |
2734 | |
2735 * disp-table.el (standard-display-european): | |
2736 For an interactive call by the user, | |
2737 don't set enable-multibyte-characters, | |
2738 and don't set the terminal coding system. | |
2739 | |
2740 * textmodes/refbib.el: Don't print any messages or display | |
2741 a buffer when loading the library. | |
2742 (r2b-help): Doc fix. | |
2743 (r2b-help-message): Update the documentation. | |
2744 (r2b-load-quietly): Variable deleted. | |
2745 (r2b-convert-buffer): Doc fix. | |
2746 | |
2747 1999-06-04 Dave Love <fx@gnu.org> | |
2748 | |
2749 * help.el (help-xref-interned): Fix insertion of fdoc and revamp. | |
2750 | |
2751 * auto-show.el: Don't change hooks on loading. | |
2752 (auto-show-mode): Autoload. Default to nil. Add :set &c. | |
2753 (auto-show-mode): Add to hooks here. | |
2754 | |
2755 1999-06-04 Richard Sharman <rsharman@pobox.com> | |
2756 | |
2757 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite | |
2758 recursion on bogus input. | |
2759 | |
2760 1999-06-04 Eric M. Ludlam <zappo@ultranet.com> | |
2761 | |
2762 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user | |
2763 does not select a buffer from the buffers menu, then the attached | |
2764 frame is not switched to anything. | |
2765 | |
2766 1999-06-03 Ken'ichi Handa <handa@gnu.org> | |
2767 | |
2768 * language/vietnamese.el (ccl-encode-vscii): Typo fixed | |
2769 (viet-viscii-...->viet-vscii...). | |
2770 | |
2771 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed. | |
2772 | |
2773 1999-06-01 Dave Love <fx@gnu.org> | |
2774 | |
2775 * progmodes/fortran.el: Add :link to defgroup. | |
2776 (fortran-blink-matching-if): Match ELSE statements too. | |
2777 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so | |
2778 that filling is always done. | |
2779 | |
2780 1999-05-31 Richard M. Stallman <rms@gnu.org> | |
2781 | |
2782 * simple.el (append-next-kill): Use an arg to distinguish | |
2783 interactive calls from Lisp calls, rather than (interactive-p). | |
2784 | |
2785 * international/iso-transl.el (iso-transl-language-alist): | |
2786 Interchange n and N. | |
2787 | |
2788 1999-05-31 Dave Love <fx@gnu.org> | |
2789 | |
2790 * msb.el Add to minor-mode-map-alist. Remove hook installation | |
2791 and keymap munging on load. | |
2792 (msb-mode): New option. | |
2793 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory): | |
2794 Doc fix. | |
2795 (msb-mode-map): New variable. | |
2796 (msb-mode): New command. | |
2797 | |
2798 1999-05-31 Dave Love <fx@gnu.org> | |
2799 | |
2800 * ispell.el: (ispell-alternate-dictionary): Fix custom type. | |
2801 (ispell-complete-word-dict): Likewise. | |
2802 | |
2803 1999-05-31 Eli Zaretskii <eliz@gnu.org> | |
2804 | |
2805 * forms.el (forms-save-buffer): Call set-buffer-modified-p to | |
2806 force the data buffer to be saved, even if the data didn't | |
2807 change, in case the write filter was modified. Restore the | |
2808 current record after read-file-filter finishes. | |
2809 | |
2810 1999-05-29 Karl Heuer <kwzh@gnu.org> | |
2811 | |
2812 * ispell4.el: Obsolete; file deleted. | |
2813 | |
2814 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line. | |
2815 | |
2816 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if | |
2817 VALUE is a syntax table. | |
2818 | |
2819 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie. | |
2820 | |
2821 * simple.el (zap-to-char): Doc fix. | |
2822 | |
2823 1999-05-27 Ken'ichi Handa <handa@gnu.org> | |
2824 | |
2825 * isearch.el (isearch-quote-char): Don't assume character codes | |
2826 0200 - 0237 stand for characters in some single-byte character | |
2827 charset. | |
2828 | |
2829 1999-05-27 Dave Love <fx@gnu.org> | |
2830 | |
2831 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c. | |
2832 | |
2833 1999-05-27 Andreas Schwab <schwab@gnu.org> | |
2834 | |
2835 * dired-aux.el (dired-insert-subdir-doinsert): Check that the | |
2836 headerline does not exist already. | |
2837 | |
2838 1999-05-26 Richard Stallman <rms@gnu.org> | |
2839 | |
2840 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): | |
2841 Avoid nested null-loops. | |
2842 | |
2843 1999-05-26 Ken'ichi Handa <handa@gnu.org> | |
2844 | |
2845 * international/characters.el: Typo fixed; prefered->preferred. | |
2846 | |
2847 * international/mule-cmds.el (find-coding-systems-for-charsets): | |
2848 Typo fixed; prefered->preferred. | |
2849 | |
2850 * map-ynp.el (map-y-or-n-p): Don't inherit the current input | |
2851 method in read-event. | |
2852 | |
2853 * international/mule.el (charset-info): Doc-string fixed. | |
2854 | |
2855 1999-05-25 Ken'ichi Handa <handa@gnu.org> | |
2856 | |
2857 * mail/smtpmail.el (smtpmail-send-it): Bind | |
2858 smtpmail-code-conv-from properly. | |
2859 (smtpmail-send-data-1): If DATA is a multibyte string, encode it | |
2860 by smtpmail-code-conv-from. | |
2861 | |
2862 1999-05-24 Richard Stallman <rms@gnu.org> | |
2863 | |
2864 * emulation/crisp.el (crisp-submit-bug-report): Function deleted. | |
2865 Binding deleted also. | |
2866 | |
2867 1999-05-24 Karl Heuer <kwzh@gnu.org> | |
2868 | |
2869 * comint.el (comint-bol-or-process-mark): Doc fix. | |
2870 | |
2871 1999-05-23 Dave Love <fx@gnu.org> | |
2872 | |
2873 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map. | |
2874 Enter it on minor-mode-map-alist. | |
2875 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed. | |
2876 Autoload. Add custom setter. | |
2877 (crisp-mark-line): Doc fix. | |
2878 (crisp-mode): Autoload. Re-write not to frob keymaps directly. | |
2879 (crisp-mode-hook): Define. | |
2880 | |
2881 1999-05-23 Ken'ichi Handa <handa@gnu.org> | |
2882 | |
2883 * files.el (recover-file): Recover buffer-file-coding-system. | |
2884 | |
2885 1999-05-22 Richard Stallman <rms@gnu.org> | |
2886 | |
2887 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp | |
2888 regexp match the date, to avoid treating date as file size. | |
2889 Add YYYY S option to WESTERN/ | |
2890 | |
2891 * bookmark.el: Delete some XEmacs compatibility code. | |
2892 (bookmark-jump-noselect): Check vc-backend. | |
2893 | |
2894 * subr.el (add-to-list): Doc fix. | |
2895 | |
2896 1999-05-21 Stephen Eglen <stephen@gnu.org> | |
2897 | |
2898 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer. | |
2899 | |
2900 1999-05-18 Richard Stallman <rms@gnu.org> | |
2901 | |
2902 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a | |
2903 non-space after the @anchor command. | |
2904 (texinfo-format-var): Handle other nested constructs, using | |
2905 texinfo-parse-expanded-arg and texinfo-discard-command, not | |
2906 texinfo-parse-arg-discard. | |
2907 | |
2908 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable. | |
2909 (debug): Bind and use debugger-outer-inhibit-redisplay. | |
2910 Bind inhibit-redisplay to nil. | |
2911 (debugger-env-macro): Treat inhibit-redisplay like other outside vars. | |
2912 | |
2913 1999-05-17 Dave Love <fx@gnu.org> | |
2914 | |
2915 * help.el (describe-function-1): Extra arg, interactive-p. | |
2916 (describe-key, describe-function): Use it. | |
2917 | |
2918 1999-05-17 Karl Heuer <kwzh@gnu.org> | |
2919 | |
2920 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie. | |
2921 | |
2922 1999-05-16 Dave Love <fx@gnu.org> | |
2923 | |
2924 * cus-start.el (all): Delete selective-display. Add scroll-margin, | |
2925 scroll-preserve-screen-position, scroll-conservatively. | |
2926 | |
2927 1999-05-16 Dave Love <fx@gnu.org> | |
2928 | |
2929 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case. | |
2930 | |
2931 1999-05-15 Reto Zimmermann <reto@Synopsys.COM> | |
2932 | |
2933 * progmodes/vhdl-mode.el: Completely revised and massively extended. | |
2934 | |
2935 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
2936 | |
2937 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no | |
2938 magic number and is not associated with a file. | |
2939 | |
2940 1999-05-14 Richard M. Stallman <rms@gnu.org> | |
2941 | |
2942 * files.el (find-file-noselect-1): Fix previous change. | |
2943 | |
2944 1999-05-14 Simon Marshall <simon@gnu.org> | |
2945 | |
2946 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'. | |
2947 | |
2948 1999-05-13 Ken'ichi Handa <handa@gnu.org> | |
2949 | |
2950 * international/mule-diag.el (mule-diag): Change MULE to Mule in | |
2951 docstring. | |
2952 | |
2953 * international/mule-cmds.el: Change MULE to Mule in docstrings | |
2954 and menus. | |
2955 | |
2956 1999-05-10 Kenichi HANDA <handa@etl.go.jp> | |
2957 | |
2958 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule | |
2959 to correctly reflect the value of BaseLineOffset in | |
2960 RelativeCompose. Now the value of RelativeCompose is an array of | |
2961 low and high positions. | |
2962 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and | |
2963 RLC for the above change. | |
2964 | |
2965 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org> | |
2966 | |
2967 * comint.el (comint-password-prompt-regexp): Modified to match the | |
2968 output of ksu and ssh-add. | |
2969 | |
2970 1999-05-11 Kenichi HANDA <handa@etl.go.jp> | |
2971 | |
2972 * language/korea-util.el (isearch-toggle-korean-input-method): | |
2973 Adjusted for the change of input method handling in isearch.el. | |
2974 (isearch-hangul-switch-symbol-ksc): Likewise. | |
2975 (isearch-hangul-switch-hanja): Likewise. | |
2976 | |
2977 1999-05-10 Dave Love <fx@gnu.org> | |
2978 | |
2979 * help.el (help-make-xrefs): Fix typo. | |
2980 | |
2981 1999-05-10 Andreas Schwab <schwab@gnu.org> | |
2982 | |
2983 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add | |
2984 unibyte-display-via-language-environment. | |
2985 | |
2986 * help.el (help-make-xrefs): Handle more cases when looking for | |
2987 commands in a keymap description. | |
2988 | |
2989 1999-05-10 Eli Zaretskii <eliz@gnu.org> | |
2990 | |
2991 * loadup.el: For ms-dos systems, load ccl and codepage. | |
2992 | |
2993 1999-05-09 Ken'ichi Handa <handa@gnu.org> | |
2994 | |
2995 * ps-print.el (ps-control-character): Call | |
2996 ps-mule-prepare-ascii-font to setup ASCII fonts. | |
2997 | |
2998 * ps-mule.el (ps-mule-begin-job): Redo this change "if | |
2999 ps-multibyte-buffer is nil, use | |
3000 ps-mule-font-info-database-default." | |
3001 | |
3002 1999-05-08 Ken Stevens <k.stevens@ieee.org> | |
3003 | |
3004 * ispell.el (ispell-local-dictionary-alist): New variable for | |
3005 customizing local dictionaries not accessable by everyone. | |
3006 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'. | |
3007 (ispell-required-version): Changed format `(major minor | |
3008 revision)' to support general pattern matching. | |
3009 (ispell-tex-skip-alists): AMS Tex block comment and `\author' | |
3010 skip region commented out due to incorrect skip potential in std latex. | |
3011 (ispell-word): Removed `when' macro. Fixed bug of not restoring | |
3012 cursor point on small words for calls from `ispell-minor-mode'. | |
3013 (check-ispell-version): Tests and accepts versions major.minor | |
3014 and above, with adjustments for interactions in 3.1.0-3.1.11. | |
3015 (ispell-get-line): No longer skips ispell process special characters. | |
3016 (ispell-comments-and-strings): Removed `when' macro call. | |
3017 (ispell-minor-check): Requires ispell-word to restore cursor point. | |
3018 (ispell-buffer-local-parsing): Supports checking comments only. | |
3019 | |
3020 1999-05-08 Karl Heuer <kwzh@gnu.org> | |
3021 | |
3022 * comint.el (comint-password-prompt-regexp): Fix last change to be | |
3023 more specific. | |
3024 | |
3025 1999-05-07 Richard M. Stallman <rms@gnu.org> | |
3026 | |
3027 * subr.el (with-temp-message): Fix the other call to message | |
3028 to use %s. | |
3029 | |
3030 1999-05-07 Michael Ernst <mernst@alum.mit.edu> | |
3031 | |
3032 * gud.el (gud-format-command): "%F" means file sans extension. | |
3033 (jdb): use %F, not %f, for gud-break. | |
3034 | |
3035 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org> | |
3036 | |
3037 * comint.el (comint-password-prompt-regexp): Modified so that it | |
3038 matches the output of kinit. | |
3039 | |
3040 1999-05-06 Greg Stark <gsstark@mit.edu> | |
3041 | |
3042 * timezone.el (timezone-parse-date): Recognize new format used in | |
3043 internet cookies. | |
3044 | |
3045 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu> | |
3046 | |
3047 * international/iso-acc.el (iso-languages): Add latin-2 cedillas. | |
3048 | |
3049 1999-05-04 Andrew Innes <andrewi@gnu.org> | |
3050 | |
3051 * time.el (display-time-update): Allow for wrap-around when | |
3052 checking against display-time-server-down-time. | |
3053 | |
3054 1999-05-04 Ken'ichi Handa <handa@gnu.org> | |
3055 | |
3056 * international/mule-diag.el (describe-coding-system): Fix English | |
3057 message. | |
3058 | |
3059 1999-05-03 Jason Rumney <jasonr@altavista.net> | |
3060 | |
3061 * term/w32-win.el: Change the x-charset-registry property for the | |
3062 Japanese charsets that are supported by Japanese Windows fonts. | |
3063 | |
3064 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
3065 | |
3066 * diary-lib.el (diary-remind): Rewritten to behave sensibly for | |
3067 diary-block diary entries for which the reminders and the diary | |
3068 entries can overlap. | |
3069 | |
3070 1999-05-02 Jason Rumney <jasonr@altavista.net> | |
3071 | |
3072 * term/w32-win.el (mouse-set-font): Ensure constructed fontset | |
3073 matches the font selected in the dialog. | |
3074 | |
3075 1999-05-02 Dave Love <fx@gnu.org> | |
3076 | |
3077 * browse-url.el (browse-url-browser-function): Add :version. | |
3078 | |
3079 * international/mule.el (auto-coding-alist): Add .tgz. | |
3080 | |
3081 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il> | |
3082 | |
3083 * international/codepage.el (cp-coding-system-for-codepage-1): | |
3084 Make the magnification parameter for the -dos encoder be 2. | |
3085 | |
3086 1999-05-2 Andrew Innes <andrewi@gnu.org> | |
3087 | |
3088 * term/w32-win.el (w32-drag-n-drop): Select file in window where | |
3089 it is dropped, rather than current window. | |
3090 | |
3091 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables | |
3092 after switching buffer, as case-fold-search is a buffer local | |
3093 variable. | |
3094 | |
3095 * w32-fns.el (convert-standard-filename): Only convert directory | |
3096 separators to backslash if the interactive shell is one of the | |
3097 standard Windows shells that has DOS semantics. | |
3098 | |
3099 * ls-lisp.el (ls-lisp-format-time): Trap errors from | |
3100 format-time-string, and return a suitable string to indicate the | |
3101 timestamp was invalid. | |
3102 | |
3103 * hexl.el (hexlify-command): Apply shell-quote-argument after | |
3104 expanding hexl-program in case exec-directory contains a space. | |
3105 (dehexlify-command): Ditto. | |
3106 | |
3107 * dos-w32.el (file-name-buffer-file-type-alist): Remove various | |
3108 file extension regexps which aren't necessarily binary files. | |
3109 (direct-print-region-helper): Use subst-char-in-string instead of | |
3110 binding directory-sep-char to convert filenames to DOS syntax. | |
3111 (direct-print-region-use-command-dot-com): New variable. | |
3112 (direct-print-region-helper): Use it to control whether to invoked | |
3113 command.com to print on Windows 9x. | |
3114 | |
3115 * browse-url.el (browse-url-browser-function): Default to | |
3116 browse-url-default-windows-browser on windows-nt. | |
3117 (browse-url-default-windows-browser): New function. | |
3118 | |
3119 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il> | |
3120 | |
3121 * forms.el (forms-mode): Don't call forms-first-record or | |
3122 forms-last-record if the data file has zero records. | |
3123 | |
3124 1999-04-29 Richard M. Stallman <rms@gnu.org> | |
3125 | |
3126 * files.el (find-file-noselect-1): If buffer-file-name has changed | |
3127 after find-file-not-found-hooks runs, recompute the truename. | |
3128 And don't use FILENAME after that point. | |
3129 | |
3130 1999-04-27 Dave Love <fx@gnu.org> | |
3131 | |
3132 * paren.el (show-paren-mode) | |
3133 * which-func.el (which-func-mode-global) | |
3134 * type-break.el (type-break-mode) | |
3135 * time.el (display-time-mode) | |
3136 * rsz-mini.el (resize-minibuffer-mode) | |
3137 * mouse-sel.el (mouse-sel-mode) | |
3138 * icomplete.el (icomplete-mode) | |
3139 * hscroll.el (hscroll-global-mode) | |
3140 * help.el (temp-buffer-resize-mode) | |
3141 * font-lock.el (global-font-lock-mode) | |
3142 * delsel.el (delete-selection-mode) | |
3143 * avoid.el (mouse-avoidance-mode) | |
3144 * autoinsert.el (auto-insert-mode) | |
3145 * winner.el (winner-mode): Doc fix. | |
3146 | |
3147 1999-04-26 Karl Heuer <kwzh@gnu.org> | |
3148 | |
3149 * mail/rmail.el (rmail-next-same-subject): When searching, ignore | |
3150 the same whitespace that was ignored in choosing the subject string. | |
3151 | |
3152 1999-04-26 Richard M. Stallman <rms@gnu.org> | |
3153 | |
3154 * info.el (Info-find-node): Position properly after finding anchor. | |
3155 | |
3156 * cus-start.el (all): Handle unibyte-display-via-language-environment. | |
3157 | |
3158 * simple.el (indent-new-comment-line): Fix previous change. | |
3159 | |
3160 * complete.el: Delete the wildcard expansion feature | |
3161 since that is now standard in find-file. | |
3162 (PC-try-load-many-files): Function deleted. | |
3163 (PC-after-load-many-files): Function deleted. | |
3164 (PC-many-files-list): Variable deleted. | |
3165 (PC-disable-wildcards): Variable deleted. | |
3166 (partial-completion-mode): Don't enable the wildcard feature. | |
3167 | |
3168 * complete.el (PC-look-for-include-file): Don't set global variables | |
3169 `error', `buf' and `filename' here. | |
3170 | |
3171 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker. | |
3172 | |
3173 1999-04-26 John Wiegley <johnw@oneworld.new-era.com> | |
3174 | |
3175 * textmodes/outline.el (outline-regexp): Doc fix. | |
3176 | |
3177 1999-04-26 John Wiegley <johnw@borland.com> | |
3178 | |
3179 * progmodes/compile.el (compilation-error-regexp-alist): Recognize | |
3180 C++Builder 4.0 error message syntax. | |
3181 | |
3182 1999-04-26 Mark Diekhans <markd@Grizzly.COM> | |
3183 | |
3184 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't | |
3185 supported, use find -exec. | |
3186 | |
3187 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp> | |
3188 | |
3189 * textmodes/texinfmt.el (texinfo-format-buffer): Bind | |
3190 coding-system-for-write, to avoid hanging when non-interactive. | |
3191 | |
3192 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
3193 | |
3194 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to | |
3195 start with a newline. | |
3196 | |
3197 1999-04-13 Ken'ichi Handa <handa@gnu.org> | |
3198 | |
3199 * international/mule-conf.el (x-ctext): New coding system. | |
3200 | |
3201 1999-04-12 Richard M. Stallman <rms@gnu.org> | |
3202 | |
3203 * international/mule-cmds.el (input-method-function): | |
3204 Add permanent-local property. | |
3205 | |
3206 1999-04-12 Dave Love <fx@gnu.org> | |
3207 | |
3208 * jka-compr.el (jka-compr-insert-file-contents): Fix previous | |
3209 change to use jka-compr-byte-compiler-base-file-name. | |
3210 | |
3211 * supercite.el (sc-scan-info-alist): Revert last change. | |
3212 (sc-attrib-selection-list): Fix :type here instead. | |
3213 | |
3214 1999-04-11 Eli Zaretskii <eliz@gnu.org> | |
3215 | |
3216 * international/mule.el (auto-coding-alist-lookup): Include ms-dos | |
3217 in the list of case-insensitive filesystems. | |
3218 | |
3219 1999-04-09 Kenichi Handa <handa@etl.go.jp> | |
3220 | |
3221 * international/fontset.el (create-fontset-from-fontset-spec): | |
3222 Don't register duplicated alias fontset names. | |
3223 | |
3224 1999-04-08 Richard Stallman <rms@gnu.org> | |
3225 | |
3226 * international/mule.el (auto-coding-alist-lookup): New function. | |
3227 (set-auto-coding): Use auto-coding-alist-lookup. | |
3228 | |
3229 * jka-compr.el (jka-compr-insert-file-contents): | |
3230 Use auto-coding-alist-lookup to check for files that | |
3231 should not have eol conversion, in the unibyte case. | |
3232 | |
3233 1999-04-07 Dave Love <fx@gnu.org> | |
3234 | |
3235 * help.el (describe-variable): Check custom-loads property as well | |
3236 as custom-type. | |
3237 | |
3238 * abbrev.el (abbrev-mode): Customizing sets the default value. | |
3239 | |
3240 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
3241 | |
3242 * vc.el (vc-backend-revert): For CVS files that were made | |
3243 writeable with "cvs edit", call "cvs unedit" to undo that. | |
3244 | |
3245 1999-04-08 Dave Love <fx@gnu.org> | |
3246 | |
3247 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type | |
3248 more. | |
3249 (sc-emacs-features): Recognize Emacs 20. | |
3250 (sc-read-string): Use history arg. | |
3251 (sc-scan-info-alist): Check for rtnvalue a cons. | |
3252 | |
3253 1999-04-08 Kenichi HANDA <handa@etl.go.jp> | |
3254 | |
3255 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a | |
3256 coding system to encode the message by | |
3257 select-message-coding-system. | |
3258 | |
3259 1999-04-07 Richard Stallman <rms@gnu.org> | |
3260 | |
3261 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition. | |
3262 | |
3263 * winner.el: Reorder definitions. | |
3264 | |
3265 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs. | |
3266 | |
3267 * mail/rmail.el (rmail-decode-babyl-format): | |
3268 Undo previous change. | |
3269 | |
3270 1999-04-06 Richard Stallman <rms@gnu.org> | |
3271 | |
3272 * info.el (Info-find-node): Check for an anchor at the | |
3273 proper place, before reading an indirect file. | |
3274 | |
3275 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL. | |
3276 | |
3277 * jka-compr.el (jka-compr-insert-file-contents): | |
3278 Use raw-text-unix when we want no conversion. | |
3279 | |
3280 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr> | |
3281 | |
3282 * timezone.el (timezone-parse-date): Corrected regexp for | |
3283 style (5) date format so that tenths of seconds are optional. | |
3284 | |
3285 1999-04-05 Eli Zaretskii <eliz@gnu.org> | |
3286 | |
3287 * term/internal.el (dos-cpNNN-setup): New function, with the guts | |
3288 of dos-codepage-setup. | |
3289 (cjk-codepages-alist): New variable, an alist of Far-Eastern | |
3290 codepages for which there's no need to set up cpNNN coding | |
3291 systems. | |
3292 (dos-codepage-setup): Support Far-Eastern DOS terminals. | |
3293 | |
3294 1999-04-05 Richard Stallman <rms@gnu.org> | |
3295 | |
3296 * mail/rmail.el (rmail-ignored-headers): Doc fix. | |
3297 | |
3298 1999-04-02 Richard Stallman <rms@gnu.org> | |
3299 | |
3300 * progmodes/compile.el (compilation-handle-exit): Do right thing | |
3301 if (car status) doesn't end in a newline. | |
3302 | |
3303 1999-04-01 Dave Love <fx@gnu.org> | |
3304 | |
3305 * progmodes/sql.el (SQL): Add defgroup :version. | |
3306 | |
3307 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu> | |
3308 | |
3309 * emacs-lisp/bytecomp.el (byte-compile-file): Clear | |
3310 buffer-file-coding-system. If the coding system used is raw-text, | |
3311 etc., make the *Compiler Input* buffer unibyte. | |
3312 | |
3313 * international/mule.el (find-new-buffer-file-coding-system): Doc fix. | |
3314 | |
3315 * loadup.el: Don't write the fns-...el file if not dumping. | |
3316 | |
3317 1999-03-31 Dave Love <fx@gnu.org> | |
3318 | |
3319 * snmp-mode.el (snmp): Fix defgroup :version. | |
3320 | |
3321 * hilit-chg.el (highlight-changes): Add defgroup :version. | |
3322 | |
3323 1999-03-31 Andreas Schwab <schwab@gnu.org> | |
3324 | |
3325 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after | |
3326 the gnus-save-hidden-threads macro. | |
3327 | |
3328 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk> | |
3329 | |
3330 * faces.el (face-set-after-frame-default): Obey the | |
3331 `customized-face' for new faces. | |
3332 | |
3333 1999-03-30 Dave Love <fx@gnu.org> | |
3334 | |
3335 * international/mule-cmds.el (current-language-environment): Doc fix. | |
3336 * abbrev.el (abbrev-mode): Doc fix. | |
3337 * autoinsert.el (auto-insert-mode): Doc fix. | |
3338 * complete.el (partial-completion-mode): Doc fix. | |
3339 * avoid.el (mouse-avoidance-mode): Doc fix. | |
3340 * delsel.el (delete-selection-mode): Doc fix. | |
3341 * font-lock.el (global-font-lock-mode): Doc fix. | |
3342 * help.el (temp-buffer-resize-mode): Doc fix. | |
3343 * hscroll.el (hscroll-global-mode): Doc fix. | |
3344 * icomplete.el (icomplete-mode): Doc fix. | |
3345 * mouse-sel.el (mouse-sel-mode): Doc fix. | |
3346 * paren.el (show-paren-mode): Doc fix. | |
3347 * rsz-mini.el (resize-minibuffer-mode): Doc fix. | |
3348 * time.el (display-time-mode): Doc fix. | |
3349 * type-break.el (type-break-mode): Doc fix. | |
3350 * which-func.el (which-func-mode-global): Doc fix. | |
3351 * winner.el (winner-mode): Doc fix. | |
3352 | |
3353 1999-03-30 Michael Ernst <mernst@alum.mit.edu> | |
3354 | |
3355 * wid-edit.el (widget-before-change): Signal text-read-only rather | |
3356 than an ordinary error. | |
3357 | |
3358 1999-03-30 Richard M. Stallman <rms@gnu.org> | |
3359 | |
3360 * repeat.el: Don't require advice. | |
3361 (repeat): Do function-indirection in check for kbd macro. | |
3362 In self-insert case, use the *last* char in INSERTION. | |
3363 | |
3364 1999-03-30 Karl Heuer <kwzh@gnu.org> | |
3365 | |
3366 * progmodes/cc-cmds.el (c-indent-command): Doc fix. | |
3367 | |
3368 1999-03-29 Andreas Schwab <schwab@gnu.org> | |
3369 | |
3370 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for | |
3371 comint-input-filter-functions. Make variables related to shell | |
3372 directory tracking local. | |
3373 | |
3374 1999-03-26 Andreas Schwab <schwab@gnu.org> | |
3375 | |
3376 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable. | |
3377 | |
3378 * simple.el (shell-command-on-region): Cope with exit-status being | |
3379 nil, which happens if call-process-region was interrupted. | |
3380 | |
3381 1999-03-26 Richard M. Stallman <rms@gnu.org> | |
3382 | |
3383 * simple.el (indent-new-comment-line): Handle use at a point | |
3384 after a comment-end. Handle multiple comments. | |
3385 | |
3386 * mail/rmail.el (rmail-decode-babyl-format): | |
3387 To prevent locking, bind buffer-file-name to nil. | |
3388 | |
3389 1999-03-26 Karl Fogel <kfogel@red-bean.com> | |
3390 | |
3391 * mail-hist.el (mail-hist-current-header-name): Don't make | |
3392 off-by-one-error when determining if in message body. | |
3393 | |
3394 1999-03-25 Andrew Innes <andrewi@gnu.org> | |
3395 | |
3396 * w32-fns.el (set-default-process-coding-system): Copied from | |
3397 dos-w32.el, but modified to use Unix line endings for process | |
3398 input, and to add a suitable entry to process-coding-system-alist | |
3399 for DOS shells. | |
3400 | |
3401 * dos-fns.el (set-default-process-coding-system): Copied from | |
3402 dos-w32.el. | |
3403 | |
3404 * dos-w32.el (set-default-process-coding-system): Move function to | |
3405 dos-fns.el; a different version is used in w32-fns.el. | |
3406 | |
3407 1999-03-24 Dave Love <fx@gnu.org> | |
3408 | |
3409 * info.el (Info-directory-list): Revert change to re-writing | |
3410 Info-default-directory-list, but put `alternative' first. | |
3411 (Info-insert-dir): Modify selecting the top dir file as a consequence. | |
3412 | |
3413 1999-03-23 Simon Marshall <simon@gnu.org> | |
3414 | |
3415 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is | |
3416 on the line by itself. | |
3417 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if | |
3418 it is not in a declarative context. | |
3419 | |
3420 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk> | |
3421 | |
3422 * cus-edit.el (custom-variable-prompt): Allow customization of | |
3423 autoloaded symbols. | |
3424 | |
3425 1999-03-22 Kenichi HANDA <handa@etl.go.jp> | |
3426 | |
3427 * simple.el (what-cursor-position): Don't cause error when point | |
3428 is at invalid multibyte sequence. | |
3429 | |
3430 1999-03-21 Karl Heuer <kwzh@gnu.org> | |
3431 | |
3432 * complete.el (partial-completion-mode): Doc fix. | |
3433 | |
3434 1999-03-19 Richard M. Stallman <rms@gnu.org> | |
3435 | |
3436 * progmodes/cplus-md.el (old-c++): Remove :group. | |
3437 | |
3438 * progmodes/c-mode.el (old-c): Remove :group. | |
3439 | |
3440 1999-03-18 Simon Marshall <simon@gnu.org> | |
3441 | |
3442 * font-lock.el (c-font-lock-keywords-2): Added "complex" type. | |
3443 (java-font-lock-keywords-2): Added "strictfp" keyword. | |
3444 | |
3445 1999-03-17 Jason Rumney <jasonr@altavista.net> | |
3446 | |
3447 * w32-fns.el (set-w32-system-coding-system) New function. | |
3448 (w32-system-coding-system) Initialize to 'iso-latin-1. | |
3449 | |
3450 1999-03-17 Eli Zaretskii <eliz@gnu.org> | |
3451 | |
3452 * international/mule-cmds.el (set-language-environment): Fix | |
3453 previous change: don't use dos-codepage when unbound. | |
3454 | |
3455 1999-03-17 Karl Heuer <kwzh@gnu.org> | |
3456 | |
3457 * calendar/appt.el (appt-make-list): Fix previous change. | |
3458 | |
3459 1999-03-16 Richard M. Stallman <rms@gnu.org> | |
3460 | |
3461 * window.el (shrink-window-if-larger-than-buffer): | |
3462 Don't try to redisplay with the cursor at the end | |
3463 on its own line--that would force a scroll and spoil things. | |
3464 | |
3465 1999-03-16 Eli Zaretskii <eliz@gnu.org> | |
3466 | |
3467 * international/mule-cmds.el (set-language-environment): Don't use | |
3468 cpNNN-nonascii-translation-table if it is unbound. | |
3469 | |
3470 * term/internal.el (dos-codepage-setup): Compute the unibyte | |
3471 syntax table and bind unibyte-display-via-language-environment | |
3472 here, rather than at top level, so that resetting to unibyte in | |
3473 .emacs works as expected. | |
3474 | |
3475 1999-03-15 Simon Marshall <simon@gnu.org> | |
3476 | |
3477 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword. | |
3478 | |
3479 1999-03-14 Milan Zamazal <pdm@pvt.net> | |
3480 | |
3481 * abbrev.el (inverse-add-abbrev): Inherit the current input method. | |
3482 | |
3483 1999-03-14 Kenichi Handa <handa@etl.go.jp> | |
3484 | |
3485 * international/mule-util.el (detect-coding-with-priority): | |
3486 Restore the internal database. | |
3487 | |
3488 1999-03-14 Stephen Eglen <stephen@gnu.org> | |
3489 | |
3490 * mail/sendmail.el (sendmail-send-it): Fix typo in error string | |
3491 if mail-from-style has invalid value. | |
3492 | |
3493 1999-03-12 Karl Heuer <kwzh@gnu.org> | |
3494 | |
3495 * vc.el (vc-delete-logbuf-window): New var. | |
3496 (vc-finish-logentry): Use it. | |
3497 | |
3498 1999-03-12 Richard M. Stallman <rms@gnu.org> | |
3499 | |
3500 * startup.el (command-line-1): Improve startup msg. | |
3501 | |
3502 1999-03-12 Eric M. Ludlam <zappo@ultranet.com> | |
3503 | |
3504 * speedbar.el: Added commentary about stealthy functions. | |
3505 (speedbar-message) new function. | |
3506 (speedbar-y-or-n-p): New function | |
3507 (speedbar-with-attached-buffer) Moved macro before reference. | |
3508 Now uses `save-selected-window'. | |
3509 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh, | |
3510 speedbar-generic-item-info, speedbar-item-info-file-helper, | |
3511 speedbar-item-delete, speedbar-insert-generic-list, | |
3512 speedbar-timer-fn, speedbar-check-vc-this-line, | |
3513 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags, | |
3514 speedbar-buffers-item-info) Use speedbar-message. | |
3515 (speedbar-item-info) Limit `message-log-max'. | |
3516 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename, | |
3517 speedbar-item-delete, speedbar-item-object-delete, | |
3518 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p. | |
3519 | |
3520 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp> | |
3521 | |
3522 * server.el (server-start): Set coding system for the server | |
3523 process to raw-text. | |
3524 (server-process-filter): Decode file names if necessary. | |
3525 | |
3526 1999-03-12 Dave Love <fx@gnu.org> | |
3527 | |
3528 * textmodes/fill.el (sentence-end-double-space): Doc fix. | |
3529 | |
3530 * textmodes/paragraphs.el (sentence-end): Doc fix. | |
3531 | |
3532 1999-03-11 Karl Heuer <kwzh@gnu.org> | |
3533 | |
3534 * comint.el (comint-password-prompt-regexp): Accept "login password:" | |
3535 | |
3536 1999-03-09 Karl Heuer <kwzh@gnu.org> | |
3537 | |
3538 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line. | |
3539 (ispell-dictionary-alist-2): Likewise. | |
3540 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars. | |
3541 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars. | |
3542 (ispell-dictionary-alist): Build from six pieces, not just two. | |
3543 | |
3544 * ps-bdf.el (bdf-directory-list): Doc fix. | |
3545 | |
3546 * enriched.el (enriched-mode): Make var permanent-local. | |
3547 | |
3548 1999-03-09 Dave Love <fx@gnu.org> | |
3549 | |
3550 * textmodes/sgml-mode.el (html-mode): Use | |
3551 sentence-end-double-space when setting sentence-end. | |
3552 | |
3553 1999-03-09 Ken'ichi Handa <handa@gnu.org> | |
3554 | |
3555 * language/thai.el (tis-620): New alias coding system for thai-tis620. | |
3556 | |
3557 1999-03-08 Felix Lee <flee@cygnus.com> | |
3558 | |
3559 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook. | |
3560 | |
3561 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok. | |
3562 | |
3563 1999-03-08 Karl Heuer <kwzh@gnu.org> | |
3564 | |
3565 * dired-aux.el (dired-do-copy-regexp): Doc fix. | |
3566 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix. | |
3567 | |
3568 * dired.el (dired-do-copy-regexp): Doc fix. | |
3569 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix. | |
3570 | |
3571 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com> | |
3572 | |
3573 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp. | |
3574 | |
3575 1999-03-08 Jason Rumney <jasonr@altavista.net> | |
3576 | |
3577 * international/codepage.el (cp1250-decode-table) | |
3578 (cp1251-decode-table, cp1253-decode-table) | |
3579 (cp1257-decode-table): New translation tables for MS Windows codepages. | |
3580 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages. | |
3581 | |
3582 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp> | |
3583 | |
3584 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly. | |
3585 | |
3586 1999-03-07 Eli Zaretskii <eliz@gnu.org> | |
3587 | |
3588 * ps-bdf.el (bdf-directory-list): Different value for ms-dos. | |
3589 | |
3590 * term/internal.el (top level): Display character 255 as 8bit as well. | |
3591 | |
3592 1999-03-06 Dave Love <fx@gnu.org> | |
3593 | |
3594 * progmodes/cc-cmds.el (c-outline-level): Bind | |
3595 buffer-invisibility-spec. | |
3596 | |
3597 * progmodes/c-mode.el (c-outline-level): Likewise. | |
3598 | |
3599 * progmodes/ada-mode.el (ada-outline-level): Likewise. | |
3600 | |
3601 1999-03-05 Felix Lee <flee@cygnus.com> | |
3602 | |
3603 * textmodes/outline.el (outline-get-last-sibling): Doc fix. | |
3604 | |
3605 1999-03-05 Richard M. Stallman <rms@gnu.org> | |
3606 | |
3607 * bindings.el (complete-symbol): Invert meaning of prefix arg. | |
3608 | |
3609 1999-03-05 Andrew Innes <andrewi@gnu.org> | |
3610 | |
3611 * w32-fns.el (convert-standard-filename): Convert directory | |
3612 separators to Windows format. | |
3613 | |
3614 1999-03-05 Andreas Schwab <schwab@gnu.org> | |
3615 | |
3616 * international/skkdic-cnv.el: Provide skkdic-cnv. | |
3617 (skkdic-convert): Emit code to require skkdic-cnv at compile time. | |
3618 (batch-skkdic-convert): Doc fix. | |
3619 | |
3620 1999-03-04 Dave Love <fx@gnu.org> | |
3621 | |
3622 * custom.el (custom-set-variables): Protect against setter errors. | |
3623 | |
3624 1999-03-04 Eli Zaretskii <eliz@gnu.org> | |
3625 | |
3626 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of | |
3627 the file sizes from overflowing. | |
3628 (ls-lisp-format): If file size is a float, use %8.0f to print it. | |
3629 Under -s, print the size in blocks with %4.0f, in case they have | |
3630 a *really* huge file. | |
3631 | |
3632 1999-03-03 Dave Love <fx@gnu.org> | |
3633 | |
3634 * options.el (edit-options): Doc fix. | |
3635 (list-options): Don't lose with unbound symbols. Maintain | |
3636 Edit-options-mode. | |
3637 | |
3638 1999-03-01 Dave Love <fx@gnu.org> | |
3639 | |
3640 * mail/supercite.el (sc-attrib-selection-list): Fix custom type. | |
3641 | |
3642 1999-02-28 Richard M. Stallman <rms@gnu.org> | |
3643 | |
3644 * ispell.el (ispell-dictionary-alist-override): New variable. | |
3645 (ispell-dictionary-alist): Don't setq it, | |
3646 if ispell-dictionary-alist-override is set. | |
3647 | |
3648 * simple.el (shell-command-default-error-buffer): Renamed from | |
3649 shell-command-on-region-default-error-buffer. | |
3650 (shell-command-on-region): Mention in echo area when there | |
3651 is some error output. Mention success or failure, too. | |
3652 Accumulate multiple error outputs | |
3653 going forward, with formfeed in between. Display the error buffer | |
3654 when we have put something in it. | |
3655 (shell-command): Add the ERROR-BUFFER argument feature. | |
3656 | |
3657 1999-02-28 Karl Heuer <kwzh@gnu.org> | |
3658 | |
3659 * mail/mh-utils.el (mh-lib): Doc fix. | |
3660 (mh-lib-progs, mh-nmh-p): New vars. | |
3661 (mh-find-progs): Set mh-lib-progs along with other vars. | |
3662 (mh-path-search): New arg FUNC-P; if specified, use that instead | |
3663 of mh-file-command-p. | |
3664 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs. | |
3665 | |
3666 * mail/mh-comp.el (mh-repl-formfile): New var. | |
3667 (mh-smail-batch): Don't ignore all arguments. | |
3668 (mh-reply): Do the right thing when using nmh. | |
3669 | |
3670 1999-02-27 Kenichi Handa <handa@etl.go.jp> | |
3671 | |
3672 * international/mule-cmds.el (select-safe-coding-system): Be sure | |
3673 to show a buffer being decoded. | |
3674 | |
3675 1999-02-26 Ken'ichi Handa <handa@gnu.org> | |
3676 | |
3677 * ps-bdf.el (bdf-directory-list): Initialize it to | |
3678 '("/usr/local/share/emacs/fonts/bdf"). | |
3679 | |
3680 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
3681 | |
3682 * ps-print.el: PostScript programming fix. | |
3683 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use | |
3684 setpagedevice operator). | |
3685 | |
3686 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
3687 | |
3688 * ps-print.el: Doc fix, font size specifies landscape and portrait | |
3689 sizes. | |
3690 (ps-print-version): New version number (4.1.4). | |
3691 (ps-font-size, ps-header-font-size, ps-header-title-font-size): | |
3692 Specifies landscape and portrait sizes. | |
3693 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages) | |
3694 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun | |
3695 fix. | |
3696 (ps-get-font-size): New fun. | |
3697 (ps-font-size-internal, ps-header-font-size-internal) | |
3698 (ps-header-title-font-size-internal): New vars. | |
3699 | |
3700 * ps-mule.el: Change of ps-print font size variable name. | |
3701 (ps-mule-generate-font): Fun fix. | |
3702 (ps-mule-begin-job): Programming uniformization. | |
3703 | |
3704 1999-02-25 Dave Love <fx@gnu.org> | |
3705 | |
3706 * help.el (help-xref-info-regexp): Allow linebreaks and capital. | |
3707 (help-make-xrefs): Do Info case first. | |
3708 | |
3709 * repeat.el: Don't require advice. | |
3710 (repeat-last-kill-command): Variable deleted. | |
3711 | |
3712 1999-02-25 Richard Stallman <rms@gnu.org> | |
3713 | |
3714 * simple.el (shell-command-on-region): Don't go into the REPLACE = t | |
3715 case just because the current buffer is the output buffer. | |
3716 | |
3717 1999-02-25 Kenichi Handa <handa@etl.go.jp> | |
3718 | |
3719 * simple.el (what-cursor-position): To show the character's | |
3720 encoding, use encoded-string-description instead of information | |
3721 of chaset-origin-alist. | |
3722 | |
3723 * international/mule-cmds.el (iso-2022-control-alist): New variable. | |
3724 (encoded-code-description): New function. | |
3725 (encoded-string-description): New function. | |
3726 (encode-coding-char): New function. | |
3727 | |
3728 1999-02-25 Andrew Innes <andrewi@gnu.org> | |
3729 | |
3730 * startup.el (command-line) [windows-nt]: Fix typo in regexp | |
3731 checking for .emacs[.el[c]]. | |
3732 | |
3733 1999-02-24 Richard Stallman <rms@gnu.org> | |
3734 | |
3735 * help.el (describe-function-1): Don't print a whole lambda-function. | |
3736 | |
3737 1999-02-23 Ken'ichi Handa <handa@gnu.org> | |
3738 | |
3739 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow | |
3740 inputting ?\240. | |
3741 | |
3742 1999-02-23 Karl Heuer <kwzh@gnu.org> | |
3743 | |
3744 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst. | |
3745 | |
3746 * midnight.el (clean-buffer-list-kill-regexps): Doc fix. | |
3747 (clean-buffer-list-kill-buffer-names): Doc fix. | |
3748 | |
3749 * gud.el (gud-jdb-massage-args): Spelling fix. | |
3750 | |
3751 1999-02-23 Richard M. Stallman <rms@gnu.org> | |
3752 | |
3753 * subr.el (with-temp-message): Use %s so % in old msg won't fool us. | |
3754 | |
3755 1999-02-22 Eli Zaretskii <eliz@gnu.org> | |
3756 | |
3757 * arc-mode.el (archive-set-buffer-as-visiting-file): Save | |
3758 excursion while calling set-auto-coding-function. | |
3759 | |
3760 * play/handwrite.el (handwrite): Require ps-print, and use | |
3761 ps-printer-name and ps-lpr-command. Call ps-print-region-function | |
3762 if it's defined, instead of forking ps-lpr-command unconditionally. | |
3763 | |
3764 1999-02-22 Kenichi Handa <handa@etl.go.jp> | |
3765 | |
3766 * international/codepage.el (cp-coding-system-for-codepage-1): Put | |
3767 charset-origin-alist property to a coding system for the codepage. | |
3768 | |
3769 * international/mule.el: Modify comment for charset-origin-alist | |
3770 property of a coding system. | |
3771 | |
3772 * simple.el (what-cursor-position): charset-origin-alist property | |
3773 of a coding system may be a translation table or a symbol of which | |
3774 `translation-table' property is a translation table. | |
3775 | |
3776 1999-02-21 Richard Stallman <rms@gnu.org> | |
3777 | |
3778 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body | |
3779 to the "html" template. | |
3780 | |
3781 1999-02-21 Peter Breton <pbreton@ne.mediaone.net> | |
3782 | |
3783 * dirtrack.el (dirtrack): Added docstring. Now returns input. | |
3784 | |
3785 1999-02-18 Peter Breton <pbreton@ne.mediaone.net> | |
3786 | |
3787 * dirtrack.el (dirtrack): Check for the prompt in the input string | |
3788 instead of the buffer. | |
3789 | |
3790 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch> | |
3791 | |
3792 * sql.el: Set version to 1.4.1. Changed mail address to | |
3793 alex@gnu.org. Mention the mailing list sql.el@gnu.org. | |
3794 (sql-input-ring-separator): Doc fix. | |
3795 (sql-mode-syntax-table): double-dash starts comments is defined as | |
3796 ". 56" instead of ". 12b" for XEmacs. | |
3797 (sql-stop, sql-interactive-mode): Doc fixes. | |
3798 (sql-postgres): Queries for database and server, not just one. | |
3799 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted. | |
3800 | |
3801 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is | |
3802 changed. This is needed for master.el to work. | |
3803 (sql-set-sqli-buffer): Use the new hook. | |
3804 | |
3805 * sql.el (sql-make-alternate-buffer-name): Function that sets | |
3806 sql-alternate-buffer-name. | |
3807 (sql-alternate-buffer-name): Possible name of SQLi buffers. | |
3808 (sql-interactive-mode): Set sql-alternate-buffer-name. | |
3809 (sql-rename-buffer): New command. | |
3810 (sql-interactive-mode-menu): Menu for SQLi buffers. | |
3811 | |
3812 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator | |
3813 and sql-input-ring-file-name are used to temporarily set | |
3814 comint-input-ring-file-name and comint-input-ring-separator when | |
3815 reading and writing input history files. | |
3816 | |
3817 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name. | |
3818 (sql-input-ring-file-name): New variable with customization. | |
3819 (sql-input-ring-separator): New variable with customization. | |
3820 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer. | |
3821 Callers changed. | |
3822 (sql-show-sqli-buffer): The message for "sql-buffer is not set" | |
3823 now includes the name of the current buffer. | |
3824 | |
3825 (sql-mode): Set paragraph-separate and paragraph-start so that | |
3826 sql-send-paragraph sends the entire SQL statements, even if it | |
3827 contains indented lines. | |
3828 | |
3829 1999-02-18 Dave Love <fx@gnu.org> | |
3830 | |
3831 * format.el (format-encode-run-method, format-decode-run-method): | |
3832 Fix previous change. | |
3833 | |
3834 1999-02-18 Ken'ichi Handa <handa@gnu.org> | |
3835 | |
3836 * international/mule.el (coding-system-list): Moved here from | |
3837 mule-util.el to avoid autoloading mule-util by the call of | |
3838 select-safe-coding-system. | |
3839 | |
3840 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk> | |
3841 | |
3842 * simple.el (turn-on-auto-fill): Mark it as an option for | |
3843 `text-mode-hook'. | |
3844 | |
3845 1999-02-17 Richard Stallman <rms@gnu.org> | |
3846 | |
3847 * emacs-lisp/easymenu.el (easy-menu-get-map): | |
3848 Don't crash if (current-local-map) is nil. | |
3849 | |
3850 1999-02-17 Peter Breton <pbreton@ne.mediaone.net> | |
3851 | |
3852 * filecache.el (file-cache-filter-regexps): Added .class. | |
3853 | |
3854 1999-02-17 Ken'ichi Handa <handa@gnu.org> | |
3855 | |
3856 * international/mule-util.el (decompose-region): Use | |
3857 insert-buffer-substring instead of insert-buffer to avoid putting | |
3858 mark. | |
3859 | |
3860 1999-02-17 Andreas Schwab <schwab@gnu.org> | |
3861 | |
3862 * calendar/cal-move.el (scroll-calendar-left): Don't set | |
3863 displayed-month and displayed-year here, let generate-calendar do | |
3864 it, after range checking. | |
3865 | |
3866 1999-02-17 Simon Marshall <simon@gnu.org> | |
3867 | |
3868 * progmodes/cc-engine.el (c-at-toplevel-p): New function. | |
3869 | |
3870 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish | |
3871 correctly between an object declared via a constructor and a method. | |
3872 (font-lock-defaults-alist): Don't give `.' word syntax for Java. | |
3873 (java-font-lock-keywords-1): Fontify package names individually. | |
3874 (java-font-lock-extra-types): Ensure regexp matches capitalised only. | |
3875 (java-font-lock-keywords-2): Simplify type fontification. | |
3876 (java-font-lock-keywords-3): Likewise. | |
3877 | |
3878 1999-02-17 Kenichi Handa <handa@etl.go.jp> | |
3879 | |
3880 * language/japanese.el (iso-2022-jp-2): New coding system. | |
3881 ("Japanese"): Put iso-2022-jp-2 in coding-priority property. | |
3882 | |
3883 1999-02-16 Dave Love <fx@gnu.org> | |
3884 | |
3885 * help.el (describe-function-1): Accept non-symbols. | |
3886 | |
3887 1999-02-16 Paul Eggert <eggert@twinsun.com> | |
3888 | |
3889 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we | |
3890 find the last match if there are multiple matches. | |
3891 | |
3892 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
3893 | |
3894 * tex-mode.el (tex-run-command, latex-run-command) | |
3895 (slitex-run-command, tex-command): Doc changes. | |
3896 (tex-start-options-string): Autoload it. Doc change. Provide | |
3897 a menu for customization. Allow nil. Quote backslashes only once. | |
3898 (tex-start-tex): Handle nil value of tex-start-options-string | |
3899 and apply shell-quote-argument to it. | |
3900 | |
3901 1999-02-16 Eli Zaretskii <eliz@gnu.org> | |
3902 | |
3903 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round | |
3904 the size in blocks, since it can be a float. | |
3905 (ls-lisp-format): Likewise | |
3906 | |
3907 1999-02-16 Ken'ichi Handa <handa@gnu.org> | |
3908 | |
3909 * language/japanese.el (japanese-shift-jis): Add | |
3910 charset-origin-alist property. | |
3911 | |
3912 1999-02-15 Richard Stallman <rms@gnu.org> | |
3913 | |
3914 * progmodes/compile.el (compile-internal): Use save-selected-window. | |
3915 | |
3916 * subr.el (momentary-string-display): Bind inhibit-read-only. | |
3917 | |
3918 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line. | |
3919 | |
3920 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il> | |
3921 | |
3922 * mail/rmail.el (rmail-show-message): If an unseen message has a | |
3923 Summary-line in its header, get past one more line before looking | |
3924 for the X-Coding-System header. | |
3925 | |
3926 1999-02-15 Geoff Voelker <voelker@cs.washington.edu> | |
3927 | |
3928 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files | |
3929 explicitly to accomodate Windows 9X lack of a useful copy program. | |
3930 | |
3931 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk> | |
3932 | |
3933 * wid-edit.el (widget-choice-value-create): Use `equal' | |
3934 instead of `eq'. | |
3935 | |
3936 1999-02-14 Richard Stallman <rms@gnu.org> | |
3937 | |
3938 * international/iso-transl.el: | |
3939 (iso-transl-ae): Renamed from iso-transl-e-slash. | |
3940 (iso-transl-a-ring): Renamed from iso-transl-a-slash. | |
3941 (iso-transl-AE): Renamed from iso-transl-E-slash. | |
3942 (iso-transl-A-ring): Renamed from iso-transl-A-slash. | |
3943 (iso-transl-char-map): Related changes. | |
3944 | |
3945 * format.el (format-replace-strings): Fix value of TO in REVERSE case. | |
3946 | |
3947 1999-02-13 Richard Stallman <rms@gnu.org> | |
3948 | |
3949 * textmodes/texinfmt.el (texinfo-alias): New function. | |
3950 (texinfo-fold-nodename-case): Add defvar. | |
3951 (texinfo-format-node): Do case folding if specified. | |
3952 | |
3953 * ffap.el (ffap-file-at-point): Test local file names | |
3954 immediately. Strip off line numbers. | |
3955 | |
3956 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch> | |
3957 | |
3958 * sql.el: Set version to 1.3.2 | |
3959 (sql-solid-program): Added support for solid. | |
3960 (sql-help): Doc mentions sql-solid. | |
3961 (sql-solid): Entry function for Solid. | |
3962 (sql-buffer): Doc explains the use of the variable and how to | |
3963 change it. | |
3964 (sql-mode-menu): Included entries for sql-show-sqli-buffer and | |
3965 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are | |
3966 disabled if sql-buffer doesn't have a process; sql-send-paragraph | |
3967 is new. | |
3968 (sql-show-sqli-buffer): New function to display the value of | |
3969 sql-buffer. | |
3970 (sql-change-sqli-buffer): New function to change sql-buffer. | |
3971 (sql-mode): Doc explains how to change sql-buffer. | |
3972 (sql-send-paragraph): New function to send a paragraph. | |
3973 (sql-mode-map): Added keybinding for sql-send-paragraph. | |
3974 (sql-mysql): Doc corrected. | |
3975 (sql-ms): Doc corrected. | |
3976 | |
3977 * sql.el (sql-server): Doc fix. | |
3978 (sql-mysql): Added the use of sql-server to specify the host, | |
3979 sql-database now specifies database instead of host. | |
3980 (sql-mode-menu): Send... menu items are only active if sql-buffer | |
3981 is non-nil. | |
3982 (sql-help): Changed tag of entry functions a bit. | |
3983 | |
3984 * sql.el: Added keywords from `finder-by-keyword'. | |
3985 (sql-mode): Made sql-buffer a local variable, changed the | |
3986 documentation: removed instructions to add *.sql files to | |
3987 auto-mode-alist, added documentation for having mutliple SQL | |
3988 buffers sending their stuff to different SQLi buffers, each | |
3989 running a different process. | |
3990 (sql-postgres): Quoted *SQL* in doc string. | |
3991 (sql-ms): Likewise. | |
3992 (sql-ingres): Likewise. | |
3993 (sql-ingres): Quoted *SQL* in doc string, added references to | |
3994 sql-user and sql-password used during login. | |
3995 (sql-sybase): Quoted *SQL* in doc string, added comma. | |
3996 (sql-oracle): Likewise. | |
3997 (sql-interactive-mode): Added extensive documentation for having | |
3998 mutliple SQL buffers sending their stuff to different SQLi | |
3999 buffers, each running a different process. | |
4000 (sql-buffer): Changed doc from *SQL* to SQLi. | |
4001 (sql-get-login): Doc fix. | |
4002 | |
4003 1999-02-12 Ken'ichi Handa <handa@gnu.org> | |
4004 | |
4005 * international/mule-conf.el (undecided): Set ascii in | |
4006 safe-charsets property. | |
4007 | |
4008 1999-02-12 Richard Stallman <rms@gnu.org> | |
4009 | |
4010 * textmodes/paragraphs.el (paragraph-separate): Doc fix. | |
4011 | |
4012 1999-02-12 Ken'ichi Handa <handa@gnu.org> | |
4013 | |
4014 * ps-mule.el (ps-mule-font-info-database-default): Set the initial | |
4015 value to ps-mule-font-info-database-latin. | |
4016 | |
4017 1999-02-13 Kenichi HANDA <handa@etl.go.jp> | |
4018 | |
4019 * ps-mule.el (ps-multibyte-buffer): Doc-string modified. | |
4020 (ps-mule-font-info-database-default): New variable. | |
4021 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use | |
4022 ps-mule-font-info-database-default. | |
4023 | |
4024 1999-02-12 Dave Love <fx@gnu.org> | |
4025 | |
4026 * timezone.el (timezone-make-date-sortable) | |
4027 (timezone-make-date-arpa-standard): Doc fix. | |
4028 | |
4029 1999-02-12 Ken'ichi Handa <handa@gnu.org> | |
4030 | |
4031 * international/quail.el (quail-show-kbd-layout): Bind | |
4032 blink-matching-paren to nil. | |
4033 | |
4034 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field | |
4035 for ASCII and Latin-1. | |
4036 | |
4037 1999-02-12 Andreas Schwab <schwab@gnu.org> | |
4038 | |
4039 * gud.el (jdb): Fix regexp for comint-prompt-regexp. | |
4040 | |
4041 1999-02-12 Kenichi Handa <handa@etl.go.jp> | |
4042 | |
4043 * international/mule-cmds.el (language-info-alist): Remove | |
4044 description about charset-origin-alist. | |
4045 | |
4046 * international/mule.el: Comment added for a new coding system | |
4047 property `charset-origin-alit'. | |
4048 (make-translation-table): This variable deleted. | |
4049 | |
4050 * language/chinese.el (chinese-big5): Add charset-origin-alist | |
4051 property. | |
4052 ("Chinese-CNS"): Remove charset-origin-alist property. | |
4053 | |
4054 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist | |
4055 property. | |
4056 (cyrillic-alternativnyj): Likewise. | |
4057 ("Cyrillic-KOI8"): Remove charset-origin-alist property. | |
4058 ("Cyrillic-ALT"): Likewise. | |
4059 | |
4060 * language/vietnamese.el (vietnamese-viqr): Add | |
4061 charset-origin-alist property. | |
4062 ("Vietnamese"): Remove charset-origin-alist property. | |
4063 | |
4064 * simple.el (what-cursor-position): Don't use the varialbe | |
4065 charset-origin-alist, but use charset-origin-alist property of | |
4066 buffer-file-coding-system to decide external character set code. | |
4067 | |
4068 1999-02-10 Richard Stallman <rms@gnu.org> | |
4069 | |
4070 * shadowfile.el: Don't turn on the mode when the file is loaded. | |
4071 | |
4072 1999-02-09 Richard Stallman <rms@gnu.org> | |
4073 | |
4074 * progmodes/compile.el (compile-auto-highlight): Customize. | |
4075 | |
4076 * add-log.el (add-log-file-name-function): New variable. | |
4077 (add-change-log-entry): Call that function, if non-nil. | |
4078 | |
4079 1999-02-09 Michael Ernst <mernst@alum.mit.edu> | |
4080 | |
4081 * rmail.el (rmail-search): Track match with a marker, not an integer. | |
4082 | |
4083 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4084 | |
4085 * progmodes/compile.el (compilation-setup): Set value of | |
4086 compilation-directory-stack as in compilation-forget-errors. | |
4087 (compile-reinitialize-errors): Bind buffer-undo-list and | |
4088 deactivate-mark. | |
4089 (compilation-forget-errors): Likewise. | |
4090 | |
4091 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com> | |
4092 | |
4093 * textmodes/texinfo.el (texinfo-environment-regexp): Add the | |
4094 def... constructs. | |
4095 | |
4096 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu): | |
4097 Remove calls to sleep-for. | |
4098 | |
4099 1999-02-08 Eli Zaretskii <eliz@gnu.org> | |
4100 | |
4101 * international/codepage.el (cp-coding-system-for-codepage-1): On | |
4102 MS-DOS, use dos-unsupported-char-glyph for characters not | |
4103 supported by the codepage. | |
4104 (cp-make-coding-systems-for-codepage): Likewise. | |
4105 | |
4106 1999-02-08 Andreas Schwab <schwab@gnu.org> | |
4107 | |
4108 * international/mule-util.el (coding-system-list): Don't sort | |
4109 coding-system-list here. | |
4110 | |
4111 * international/mule.el (coding-system-lessp): Moved here from | |
4112 mule-util.el | |
4113 (add-to-coding-system-list): New function. | |
4114 (make-subsidiary-coding-system, make-coding-system, | |
4115 define-coding-system-alias): Use it instead of setting | |
4116 coding-system-list directly. | |
4117 | |
4118 1999-02-07 Dave Love <fx@gnu.org> | |
4119 | |
4120 * calendar/appt.el (appt-make-list): Don't splice quotes and date | |
4121 onto message. | |
4122 | |
4123 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4124 | |
4125 * imenu.el (imenu--last-menubar-index-alist): Add doc. | |
4126 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist. | |
4127 | |
4128 1999-02-06 Richard Stallman <rms@gnu.org> | |
4129 | |
4130 * language/european.el (setup-slovenian-environment): New function. | |
4131 ("Slovenian"): New language environment. | |
4132 | |
4133 * progmodes/sql.el (sql-help): Doc fix. | |
4134 (sql-mysql): Doc fix. | |
4135 | |
4136 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4137 | |
4138 * tex-mode.el: When compiling, require compare-w and skeleton | |
4139 to pacify the byte-compiler. Move the def's of the tex-commands | |
4140 together. Add a comment on kill-process vs. quit-process. | |
4141 | |
4142 1999-02-05 Dave Love <fx@gnu.org> | |
4143 | |
4144 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with | |
4145 null markers. | |
4146 (compile-goto-error): Likewise. | |
4147 | |
4148 1999-02-05 Stephen Gildea <gildea@alum.mit.edu> | |
4149 | |
4150 * time-stamp.el (time-stamp-format): Format doc tighter. | |
4151 (time-stamp-line-limit): 0 searches the entire buffer (careful!). | |
4152 (time-stamp): don't re-write the time stamp if it didn't change. | |
4153 | |
4154 1999-02-05 Alex Schroeder <asc@bsiag.com> | |
4155 | |
4156 * progmodes/sql.el: Changed version to 1.2.1. | |
4157 (sql-pop-to-buffer-after-send-region): Improved documentation. | |
4158 (sql-mysql-program): Added MySQL support. | |
4159 (sql-prompt-length): Made prompt-length configurable. | |
4160 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter. | |
4161 (sql-help): Added MySQL support, changed documentation. | |
4162 (sql-send-region): A message is displayed if something is sent. | |
4163 (sql-mode): Added buffer-local comment-start. | |
4164 (sql-interactive-mode): Use sql-prompt-length to set left-margin. | |
4165 (sql-interactive-mode): Added buffer-local comment-start. | |
4166 (sql-oracle): Set sql-prompt-length. | |
4167 (sql-sybase): Set sql-prompt-length. | |
4168 (sql-mysql): Added MySQL support. | |
4169 (sql-ingres): Set sql-prompt-length. | |
4170 (sql-ms): Set sql-prompt-length. | |
4171 (sql-postgres): Set sql-prompt-length. | |
4172 | |
4173 1999-02-04 Eli Zaretskii <eliz@gnu.org> | |
4174 | |
4175 * term/internal.el (dos-codepage-setup): Set selection coding | |
4176 system to cpNNN-dos. | |
4177 | |
4178 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
4179 | |
4180 * international/characters.el: Let ethiopic use iso-2022-7bit. | |
4181 | |
4182 1999-02-02 Dave Love <fx@gnu.org> | |
4183 | |
4184 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here... | |
4185 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here. | |
4186 | |
4187 1999-02-02 Karl Heuer <kwzh@gnu.org> | |
4188 | |
4189 * terminal.el (terminal-emulator): Doc fix. | |
4190 | |
4191 1999-02-02 Ken'ichi Handa <handa@gnu.org> | |
4192 | |
4193 * international/mule-util.el (compose-chars): Doc-string | |
4194 modified. Correctly handle a composition character in ARGS. | |
4195 | |
4196 1999-02-01 Richard Stallman <rms@gnu.org> | |
4197 | |
4198 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var. | |
4199 (makefile-menu-index-function): Function deleted. | |
4200 (makefile-mode): Use makefile-imenu-generic-expression. | |
4201 | |
4202 1999-02-01 Geoff Voelker <voelker@cs.washington.edu> | |
4203 | |
4204 * term/w32-win.el (w32-create-initial-fontsets): Back out previous | |
4205 change, invoke from before-init-hook. | |
4206 | |
4207 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu> | |
4208 | |
4209 * subr.el (remove-from-invisibility-spec): Cope with the case when | |
4210 buffer-invisibility-spec is t. | |
4211 | |
4212 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu> | |
4213 | |
4214 * calendar/calendar.el (calendar-mode-map): Fix bindings for | |
4215 appt-add and appt-delete. | |
4216 | |
4217 1999-02-01 Eli Zaretskii <eliz@gnu.org> | |
4218 | |
4219 * term/pc-win.el (msdos-approximate-color): New function. | |
4220 (msdos-color-translate): Call it to find a DOS color that best | |
4221 approximates an X-style "#NNNNNN" color specification. | |
4222 | |
4223 1999-02-01 Ken'ichi Handa <handa@gnu.org> | |
4224 | |
4225 * international/mule-util.el (compose-chars-component): Add | |
4226 autoload cookie. | |
4227 | |
4228 1999-01-31 Ken'ichi Handa <handa@gnu.org> | |
4229 | |
4230 * international/quail.el (quail-lookup-key): If cdr of MAP is a | |
4231 function, replace cdr of MAP by the return value of the function | |
4232 unconditionally. | |
4233 | |
4234 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4235 | |
4236 * progmodes/compile.el (compilation-next-error-locus): Don't | |
4237 decrease argument FIND-AT-LEAST of compilation-next-error-locus. | |
4238 | |
4239 1999-01-31 Eli Zaretskii <eliz@gnu.org> | |
4240 | |
4241 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs | |
4242 and NLs before "charset", and allow the charset name be in double | |
4243 quotes. | |
4244 | |
4245 1999-01-31 Richard Stallman <rms@gnu.org> | |
4246 | |
4247 * imenu.el (imenu-sort-function): Fix custom type. | |
4248 | |
4249 1999-01-30 Richard Stallman <rms@gnu.org> | |
4250 | |
4251 * speedbar.el (speedbar-line-token): Match {...} instead of [...]. | |
4252 (speedbar-line-token): Likewise. | |
4253 | |
4254 * play/gametree.el (gametree-default-score): Use defcustom. | |
4255 (gametree-score-regexp, gametree-score-closer): Likewise. | |
4256 (gametree-score-manual-flag, gametree-score-opener): Likewise. | |
4257 | |
4258 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4259 | |
4260 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when | |
4261 decoding. | |
4262 | |
4263 1999-01-29 Markus Rost <rost@gnu.org> | |
4264 | |
4265 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by | |
4266 tex-validate-buffer. | |
4267 (plain-tex-mode, latex-mode, slitex-mode): Likewise. | |
4268 (tex-validate-buffer): Renamed from validate-tex-buffer. Works | |
4269 now with recent occur-mode. | |
4270 (tex-validate-region): Really walk through all Sexps. | |
4271 (tex-region): Bind shell-dirtrack-verbose. | |
4272 (tex-file, tex-bibtex-file): Likewise. | |
4273 | |
4274 1999-01-29 Dave Love <fx@gnu.org> | |
4275 | |
4276 * finder.el: (finder-commentary): Fix interactive spec. Try | |
4277 appending .el to file name. | |
4278 (finder-find-library, finder-commentary): Doc fixes. | |
4279 | |
4280 1999-01-29 Andrew Innes <andrewi@gnu.org> | |
4281 | |
4282 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes | |
4283 where the userid contains directory separators. | |
4284 | |
4285 1999-01-29 Dave Love <fx@gnu.org> | |
4286 | |
4287 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list. | |
4288 (lm-commentary): Doc fix. | |
4289 | |
4290 1999-01-29 Andreas Schwab <schwab@gnu.org> | |
4291 | |
4292 * files.el (file-expand-wildcards): Never consider `.' and `..' a | |
4293 wildcard match. Fix regexp that tests if dirpart contains | |
4294 wildcard characters. | |
4295 | |
4296 1999-01-28 Richard Stallman <rms@gnu.org> | |
4297 | |
4298 * font-lock.el (font-lock-default-unfontify-region): | |
4299 If not font-lock-syntactic-keywords, don't remove syntax-table prop. | |
4300 | |
4301 1999-01-27 Jason Rumney <jasonr@altavista.net> | |
4302 | |
4303 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard | |
4304 from FAMILY field. | |
4305 (w32-create-initial-fontsets): Do not use before-init-hook. | |
4306 (mouse-set-font): Document. Automatically create and use fontsets. | |
4307 | |
4308 * dos-w32.el (direct-print-region-helper): Check for printer | |
4309 being t as well as a string. | |
4310 | |
4311 1999-01-27 Kenichi Handa <handa@etl.go.jp> | |
4312 | |
4313 * mail/rmail.el (rmail-decode-mime-charset): New variable. | |
4314 (rmail-mime-charset-pattern): New variable. | |
4315 (rmail-convert-to-babyl-format): Decode by MIME-charset if | |
4316 rmail-decode-mime-charset is non-nil. | |
4317 | |
4318 1999-01-27 Ken'ichi Handa <handa@gnu.org> | |
4319 | |
4320 * international/characters.el: Set category `q' for all characters | |
4321 in tibetan and tibetan-1-column. | |
4322 | |
4323 1999-01-27 Andrew Innes <andrewi@gnu.org> | |
4324 | |
4325 * frame.el (select-frame-by-name): Obey focus-follows-mouse. | |
4326 (select-frame-by-name) [windows-nt]: Use w32-focus-frame. | |
4327 | |
4328 1999-01-27 Dave Love <fx@gnu.org> | |
4329 | |
4330 * international/mule-cmds.el (current-language-environment): | |
4331 Provide :link, :type (choices) and appropriate :get. | |
4332 | |
4333 1999-01-27 Eli Zaretskii <eliz@gnu.org> | |
4334 | |
4335 * startup.el (command-line): Set default eol-mnemonic-* strings to | |
4336 display end-of-line format in mode line. | |
4337 | |
4338 * cus-start.el (all): Add eol-mnemonic-* variables. | |
4339 | |
4340 1999-01-26 Dave Love <fx@gnu.org> | |
4341 | |
4342 * startup.el (command-line-1): Up-date copyright. | |
4343 | |
4344 * paths.el (Info-default-directory-list): Use configdir twice. | |
4345 | |
4346 * info.el (Info-directory-list): Don't set path-separator now | |
4347 we're not shipped with Texinfo. Simplify path definition. | |
4348 Substitute all occurrences of instdir in Info-default-directory-list. | |
4349 | |
4350 1999-01-25 Richard Stallman <rms@gnu.org> | |
4351 | |
4352 * startup.el (normal-top-level-add-subdirs-to-load-path): | |
4353 Record the inode numbers of the dirs processed, to avoid loop. | |
4354 | |
4355 * textmodes/tex-mode.el (tex-run-command): Doc fix. | |
4356 | |
4357 1999-01-25 Dave Love <fx@gnu.org> | |
4358 | |
4359 * browse-url.el (browse-url-netscape-program): Doc addition. | |
4360 | |
4361 * help.el (help-make-xrefs): Default info references to an `(emacs)' | |
4362 prefix. | |
4363 | |
4364 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see | |
4365 auto-mode-alist. | |
4366 | |
4367 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
4368 | |
4369 * calendar/diary-lib.el (mark-diary-entries): Use | |
4370 assoc-ignore-case and do not capitalize when matching month and | |
4371 day names. | |
4372 | |
4373 * calendar/calendar.el (calendar-read-date): Ditto. | |
4374 | |
4375 * calendar/cal-hebrew.el (calendar-goto-hebrew-date) | |
4376 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto. | |
4377 | |
4378 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto. | |
4379 | |
4380 * calendar/cal-french.el (calendar-goto-french-date): Ditto. | |
4381 | |
4382 * calendar/cal-islam.el (calendar-goto-islamic-date) | |
4383 (mark-islamic-diary-entries): Ditto. | |
4384 | |
4385 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto. | |
4386 | |
4387 * calendar/cal-mayan.el (calendar-read-mayan-haab-date) | |
4388 (calendar-read-mayan-tzolkin-date): Ditto. | |
4389 | |
4390 * calendar/cal-persia.el (persian-prompt-for-date): Ditto. | |
4391 | |
4392 1999-01-22 Michael Ernst <mernst@alum.mit.edu> | |
4393 | |
4394 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker. | |
4395 | |
4396 1999-01-25 Karl Heuer <kwzh@gnu.org> | |
4397 | |
4398 * faces.el (list-faces-display): Multiline case of previous fix. | |
4399 | |
4400 1999-01-25 Andreas Schwab <schwab@gnu.org> | |
4401 | |
4402 * mail/mailalias.el (mail-complete-alist): Use alist as customize type. | |
4403 | |
4404 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu> | |
4405 | |
4406 * files.el (find-file): If find-file-noselect returns a list, | |
4407 do switch-to-buffer on each element. | |
4408 (find-file-other-window): Likewise for all but the first element. | |
4409 (find-file-other-frame): Same. | |
4410 (find-file-noselect): When we expand a wildcard, return a list | |
4411 of buffers. | |
4412 | |
4413 1999-01-24 Eli Zaretskii <eliz@gnu.org> | |
4414 | |
4415 * term/internal.el (dos-codepage-setup): Call prefer-coding-system | |
4416 to set the appropriate cpNNN-dos coding system as the | |
4417 highest-priority coding system. | |
4418 | |
4419 1999-01-23 Ken'ichi Handa <handa@gnu.org> | |
4420 | |
4421 * international/fontset.el (generate-fontset-menu): Return a | |
4422 sorted list by plain names of fontsets. | |
4423 | |
4424 * international/mule-diag.el (list-fontsets): Sort fontsets by | |
4425 plain names. | |
4426 | |
4427 * language/tibet-util.el (tibetan-vertical-stacking): If the arg | |
4428 FIRST is a composite character, decompose it at first. | |
4429 | |
4430 1999-01-23 Dave Love <fx@gnu.org> | |
4431 | |
4432 * format.el: Doc fixes. | |
4433 (format-encode-run-method): Have things happen in the right buffer. | |
4434 Deal with errors from method. Set coding-system-for-write. | |
4435 (format-decode-run-method): Have things happen in the right buffer. | |
4436 Deal with errors from method. Set coding-system-for-read. | |
4437 (format-alist): Use nil instead of unmatchable regexps. | |
4438 | |
4439 * simple.el (shell-command-on-region): Return command's exit status. | |
4440 | |
4441 1999-01-23 Eric Ludlam <zappo@gnu.org> | |
4442 | |
4443 * speedbar.el (speedbar-item-info-file-helper): Add optional arg | |
4444 of the file whose info we want to display. | |
4445 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize. | |
4446 (speedbar-add-mode-functions-list) Improve doc. | |
4447 (speedbar-line-token) New function. | |
4448 (speedbar-dired) Fix order of directories in -shown-directories. | |
4449 (speedbar-line-path): Default return is default-directory | |
4450 (speedbar-buffers-line-path): Return is dir name only. | |
4451 (speedbar-mode-functions-list): New variable. | |
4452 (speedbar-mouse-item-info): Rewrote to be a replaceable fn. | |
4453 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper | |
4454 speedbar-files-item-info speedbar-buffers-item-info): New functions. | |
4455 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list): | |
4456 New functions. | |
4457 (speedbar-line-file): Broke out part that fetches file from a line. | |
4458 (speedbar-line-text): New function extracted from speedbar-line-file. | |
4459 (speedbar-line-path): Converted into a replaceable function. | |
4460 (speedbar-files-line-path, speedbar-buffers-line-path): New functions. | |
4461 | |
4462 1999-01-23 Ken'ichi Handa <handa@gnu.org> | |
4463 | |
4464 * international/fontset.el (create-fontset-from-x-resource): Make | |
4465 style variants. | |
4466 | |
4467 1999-01-22 Dave Love <fx@gnu.org> | |
4468 | |
4469 * paths.el (Info-default-directory-list): Put sysdir after start. | |
4470 | |
4471 1999-01-22 Sam Steingold <sds@goems.com> | |
4472 | |
4473 * midnight.el (clean-buffer-list): do not kill a buffer if it has | |
4474 a process associated with it. | |
4475 | |
4476 1999-01-22 Jason Rumney <jasonr@altavista.net> | |
4477 | |
4478 * term/w32-win.el (w32-standard-fontset-spec): Simplified. | |
4479 | |
4480 1999-01-22 Felix Lee <flee@cygnus.com> | |
4481 | |
4482 * vc.el (vc-annotate-display): Delete old overlays. Fix check for | |
4483 major-mode. | |
4484 (vc-annotate-mode): Delete variable. | |
4485 | |
4486 1999-01-22 Andrew Innes <andrewi@gnu.org> | |
4487 | |
4488 * startup.el (command-line): [windows-nt]: Check for existence of | |
4489 .emacs file so as to notice .emacs.el or .emacs.elc and use them | |
4490 in preference to _emacs. | |
4491 | |
4492 1999-01-22 Dave Love <fx@gnu.org> | |
4493 | |
4494 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref. | |
4495 | |
4496 1999-01-20 Richard Stallman <rms@gnu.org> | |
4497 | |
4498 * files.el (find-file-noselect): Do wildcard processing only | |
4499 if new arg WILDCARDS is non-nil. | |
4500 (find-file, find-file-other-window): New arg WILDCARDS. | |
4501 Default it to non-nil if interactive. | |
4502 (find-file-other-frame): Likewise. | |
4503 (find-file-read-only): Likewise. | |
4504 (find-file-read-only-other-window): Likewise. | |
4505 (find-file-read-only-other-frame): Likewise. | |
4506 | |
4507 * wid-edit.el (widget-alist-convert-option): Delete spurious comma. | |
4508 (widget-plist-convert-option): Delete spurious comma. | |
4509 | |
4510 1999-01-19 Jason Rumney <jasonr@altavista.net> | |
4511 | |
4512 * term/w32-win.el (w32-standard-fontspec-spec): Change | |
4513 iso8859-5 to koi8-r. Add iso8859-9. | |
4514 | |
4515 1999-01-19 Dave Love <fx@gnu.org> | |
4516 | |
4517 * browse-url.el (browse-url-maybe-new-window): Delete macro and | |
4518 its uses. | |
4519 | |
4520 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark | |
4521 is active. | |
4522 (fortran-indent-subprogram): Likewise. | |
4523 | |
4524 1999-01-19 Dave Love <d.love@dl.ac.uk> | |
4525 | |
4526 * paths.el (Info-default-directory-list): Perhaps add /usr/info. | |
4527 | |
4528 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4529 | |
4530 * wid-edit.el (alist): Use sexp as default key-type. | |
4531 | |
4532 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4533 | |
4534 * textmodes/tex-mode.el (tex-define-common-keys): | |
4535 Remove key binding of tex-feed-input. | |
4536 (tex-mode-map): Bind tex-feed-input here. | |
4537 (tex-start-shell): Use compilation-shell-minor-mode. Set | |
4538 comint-input-filter-functions before running tex-shell-hook. | |
4539 (tex-start-tex): Forget compilation errors. | |
4540 (tex-compilation-parse-errors): Rewritten to work also with | |
4541 compile-mouse-goto-error and compile-goto-error. Adjusted to | |
4542 change in tex-region. | |
4543 (tex-region): For the temp file use file-name without directory. | |
4544 (tex-file): Expand file name of tex-print-file. | |
4545 | |
4546 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4547 | |
4548 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call. | |
4549 | |
4550 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no> | |
4551 | |
4552 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid | |
4553 beginning could cause Emacs to hang. Fixed. | |
4554 | |
4555 1999-01-18 Ken'ichi Handa <handa@gnu.org> | |
4556 | |
4557 * international/ccl.el (ccl-compile-translate-character): Handle | |
4558 the case that a tranlation table is CCL register correctly. | |
4559 | |
4560 * international/mule-cmds.el (select-safe-coding-system): | |
4561 Hightlight at most 256 characters. | |
4562 | |
4563 1999-01-18 Dave Love <fx@gnu.org> | |
4564 | |
4565 * startup.el (command-line): If the init file changes operation to | |
4566 unibyte, make all buffers unibyte and re-set language environment. | |
4567 | |
4568 * disp-table.el (standard-display-european): Make all existing | |
4569 buffers unibyte. Fix doc. | |
4570 | |
4571 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4572 | |
4573 * wid-edit.el (coding-system): Define this unconditionally. | |
4574 | |
4575 * simple.el (shell-command-on-region-default-error-buffer): New var. | |
4576 (shell-command-on-region): Use that variable as interactive | |
4577 value of ERROR-BUFFER argument. | |
4578 | |
4579 1999-01-17 Sam Steingold <sds@goems.com> | |
4580 | |
4581 * mail/rmail.el (rmail-quit): run `rmail-quit-hook'. | |
4582 | |
4583 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4584 | |
4585 * progmodes/compile.el (compilation-goto-locus): If already in the | |
4586 compilation buffer's window, keep it in that window. | |
4587 (compile-mouse-goto-error): Add Doc. Don't play with windows. | |
4588 (compile-goto-error): Don't play with windows. | |
4589 | |
4590 * textmodes/tex-mode.el (latex-run-command): Doc fix. | |
4591 (tex-command): Doc fix. | |
4592 (tex-compilation-parse-errors): Doc fix. | |
4593 (tex-generate-zap-file-name): Don't start the name with -. | |
4594 (tex-expand-files): Works now also with strings ending with ":". | |
4595 | |
4596 1999-01-17 Ian T Zimmerman <itz@transbay.net> | |
4597 | |
4598 Patch failed to install: | |
4599 * gametree.el: Document scoring functionality. | |
4600 (gametree-score-regexp): Add optional plus sign. | |
4601 (gametree-score-opener): Replace `:' with `=' as the former | |
4602 conflicts with gametree-half-ply-regexp. | |
4603 (gametree-transpose-following-leaves): Add. | |
4604 (gametree-insert-new-leaf): Make modifying commands barf in read | |
4605 only buffers. | |
4606 (gametree-break-line-here): Add a call to | |
4607 `gametree-transpose-following-leaves'. This maintains the | |
4608 necessary invariant that on each level all leaf children precede | |
4609 all nonleaf children. This has always been implied, but left to | |
4610 the user, and, unfortunately, undocumented. | |
4611 | |
4612 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk> | |
4613 | |
4614 * wid-edit.el (plist, alist): New widget types. | |
4615 | |
4616 1999-01-17 Dave Love <fx@gnu.org> | |
4617 | |
4618 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and | |
4619 fix scope of condition-case therein. | |
4620 | |
4621 1999-01-17 Andrew Innes <andrewi@gnu.org> | |
4622 | |
4623 * dos-w32.el: (find-buffer-file-type-coding-system): Use | |
4624 default-buffer-file-coding-system when file doesn't exist (and | |
4625 isn't covered by a special case) instead of forcing undecided-dos | |
4626 against the user's wishes. | |
4627 | |
4628 * dos-w32.el (direct-print-region-helper): New function based on | |
4629 direct-print-region-function; sends data to specified printer port | |
4630 without further translation. Recognize and handle specially the | |
4631 standard `print' and `nprint' programs, as well as `lpr' and | |
4632 similar programs. Only write directly to the printer port if no | |
4633 print program is specified. Work around a bug in Windows 9x | |
4634 affecting Win32 version of Emacs by invoking command.com to write | |
4635 to the printer port instead of writing directly. | |
4636 (direct-print-region-function): Use direct-print-region-helper to | |
4637 do most of the work. | |
4638 (direct-ps-print-region-function): New function; analogue of | |
4639 direct-print-region-function for ps-print. | |
4640 (ps-lpr-command): Comment out setq; leave as example usage. | |
4641 (ps-lpr-switches): Ditto. | |
4642 | |
4643 * lpr.el: (printer-name): Update docstring about usage on MS-DOS | |
4644 and MS-Windows. | |
4645 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on | |
4646 DOS and Windows platforms, to indicate direct printing. Update | |
4647 the docstring accordingly. | |
4648 | |
4649 * ps-print.el: (ps-printer-name): Update docstring about usage on | |
4650 MS-DOS and MS-Windows. | |
4651 (ps-lpr-command): Update docstring as for lpr-command. | |
4652 (ps-print-region-function): New variable. | |
4653 (ps-do-despool): Use it. | |
4654 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for | |
4655 DOS/Windows. | |
4656 | |
4657 * subr.el (subst-char-in-string): New function. | |
4658 | |
4659 1999-01-17 Eli Zaretskii <eliz@gnu.org> | |
4660 | |
4661 * international/codepage.el (cp852-decode-table): Fill a nil entry. | |
4662 | |
4663 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename. | |
4664 (bdf-find-font-info): New function, looks for the first readable | |
4665 file from a list of alternatives. | |
4666 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info | |
4667 instead of bdf-get-font-info. | |
4668 (bdf-generate-glyphs): If font-name is a cons cell, pass its car | |
4669 to ps-mule-generate-bitmap-glyph. | |
4670 | |
4671 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative | |
4672 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can | |
4673 now be a list of alternative names. | |
4674 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car. | |
4675 (ps-mule-prepare-font): Likewise. | |
4676 | |
4677 * international/codepage.el (cp855-decode-table, | |
4678 cp850-decode-table): Fill some nil entries. | |
4679 | |
4680 1999-01-16 Dave Love <fx@gnu.org> | |
4681 | |
4682 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert | |
4683 last change. | |
4684 | |
4685 1999-01-15 Dave Love <fx@gnu.org> | |
4686 | |
4687 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions | |
4688 and change regexp for command names. | |
4689 (help-xref-go-back, function-called-at-point, symbol-file) | |
4690 (where-is): Doc fixes. | |
4691 (help-xref-go-back): Remove interactive spec. | |
4692 (describe-function-1): Fix message for alias. Buttomize alias | |
4693 name. | |
4694 | |
4695 * simple.el (join-line): New alias. | |
4696 | |
4697 1999-01-15 Johan Vromans <jvromans@squirrel.nl> | |
4698 | |
4699 * forms.el: (forms--show-record): Convert integers to string | |
4700 expicitly since concat will no longer accept integers. | |
4701 (forms-print): Use local `total-nb-records' since | |
4702 `forms--total-records' will be inaccessible after buffer switching. | |
4703 | |
4704 1998-01-14 Felix Lee <flee@cygnus.com> | |
4705 | |
4706 * textmodes/flyspell.el (make-flyspell-overlay): fix front stickiness. | |
4707 | |
4708 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4709 | |
4710 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change. | |
4711 | |
4712 1999-01-14 Eli Zaretskii <eliz@gnu.org> | |
4713 | |
4714 * international/codepage.el (cp850-decode-table): Fix previous change. | |
4715 | |
4716 1999-01-14 Simon Marshall <simon@gnu.org> | |
4717 | |
4718 * shell.el (shell-dirtrack-verbose): New custom variable. | |
4719 (shell-dirstack-message): Use it. | |
4720 | |
4721 1999-01-14 Kenichi Handa <handa@etl.go.jp> | |
4722 | |
4723 * international/mule-conf.el: Coding system alias `dos' for | |
4724 `undecided-dos', `mac' for `undecided-mac'. | |
4725 | |
4726 * international/mule-cmds.el (describe-language-environment): | |
4727 Don't alter input-method-alist. | |
4728 | |
4729 1999-01-13 Eli Zaretskii <eliz@gnu.org> | |
4730 | |
4731 * international/codepage.el (cp850-decode-table): Replace nil | |
4732 entries with codes of similary looking glyphs. (Suggested by | |
4733 Jason Rumney <jasonr@altavista.net>.) | |
4734 | |
4735 1999-01-13 Dave Love <fx@gnu.org> | |
4736 | |
4737 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise". | |
4738 | |
4739 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change. | |
4740 | |
4741 1999-01-12 Karl Heuer <kwzh@gnu.org> | |
4742 | |
4743 * files.el (auto-save-hook): Defvar this. | |
4744 | |
4745 1999-01-12 Alex Schroeder <asc@bsiag.com> | |
4746 | |
4747 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock | |
4748 faces, eliminating the need to load font-lock before loading sql. | |
4749 (sql-mode-oracle-font-lock-keywords): Likewise. | |
4750 (sql-mode-postgres-font-lock-keywords): Likewise. | |
4751 | |
4752 1999-01-11 Dave Love <fx@gnu.org> | |
4753 | |
4754 * cus-start.el: Add inhibit-eol-conversion. | |
4755 | |
4756 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap | |
4757 the values round. | |
4758 | |
4759 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4760 | |
4761 * help.el (help-mode-finish): Renamed from help-mode-maybe. | |
4762 Don't switch to Help mode here. | |
4763 (temp-buffer-setup-hook): Use help-mode-finish. | |
4764 (help-mode-setup): New function. | |
4765 (temp-buffer-setup-hook): Use help-mode-setup. | |
4766 | |
4767 * progmodes/sql.el: New file. | |
4768 | |
4769 * files.el (auto-mode-alist): Add sql-mode. | |
4770 | |
4771 * faces.el (list-faces-display): Improve the formatting | |
4772 by computing the maximum length required for any face-name. | |
4773 | |
4774 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4775 | |
4776 * progmodes/compile.el (compilation-shell-minor-mode): New function. | |
4777 | |
4778 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu> | |
4779 | |
4780 * term.el (term_send_home): Change the string to | |
4781 be the same as the one emitted by xterm and consistent with the | |
4782 ones emitted by prior and next. | |
4783 (term_send_end): Likewise. | |
4784 | |
4785 1999-01-10 Dave Love <fx@gnu.org> | |
4786 | |
4787 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse | |
4788 bindings. | |
4789 | |
4790 1999-01-10 Eli Zaretskii <eliz@gnu.org> | |
4791 | |
4792 * international/codepage.el (codepage-setup): Doc fix. | |
4793 (cp-decoding-vector-for-codepage): Likewise. | |
4794 | |
4795 1999-01-10 Markus Rost <rost@gnu.org> | |
4796 | |
4797 * cus-edit.el (custom-save-delete): First scan the custom-file. | |
4798 | |
4799 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4800 | |
4801 * international/iso-transl.el: Define a "function name" for | |
4802 each translation that isn't ASCII. Use these function names | |
4803 in iso-transl-char-map. | |
4804 | |
4805 1999-01-08 Kenichi Handa <handa@etl.go.jp> | |
4806 | |
4807 * international/mule-util.el (decompose-region): Do decomposition | |
4808 on temporary unibyte buffer. | |
4809 | |
4810 * international/mule.el (make-char): Doc-string modified. | |
4811 | |
4812 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4813 | |
4814 * simple.el (comment-region): Delete spaces only if we | |
4815 deleted a comment starter. | |
4816 | |
4817 1999-01-07 Dave Love <fx@gnu.org> | |
4818 | |
4819 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix. | |
4820 | |
4821 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom | |
4822 like eval-defun does. | |
4823 | |
4824 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark]. | |
4825 | |
4826 * generic.el: Re-write `(make-variable-buffer-local (defvar ...' | |
4827 constructions. Doc fixes. | |
4828 (generic-create-generic-function): Use defalias, not fset. | |
4829 | |
4830 * find-func.el: More doc fixes. | |
4831 | |
4832 1999-01-06 Stephen Eglen <stephen@gnu.org> | |
4833 | |
4834 * files.el (save-buffers-kill-emacs): Show the list of current | |
4835 processes before prompting to kill them and exit. | |
4836 | |
4837 1999-01-06 Dave Love <fx@gnu.org> | |
4838 | |
4839 * emacs-lisp/find-func.el: Doc fixes. | |
4840 (find-function-regexp): Extend for define-generic-mode, | |
4841 define-derived-mode, easy-mmode-define-minor-mode. | |
4842 | |
4843 1999-01-06 Dave Love <fx@gnu.org> | |
4844 | |
4845 * progmodes/fortran.el (fortran-window-create): Account for scroll | |
4846 bar width. | |
4847 | |
4848 * browse-url.el: Require (noerror) w3-auto when compiling. | |
4849 (browse-url-maybe-new-window): Make it a macro and revert last | |
4850 change to callers. | |
4851 (browse-url-w3): Require w3 for w3-fetch-other-window. | |
4852 | |
4853 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4854 | |
4855 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the | |
4856 argument. | |
4857 | |
4858 1999-01-06 Simon Marshall <simon@gnu.org> | |
4859 | |
4860 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix. | |
4861 | |
4862 * font-lock.el (font-lock-default-fontify-buffer): When using | |
4863 with-temp-message, use nil rather than current-message. | |
4864 | |
4865 * lazy-lock.el (lazy-lock-unstall): | |
4866 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil | |
4867 rather than current-message. | |
4868 | |
4869 * fast-lock.el (fast-lock-save-cache-1): | |
4870 (fast-lock-cache-data): When using with-temp-message, use nil rather | |
4871 than current-message. | |
4872 | |
4873 1999-01-06 Eli Zaretskii <eliz@gnu.org> | |
4874 | |
4875 * international/codepage.el (cp-coding-system-for-codepage-1): Add | |
4876 the valid-codes property. | |
4877 | |
4878 * international/mule-cmds.el (prefer-coding-system): Call | |
4879 set-coding-priority, so that the internal array of priorities is | |
4880 also updated. | |
4881 | |
4882 * international/mule-util.el: | |
4883 (coding-system-change-eol-conversion, | |
4884 coding-system-change-text-conversion): Don't define here. | |
4885 | |
4886 * international/mule-cmds.el: Define them here. Remove the | |
4887 autoload cookies. | |
4888 | |
4889 1999-01-06 Andreas Schwab <schwab@gnu.org> | |
4890 | |
4891 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled | |
4892 if it was enabled before. | |
4893 | |
4894 * view.el (View-revert-buffer-scroll-page-forward): Bind | |
4895 view-scroll-auto-exit instead of obsolete view-mode-auto-exit. | |
4896 | |
4897 * files.el (recover-session): Preserve point when inserting | |
4898 explanation. | |
4899 | |
4900 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4901 | |
4902 * cus-edit.el (custom-save-delete): Don't delete whitespace | |
4903 and comments before the sexp that is replaced. | |
4904 | |
4905 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
4906 | |
4907 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error. | |
4908 | |
4909 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
4910 | |
4911 * vc.el (vc-dired-hook): Use the original value of | |
4912 dired-move-to-filename-regexp on lines that have not been | |
4913 reformatted yet. | |
4914 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the | |
4915 file lines have already been reformatted. | |
4916 | |
4917 1999-01-05 Dave Love <fx@gnu.org> | |
4918 | |
4919 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search | |
4920 buffer-local. | |
4921 | |
4922 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se> | |
4923 | |
4924 * progmodes/f90.el: Change of regular expressions for type to | |
4925 correct highlighting and identation. Some small fixes for | |
4926 compatibility with XEmacs. | |
4927 | |
4928 1999-01-05 Stephen Eglen <stephen@gnu.org> | |
4929 | |
4930 * mspools.el (mspools-vm-system-mail): Provide an alternative | |
4931 value based on rmail-spool-directory if $MAIL is not defined. | |
4932 | |
4933 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl> | |
4934 | |
4935 * textmodes/reftex.el (reftex-section-levels): Allow negative levels. | |
4936 (reftex-section-info): Handle negative section levels. | |
4937 (reftex-view-crossref-extra): New option. | |
4938 (reftex-view-crossref): Generalized to work in more places. | |
4939 (reftex-find-citation-regexp-format, reftex-find-reference-format, | |
4940 reftex-macros-with-labels, reftex-global-search-marker): New variables. | |
4941 (reftex-view-cite-locations-from-bibtex): New command. | |
4942 (reftex-view-regexp-match, reftex-global-search, | |
4943 reftex-global-search-continue): New functions. | |
4944 (reftex-extract-bib-entries): No error for non-existing BibTeX | |
4945 file, just a message. | |
4946 (reftex-extract-bib-entries): Better error handling. | |
4947 (reftex-select-with-char): Use `*RefTeX Select*' for selection | |
4948 help and force it on current frame. | |
4949 (reftex-default-bibliography): New function. | |
4950 (reftex-access-parse-file): Check consistency after loading a | |
4951 parse file. When inconsistent, enfore rescan. | |
4952 (reftex-check-parse-consistency): New function. | |
4953 (easy-menu-define): Options section drastically shortened. | |
4954 | |
4955 1999-01-05 Kenichi Handa <handa@etl.go.jp> | |
4956 | |
4957 * language/thai-util.el (thai-compose-string): New function. | |
4958 | |
4959 1999-01-04 Inge Frick <inge@nada.kth.se> | |
4960 | |
4961 * easymenu.el (easy-menu-define): Doc fix. | |
4962 (easy-menu-create-menu): New keyword :included. | |
4963 (easy-menu-do-add-item): New keyword :included. SUFFIX may | |
4964 be an expression, not only a string. Simulate style `button'. | |
4965 Use easy-menu-define-key-intern instead of easy-menu-define-key. | |
4966 (easy-menu-define-key-intern): New function. | |
4967 (easy-menu-add-item): Understand value returned from | |
4968 easy-menu-item-present-p and easy-menu-remove-item. | |
4969 (easy-menu-return-item): New function. | |
4970 (easy-menu-item-present-p, easy-menu-remove-item): Use it. | |
4971 | |
4972 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4973 | |
4974 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): | |
4975 Use rmail-output-read-rmail-file-name to read the file name. | |
4976 Always call rmail-output-to-rmail-file noninteractively. | |
4977 When count > 1, do the loop here. | |
4978 Handle rmail-delete-after-output here. | |
4979 (rmail-summary-output): Similar changes. | |
4980 | |
4981 * mail/rmailout.el: Provide `rmailout'. | |
4982 (rmail-output-read-rmail-file-name): New function. | |
4983 (rmail-output-to-rmail-file): Use that. | |
4984 (rmail-output-read-file-name): New function. | |
4985 (rmail-output): Use that. | |
4986 | |
4987 * files.el (find-file-noselect): Let /: suppress wildcard matching. | |
4988 Error if wildcard matches no files. | |
4989 | |
4990 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu> | |
4991 | |
4992 * menu-bar.el (clipboard-yank): Doc fix. | |
4993 | |
4994 * info.el (Info-insert-dir): Chase symlinks for file-attributes. | |
4995 | |
4996 1998-12-31 Markus Rost <rost@delysid.gnu.org> | |
4997 | |
4998 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo. | |
4999 | |
5000 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk> | |
5001 | |
5002 * rmail.el (rmail-encode-string): Make sure mask value is | |
5003 positive; (emacs-pid) returns a negative number on Windows 9x | |
5004 which causes odd behaviour. | |
5005 | |
5006 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5007 | |
5008 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS, | |
5009 and about w32-* variables unless on Windows/NT. | |
5010 | |
5011 1998-12-31 Boris Goldowsky <boris@alum.mit.edu> | |
5012 | |
5013 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only | |
5014 if buffer is modified; ask about all modified buffers. | |
5015 | |
5016 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5017 | |
5018 * simple.el (what-cursor-position): Fix previous change. | |
5019 | |
5020 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu> | |
5021 | |
5022 * mail/sendmail.el (mail-mode): Eliminate ambiguous match | |
5023 from paragraph-start. | |
5024 | |
5025 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5026 | |
5027 * international/mule-cmds.el (prefer-coding-system): If the | |
5028 argument requires specific EOL conversion type, make the default | |
5029 coding systems use that. | |
5030 | |
5031 1998-12-30 Drew Csillag <drew_csillag@geocities.com> | |
5032 | |
5033 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer): | |
5034 Use shell-command-on-region. | |
5035 (m4-start-m4, m4-end-m4): Functions deleted. | |
5036 | |
5037 1998-12-30 Michael Ernst <mernst@alum.mit.edu> | |
5038 | |
5039 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout. | |
5040 | |
5041 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
5042 | |
5043 * browse-url.el (browse-url-mail): Give argument SEND-ACTION | |
5044 to compose-mail in the correct places and as a list. | |
5045 | |
5046 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp> | |
5047 | |
5048 * page-ext.el: Added mouse-selection feature for pages directory buffer. | |
5049 (pages-directory-map): Bind mouse-2 | |
5050 (pages-copy-header-and-position): Put text property. | |
5051 (pages-directory-goto-with-mouse): New function. | |
5052 | |
5053 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5054 | |
5055 * international/codepage.el (cp-make-coding-systems-for-codepage): | |
5056 Doc fix. | |
5057 (cp-coding-system-for-codepage-1): Likewise. | |
5058 | |
5059 1998-12-29 Kenichi Handa <handa@etl.go.jp> | |
5060 | |
5061 * language/thai-util.el (thai-post-read-conversion): Handle Thai | |
5062 composition sequence correctly here instead of calling | |
5063 thai-compose-region. | |
5064 | |
5065 * textmodes/fill.el (fill-region-as-paragraph): While deleting a | |
5066 newline in multibyte buffer, if previous or next character is a | |
5067 composite char, check the first component of the composite char. | |
5068 | |
5069 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org> | |
5070 | |
5071 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer | |
5072 and track-mouse. | |
5073 | |
5074 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
5075 | |
5076 * mail/sendmail.el (mail-yank-original): Remove text properties | |
5077 after insertion. | |
5078 (mail-yank-region): Barf if no mark is set in the message | |
5079 being replied to. | |
5080 | |
5081 * help.el (function-called-at-point): First look for function at point. | |
5082 | |
5083 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5084 | |
5085 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage. | |
5086 | |
5087 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5088 | |
5089 * simple.el (what-cursor-position): Print character encoding also. | |
5090 | |
5091 1998-12-26 Dave Love <fx@gnu.org> | |
5092 | |
5093 * textmodes/flyspell.el: If local-maps work, don't put | |
5094 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB | |
5095 in flyspell-mouse-map (only). | |
5096 (flyspell-use-local-map): New variable. | |
5097 Use a different mouse-2 binding in that case, | |
5098 and don't add to minor-mode-map-alist. | |
5099 (make-flyspell-overlay, flyspell-correct-word): | |
5100 Test flyspell-use-local-map. | |
5101 | |
5102 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5103 | |
5104 * files.el (file-expand-wildcards): Handle wildcards in directory name. | |
5105 Be careful about whether to return a relative file name, | |
5106 and if so, relative to what directory. | |
5107 | |
5108 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5109 | |
5110 * emacs-lisp/easymenu.el (easy-menu-get-map): | |
5111 Change global map only if this menu exists in the global map already, | |
5112 and not in the local map. | |
5113 (easy-menu-do-add-item): Fix error message. | |
5114 | |
5115 * foldout.el (foldout-inhibit-key-bindings): | |
5116 Avoid concatenating onto outline-minor-mode-prefix. | |
5117 Make a new keymap for that prefix, if it does not already have one. | |
5118 | |
5119 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu> | |
5120 | |
5121 * cperl-mode.el: | |
5122 Can use linear algorithm for indentation if Emacs supports it. | |
5123 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp. | |
5124 (cperl-after-block-p): Likewise. | |
5125 (cperl-after-block-and-statement-beg): Likewise. | |
5126 (cperl-after-block-p): After END/BEGIN we are a block. | |
5127 (cperl-after-expr-p): Skip labels when checking | |
5128 (cperl-indent-region): Make a marker for END - text added/removed. | |
5129 Disable hooks during the call (how to call them later?). | |
5130 Now indents 820-line-long function in 6.5 sec (including | |
5131 syntaxification) the first time (when buffer has few | |
5132 properties), 7.1 sec the second time. | |
5133 (cperl-indent-region): Do not indent whitespace lines | |
5134 (cperl-style-alist) | |
5135 Include `cperl-merge-trailing-else' where the value is clear. | |
5136 (cperl-styles-entries): Likewise. | |
5137 (cperl-problems): Improvements to docs. | |
5138 (cperl-tips): Likewise. | |
5139 (cperl-non-problems): Likewise. | |
5140 (cperl-mode): Make lazy syntaxification possible. | |
5141 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30). | |
5142 `font-lock-unfontify-region-function' was set to a wrong function. | |
5143 | |
5144 (cperl-find-pods-heres): Safe a position in buffer where it is safe to | |
5145 restart syntaxification. Changed so that -d ?foo? is a RE. Do | |
5146 not warn on `=cut' if doing a chunk only. 1 << 6 was OK, | |
5147 but 1<<6 was considered as HERE-doc. | |
5148 <file/glob> made into a string. | |
5149 Postpone addition of faces after syntactic step. | |
5150 Recognition of <FH> was wrong. | |
5151 Highlight `gem' in s///gem as a keyword. `qr' recognized. | |
5152 Knows that split// is null-RE. | |
5153 Highlights separators in 3-parts expressions as labels. | |
5154 <> was considered as a glob. | |
5155 Would err if the last line is `=head1'. | |
5156 $a-1 ? foo : bar; was a considered a regexp. | |
5157 `<< (' was considered a start of HERE-doc. | |
5158 mark qq[]-etc sections as syntax-type=string | |
5159 Was not processing sub protos after a comment ine. | |
5160 Was treating $a++ <= 5 as a glob. | |
5161 Tolerate unfinished REx at end-of-buffer. | |
5162 `unwind-protect' was left commented. | |
5163 / and ? after : start a REx. | |
5164 | |
5165 (cperl-syntaxify-by-font-lock): Set to t, should be safe now. | |
5166 Better default, customizes to `message' too, off in text-mode. | |
5167 | |
5168 (cperl-array-face): Renamed from `font-lock-emphasized-face', | |
5169 `defface'd. | |
5170 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'. | |
5171 `defface'd. | |
5172 (cperl-emacs-can-parse): New state variable. | |
5173 (cperl-indent-line): Corrected to use global state. | |
5174 (cperl-calculate-indent): Likewise. | |
5175 (cperl-fix-line-spacing): Likewise (not used yet). | |
5176 (cperl-calculate-indent): Did not consider `,' as | |
5177 continuation mark for statements. | |
5178 (cperl-calculate-indent): Avoid parse-data optimization at toplevel. | |
5179 Remove another parse-data optimization at toplevel: would | |
5180 indent correctly. | |
5181 Correct for labels when calculating indentation of continuations. | |
5182 Docstring updated. | |
5183 (cperl-choose-color): Converted to a function (to be | |
5184 compilable in text-mode). | |
5185 (cperl-dark-background): Disable without window-system. | |
5186 Do `defface' only if window-system. | |
5187 (cperl-fix-line-spacing): sped up to bail out early. | |
5188 (x-color-defined-p): was not compiling on XEmacs | |
5189 Was defmacro'ed with a tick. Remove another def. | |
5190 (cperl-clobber-lisp-bindings): if set, C-c variants are the old ones | |
5191 (cperl-unwind-to-safe): New function. | |
5192 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position. | |
5193 (cperl-fontify-syntaxically): Unwinds start and end to go out of | |
5194 long strings (not very successful). | |
5195 (cperl-forward-re): Highlight the trailing / in s/foo// as string. | |
5196 Highlight the starting // in s//foo/ as function-name. | |
5197 Emit a meaningful error instead of a cryptic one for an | |
5198 uncomplete REx near end-of-buffer. | |
5199 | |
5200 (cperl-electric-keyword): `qr' recognized. | |
5201 (cperl-electric-else): Likewise | |
5202 (cperl-to-comment-or-eol): Likewise | |
5203 (cperl-make-regexp-x): Likewise | |
5204 (cperl-init-faces): Likewise, and `lock' (as overridable?). | |
5205 Corrected to use new macros; | |
5206 `if' for copying `reference-face' to `constant-face' was backward. | |
5207 remove init `font-lock-other-emphasized-face', | |
5208 `font-lock-emphasized-face', `font-lock-keyword-face'. | |
5209 Interpolate `cperl-invalid-face'. | |
5210 (cperl-make-regexp-x): Misprint in a message. | |
5211 (cperl-syntaxify-unwind): New configuration variable | |
5212 (cperl-fontify-m-as-s): New configuration variable | |
5213 (cperl-electric-pod): check for after-expr was performed | |
5214 inside of POD too. | |
5215 (cperl-backward-to-noncomment): better treatment of PODs and HEREs. | |
5216 (cperl-clobber-mode-lists): New configuration variable. | |
5217 (cperl-not-bad-style-regexp): Updated. | |
5218 Init: `cperl-is-face' was busted. | |
5219 (cperl-make-face): New macros. | |
5220 (cperl-force-face): New macros. | |
5221 (font-lock-other-type-face): Done via `defface' too. | |
5222 (cperl-nonoverridable-face): New face. Renamed from | |
5223 `font-lock-other-type-face'. | |
5224 (cperl-init-faces-weak): use `cperl-force-face'. | |
5225 (cperl-comment-indent): Commenting __END__ was not working. | |
5226 (cperl-indent-for-comment): Likewise. | |
5227 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'. | |
5228 When removing old TAGS info was not relativizing filename. | |
5229 (cperl-tags-hier-init): Gross hack to pretend we work (are we?). | |
5230 Another try to work around XEmacs problems. Better progress messages. | |
5231 (toplevel): require custom unprotected => failure on 19.28. | |
5232 (cperl-xemacs-p): defined when compile too | |
5233 (cperl-find-tags): Was writing line/pos in a wrong order, | |
5234 pos off by 1 and not at beg-of-line. | |
5235 (cperl-etags-snarf-tag): New macro | |
5236 (cperl-etags-goto-tag-location): New macro | |
5237 (cperl-version): New variable. New menu entry | |
5238 random docstrings: References to "future" 20.3 removed. | |
5239 Menu was described as `CPerl' instead of `Perl' | |
5240 (perl-font-lock-keywords): Would not highlight `sub foo($$);'. | |
5241 (cperl-toggle-construct-fix): Was toggling to t instead of 1. | |
5242 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face' | |
5243 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face', | |
5244 `font-lock-reference-face', `font-lock-keyword-face'. | |
5245 Use `eval-after-load'. | |
5246 Remove not-CPerl-related faces. | |
5247 (cperl-tips-faces): New variable and an entry into Mini-docs. | |
5248 (cperl-indent-exp): Was not processing else-blocks. | |
5249 (cperl-get-state): NOP line removed. | |
5250 (cperl-ps-print): New function and menu entry. | |
5251 (cperl-ps-print-face-properties): New configuration variable. | |
5252 (cperl-invalid-face): New configuration variable. | |
5253 (perl-font-lock-keywords): Highlight trailing whitespace | |
5254 (cperl-contract-levels): Documentation corrected. | |
5255 (cperl-contract-level): Likewise. | |
5256 (cperl-ps-extend-face-list): New macro. | |
5257 (cperl-invalid-face): Change to ''underline. | |
5258 | |
5259 1998-12-25 Markus Rost <rost@delysid.gnu.org> | |
5260 | |
5261 * mail/rmailout.el (rmail-output): Abbreviate name of default-file | |
5262 for read-file-name. | |
5263 (rmail-output-to-rmail-file): Likewise. | |
5264 | |
5265 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5266 | |
5267 * emacs-lisp/easymenu.el (easy-menu-get-map): | |
5268 If MENU is nil, use global menu-bar map. | |
5269 (easy-menu-add-item, easy-menu-remove-item): Argument renamed. | |
5270 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed. | |
5271 | |
5272 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
5273 | |
5274 * ps-mule.el (ps-mule-begin-job): Programming uniformization. | |
5275 | |
5276 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
5277 | |
5278 * ps-print.el (ps-print-version): New version number (4.1.3). | |
5279 | |
5280 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5281 | |
5282 * international/mule-cmds.el: Use make-sparse-keymap instead of | |
5283 define-prefix-key when defining MULE menu items. | |
5284 | |
5285 * info.el (Info-node-at-bob-matching): New function. | |
5286 (Info-find-node, Info-build-node-completions): Call it. | |
5287 | |
5288 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org> | |
5289 | |
5290 * help.el (describe-function-1): Say "keymap", not "Lisp macro", | |
5291 when this is an autoloaded keymap. | |
5292 | |
5293 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5294 | |
5295 * international/codepage.el (cp-coding-system-for-codepage-1): | |
5296 Create separate encoders and decoders, for DOS and Unix. Make the | |
5297 usual family of 3 coding systems, so that automatic detection of | |
5298 EOL type works. | |
5299 (cp-make-coding-systems-for-codepage): Don't intern DOS- and | |
5300 Unix-specific symbols here, and don't call | |
5301 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi | |
5302 Handa <handa@etl.go.jp>.) | |
5303 | |
5304 * dos-vars.el (dos-codepage-setup-hook): New defcustom. | |
5305 | |
5306 * term/internal.el (IT-character-translations): New variable, an | |
5307 alist used to display characters for which there's no glyphs in | |
5308 the current codepage. | |
5309 (IT-display-table-setup): New function, sets up the DOS terminal | |
5310 for a given codepage. | |
5311 (dos-codepage-setup): New function, sets up the MULE environment | |
5312 for the current value of dos-codepage. | |
5313 (top-level if): In the multibyte mode, turn on | |
5314 unibyte-display-via-language-environment. In the unibyte mode, | |
5315 set up the special syntax tables to map lower- to upper case and | |
5316 back. | |
5317 | |
5318 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org> | |
5319 | |
5320 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt. | |
5321 (speedbar-frame-plist) Remove useless comments. | |
5322 (speedbar-frame-mode) Do not specify height if it is in the param list. | |
5323 Use default y position w/out changing it. | |
5324 If default x position is a list, keep, calculate the non-list X | |
5325 value when devining an initial position. | |
5326 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files. | |
5327 (speedbar-tag-group-name-minimum-length): New variable. | |
5328 (speedbar-frame-parameter): New compatibility function. | |
5329 (speedbar-frame-mode): Updated to use speedbar-frame-parameter. | |
5330 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub | |
5331 groups to keep things in the right order, and to help with some | |
5332 naming conventions. | |
5333 (speedbar-create-tag-hierarchy): Enable buffer local version of | |
5334 `speedbar-tag-hierarchy-method' in the buffer we are tagging. | |
5335 (speedbar-line-path) Make DEPTH param optional. Devine it if absent. | |
5336 the case, derive it from the cursor location in speedbar. | |
5337 | |
5338 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5339 | |
5340 * international/mule-cmds.el (set-language-environment): On MS-DOS | |
5341 terminals, install DOS-specific nonascii-translation-table if the | |
5342 language info doesn't specify one. Pass the default eol-type to | |
5343 set-language-environment-coding-systems. | |
5344 (set-default-coding-systems): Copy the eol-type property for the | |
5345 new default values of {buffer-file,process}-coding-system from the | |
5346 old defaults. | |
5347 (set-language-environment-coding-systems): Accept an optional | |
5348 argument EOL-TYPE, and set the eol-type property of the default | |
5349 coding systems accordingly. | |
5350 (set-terminal-coding-system): Enable menu item on MS-DOS terminals. | |
5351 (set-keyboard-coding-system): Likewise. | |
5352 (set-default-coding-systems): Don't set | |
5353 default-terminal-coding-system on MS-DOS to anything but nil. | |
5354 (prefer-coding-system): Describe in the doc string that | |
5355 default-terminal-coding-system is not changed on MS-DOS. | |
5356 (set-language-environment): For MS-DOS, set standard syntax table | |
5357 and display table for all characters with code above 127. | |
5358 (standard-display-european-internal): For MS-DOS, pass all | |
5359 characters with code above 127 directly to the terminal, and don't | |
5360 remap characters 160 and 146 in the unibyte case. | |
5361 | |
5362 * international/codepage.el: New file. | |
5363 | |
5364 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
5365 | |
5366 * diary-lib.el (diary-float): Fix end-of-year error and typos in | |
5367 comments. | |
5368 | |
5369 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru> | |
5370 | |
5371 * map-ynp.el (map-y-or-n-p): Ignore input methods. | |
5372 | |
5373 * subr.el (read-passwd): Likewise. | |
5374 | |
5375 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5376 | |
5377 * info.el (Info-find-node): Add 1 to the position read from the | |
5378 tag table. Don't fail if the node delimiter ^_ is the first | |
5379 character in the file. | |
5380 (Info-insert-dir): Don't fail when the node delimiter ^_ is the | |
5381 first character in the file. | |
5382 (Info-read-subfile): Likewise. | |
5383 (Info-select-node): Likewise. | |
5384 (Info-build-node-completions): Likewise. | |
5385 | |
5386 1998-12-16 Richard Stallman <rms@gnu.org> | |
5387 | |
5388 * term/x-win.el (x-cut-buffer-or-selection-value): | |
5389 If clipboard is enabled, try it before PRIMARY selection. | |
5390 | |
5391 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
5392 | |
5393 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C | |
5394 insert c-cedilla and C-cedilla respectively, like in latin-1. | |
5395 | |
5396 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org> | |
5397 | |
5398 * language/hebrew.el: Don't use sublists in the flags argument | |
5399 passed to make-coding-system. | |
5400 | |
5401 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
5402 | |
5403 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a | |
5404 list of character sets found by find-charset-region. | |
5405 | |
5406 * ps-mule.el: Always require ps-print. Move some function | |
5407 definitions for Emacs 20.2 and the earlier to ps-print.el. | |
5408 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2. | |
5409 | |
5410 * ps-print.el: Define several functions for Emacs 20.2 and the | |
5411 earlier version. | |
5412 (ps-printer-name): Check if printer-name is bound. | |
5413 | |
5414 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
5415 | |
5416 * ps-mule.el: Programming uniformization and little code improvement. | |
5417 (ps-mule-prepare-font): Programming uniformization. | |
5418 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar) | |
5419 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement. | |
5420 | |
5421 * ps-bdf.el: Programming uniformization and little code improvement. | |
5422 (bdf-search-and-read): New fun. | |
5423 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path) | |
5424 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box) | |
5425 (bdf-info-relative-compose, bdf-info-baseline-offset) | |
5426 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector) | |
5427 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization. | |
5428 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file) | |
5429 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code | |
5430 improvement. | |
5431 | |
5432 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
5433 | |
5434 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix | |
5435 and mule related code extraction. Autoload ps-mule funs. | |
5436 | |
5437 * ps-mule.el: Doc fix. Require ps-print only when compiled. | |
5438 (ps-mule-prologue-generated): New fun. | |
5439 (ps-mule-plot-string): Add autoload cookie. | |
5440 (ps-mule-begin-job): Call ps-mule-prologue-generated. | |
5441 | |
5442 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
5443 | |
5444 * ps-bdf.el: Require ps-mule instead of ps-print. | |
5445 (bdf-directory-list): Add autoload cookie. | |
5446 | |
5447 * ps-mule.el: New file. Mule related code extracted from | |
5448 ps-print.el. Require ps-print, provide ps-mule. | |
5449 (ps-multibyte-buffer): Add autoload cookie. | |
5450 (ps-mule-prepare-ascii-font): New fun. | |
5451 (ps-mule-set-ascii-font): New fun. | |
5452 (ps-mule-skip-same-charset): Fun deleted. | |
5453 (ps-mule-plot-string): Set ps-mule-current-charset. | |
5454 (ps-mule-initialize): Add autload cookie. Don't set | |
5455 ps-mule-font-info-database here. | |
5456 (ps-mule-begin-job): Renamed from ps-mule-begin. Update | |
5457 ps-mule-font-info-database and ps-control-or-escape-regexp. | |
5458 (ps-mule-begin-page): New fun. | |
5459 | |
5460 * ps-print.el: Mule related code moved to ps-mule.el. | |
5461 (ps-begin-job): While setting ps-control-or-escape-regexp, don't | |
5462 check ps-mule-charset-list. | |
5463 (ps-begin-page): Don't set ps-mule-current-charset, instead call | |
5464 ps-mule-begin-page. | |
5465 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font. | |
5466 (ps-plot-region): Don't set ps-mule-current-charset, instead call | |
5467 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset, | |
5468 instead skip same charsets by itself. | |
5469 (ps-generate): Call ps-mule-initialize of needs-begin-file is | |
5470 non-nil. Call ps-mule-begin-job. | |
5471 | |
5472 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
5473 | |
5474 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf | |
5475 instead of bdf. | |
5476 | |
5477 * ps-print.el (ps-mule-font-info-database): Doc-string modified. | |
5478 (ps-mule-external-libraries): New element FEATURE. | |
5479 (ps-mule-init-external-library): Ajusted for the above change. | |
5480 (ps-mule-generate-font): Likewise. | |
5481 (ps-mule-generate-glyphs): Likewise. | |
5482 (ps-mule-prepare-font): Likewise. | |
5483 (ps-mule-initialize): Likewise. | |
5484 (ps-begin-file): Superfluous tailing parenthesis deleted. | |
5485 | |
5486 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
5487 | |
5488 * international/fontset.el (x-decompose-font-name): If PATTERN | |
5489 doesn't have any wild cards, return a vector made from a name that | |
5490 is found by x-resolve-font-name found. Comments added. | |
5491 | |
5492 * international/mule-cmds.el (find-coding-systems-for-charsets): | |
5493 Handle the case of unknown charset. | |
5494 (find-multibyte-characters): If invalid multibyte characters are | |
5495 found, return the corresponding strings instead of character | |
5496 codes. | |
5497 (find-multibyte-characters): Adjusted for the above change. | |
5498 (select-safe-coding-system): For a unibyte buffer, always returns | |
5499 DEFAULT-CODING-SYSTEM. | |
5500 (get-charset-property): Fix previous change. Make it a function. | |
5501 (put-charset-property): Make it a function. | |
5502 | |
5503 * international/mule.el (make-coding-system): Set mime-charset | |
5504 property of *-with-esc coding system to nil. | |
5505 | |
5506 * international/quail.el (quail-point-in-conversion-region): New | |
5507 function. | |
5508 (quail-conversion-backward-delete-char): When a key sequence is | |
5509 being translated, call quail-delete-last-char. | |
5510 | |
5511 * language/devan-util.el | |
5512 (devanagari-reorder-glyphs-for-decomposition): Fix the way to | |
5513 handle devanagari-decomposition-rules. | |
5514 | |
5515 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org> | |
5516 | |
5517 * textmodes/texinfo.el (texinfo-tex-buffer): Bind | |
5518 tex-start-options-string to empty string. | |
5519 (texinfo-tex-region): Use texinfo-tex-trailer as documented. | |
5520 | |
5521 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org> | |
5522 | |
5523 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and | |
5524 5xx responses are already handled properly). | |
5525 | |
5526 1998-12-13 Richard Stallman <rms@gnu.org> | |
5527 | |
5528 * progmodes/compile.el (compilation-error-regexp-alist): Insist | |
5529 on a non-digit in the file name. | |
5530 | |
5531 * simple.el (comment-region): Handle comment-padding | |
5532 separately for insertion and for deletion, in the right way for each. | |
5533 | |
5534 1998-12-13 Felix Lee <flee@cygnus.com> | |
5535 | |
5536 * progmodes/compile.el (compilation-error-regexp-alist): Fix | |
5537 regexp to match "ChangeLog:1:1998-12-09 ..." | |
5538 | |
5539 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org> | |
5540 | |
5541 * cus-start.el (dos-unsupported-char-glyph): Add. | |
5542 | |
5543 1998-12-11 Dave Love <fx@gnu.org> | |
5544 | |
5545 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap | |
5546 forward-sexp in condition-case. | |
5547 | |
5548 * emacs-lisp/find-func.el (find-function-search-for-symbol): | |
5549 Remove unnecessary test on `library' for explicit file name. | |
5550 Widen scope of save-match-data. | |
5551 | |
5552 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org> | |
5553 | |
5554 * international/mule.el (load-with-code-conversion): If the loaded | |
5555 file was inserted with no-conversion or raw-text coding system, | |
5556 make the buffer unibyte. | |
5557 | |
5558 1998-12-09 Richard Stallman <rms@gnu.org> | |
5559 | |
5560 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): | |
5561 Get rid of nested loops. | |
5562 | |
5563 * mouse.el (mouse-drag-vertical-line): | |
5564 If WHICH-SIDE is not `right', then scroll bars are on the left. | |
5565 | |
5566 * loadhist.el (load-history-loaded): defvar moved to help.el. | |
5567 | |
5568 * help.el (symbol-file-load-history-loaded): Variable renamed, | |
5569 and defvar moved from loadhist.el. | |
5570 (symbol-file): Renamed from describe-function-find-file. | |
5571 Load fns-VERSION.el here. | |
5572 (describe-variable, describe-function-1): Use symbol-file. | |
5573 | |
5574 * textmodes/tex-mode.el (tex-generate-zap-file-name): | |
5575 Don't start the name with #. | |
5576 | |
5577 * ispell.el: Take out the eval-when's. | |
5578 | |
5579 1998-12-09 Peter Breton <pbreton@ne.mediaone.net> | |
5580 | |
5581 * dirtrack.el (dirtrack-directory-change-hook): New hook. | |
5582 (dirtrack): Run it. Make debug message more verbose. | |
5583 | |
5584 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
5585 | |
5586 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct | |
5587 name of the abbrev table, and provide support for XEmacs. | |
5588 (octave-xemacs-p): New variable. | |
5589 | |
5590 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us> | |
5591 | |
5592 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to | |
5593 exit, when mail-interactive is nil. | |
5594 | |
5595 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr> | |
5596 | |
5597 * files.el (after-find-file): Message fix. | |
5598 | |
5599 1998-12-09 Ken Stevens <stevens@kdstevens.com> | |
5600 | |
5601 * ispell.el (ispell-kill-ispell): Don't send newline after EOF. | |
5602 | |
5603 1998-12-09 Geoff Voelker <voelker@cs.washington.edu> | |
5604 | |
5605 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle | |
5606 filenames using backslashes. | |
5607 | |
5608 1998-12-09 Dave Love <fx@gnu.org> | |
5609 | |
5610 * browse-url.el (browse-url-mail): Call compose-mail-other-window | |
5611 with correct number of args. | |
5612 (browse-url-maybe-new-window): New arg. Callers changed. | |
5613 | |
5614 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing | |
5615 comment. | |
5616 | |
5617 1998-12-08 Geoff Voelker <voelker@cs.washington.edu> | |
5618 | |
5619 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional. | |
5620 | |
5621 1998-12-08 Markus Rost <rost@delysid.gnu.org> | |
5622 | |
5623 * vc.el (vc-rcs-release): Fix Type. | |
5624 (vc-sccs-release): Fix Type. | |
5625 (vc-cvs-release): Fix Type. | |
5626 | |
5627 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix | |
5628 arg work right. | |
5629 | |
5630 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple | |
5631 output of last undeleted message. | |
5632 | |
5633 1998-12-07 Geoff Voelker <voelker@cs.washington.edu> | |
5634 | |
5635 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src. | |
5636 (buffer-undo-list) [windows-nt]: Use different relative path. | |
5637 | |
5638 1998-12-07 Simon Marshall <simon@gnu.org> | |
5639 | |
5640 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types. | |
5641 | |
5642 1998-12-05 Markus Rost <rost@delysid.gnu.org> | |
5643 | |
5644 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler. | |
5645 | |
5646 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops. | |
5647 | |
5648 1998-12-04 Markus Rost <rost@delysid.gnu.org> | |
5649 | |
5650 * info.el (Info-menu): Don't return error if point is between menu | |
5651 header and first menu item. | |
5652 | |
5653 1998-12-04 Dave Love <fx@gnu.org> | |
5654 | |
5655 * help.el (describe-function-1): Fix description for alias. | |
5656 | |
5657 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org> | |
5658 | |
5659 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*- | |
5660 specifications from summary line. | |
5661 | |
5662 * rect.el (delete-whitespace-rectangle): Mark for autoload. | |
5663 (close-rectangle): Define alias only once in loaddefs.el. | |
5664 | |
5665 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org> | |
5666 | |
5667 * term/internal.el: Remove code which sets up a special syntax | |
5668 table for non-ASCII characters. | |
5669 | |
5670 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org> | |
5671 | |
5672 * dos-w32.el (direct-print-region-function): Try to ensure that | |
5673 printer-name is expanded to a file name on a local drive; | |
5674 sometimes printing a file loaded from a network volume fails. | |
5675 (direct-print-region-function): Add a function to | |
5676 write-region-annotate-functions to append a formfeed character to | |
5677 the region being printed, if the region doesn't end with a | |
5678 formfeed already. This avoids creating a second print job | |
5679 containing a blank page when print spooling is enabled on Windows. | |
5680 | |
5681 1998-12-02 Dave Love <fx@gnu.org> | |
5682 | |
5683 * help.el (help-make-xrefs): Use `info', not the non-autoloaded | |
5684 `Info-goto-node'. | |
5685 | |
5686 1998-12-02 Richard Stallman <rms@gnu.org> | |
5687 | |
5688 * help.el (temp-buffer-resize-mode): Doc fix. | |
5689 | |
5690 * cus-edit.el (custom-save-delete): Save point before | |
5691 reading a sexp, rather than backing up. | |
5692 | |
5693 * international/iso-transl.el: Fix previous change. | |
5694 | |
5695 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
5696 | |
5697 * vc.el (vc-dired-window-configuration, vc-ediff-windows, | |
5698 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode): | |
5699 Added defvars to suppress compilation warnings. | |
5700 | |
5701 1998-11-30 Ken Stevens <k.stevens@ieee.org> | |
5702 | |
5703 * ispell.el: Improved and fixed customize for variables: | |
5704 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp, | |
5705 ispell-dictionary-alist, ispell-skip-sgml. | |
5706 Improved and fixed comments in variables and messages for | |
5707 functions: ispell-help-in-bufferp, ispell-local-dictionary, | |
5708 ispell-menu-map, ispell-checking-message, ispell-parser, | |
5709 ispell-word, lookup-words, ispell-change-dictionary, ispell-region, | |
5710 ispell-begin-tex-skip-regexp, ispell-begin-skip-region, | |
5711 ispell-comments-and-strings, ispell-continue, ispell-complete-word, | |
5712 ispell-message-text-end, ispell-add-per-file-word-list. | |
5713 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding | |
5714 system is now required for all languages. Casechars improved for | |
5715 castellano, castellano8, and norsk dictionaries. Dictionary | |
5716 norsk7-tex added. Dictionary polish added. | |
5717 (ispell-dictionary-alist): Redefined at load-time to support | |
5718 dictionary changes. | |
5719 (ispell-menu-map): Redefined at load-time to support menu changes. | |
5720 (ispell-check-version): New alias for `check-ispell-version'. | |
5721 (ispell-parse-output): Fixed matching for ispell error messages. | |
5722 Correctly returns spelling suggestions in order generated by ispell | |
5723 process. | |
5724 (check-ispell-version): Ensure `case-fold-search' doesn't get | |
5725 redefined. | |
5726 (ispell-complete-word): Ensure `case-fold-search' doesn't get | |
5727 redefined. Fix bug that didn't respect case of word being completed. | |
5728 (ispell-init-process): Set process coding system to be compatible | |
5729 with emacs processes and the ispell process. | |
5730 (ispell-kill-ispell): Ensures ispell process has terminated before | |
5731 starting new process. This can otherwise confuse process filters | |
5732 and hang the ispell process. | |
5733 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved | |
5734 skipping support for sgml. | |
5735 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r | |
5736 which could cause `ispell-complete-word' to hang. | |
5737 (ispell-message): Improved message reference matching. Ensure | |
5738 `case-fold-search' doesn't get redefined. | |
5739 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't | |
5740 get redefined. Fixed bug in returning to nroff mode from tex mode. | |
5741 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't | |
5742 get redefined. | |
5743 | |
5744 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5745 | |
5746 * textmodes/flyspell.el (flyspell-check-word-p): | |
5747 Don't delay inside a kbd macro. | |
5748 | |
5749 * subr.el (make-local-hook): Return the hook variable. | |
5750 | |
5751 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
5752 | |
5753 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe): | |
5754 Use a timer instead of post-command-hook. | |
5755 (hscroll-timer): New variable. | |
5756 | |
5757 1998-11-30 Dave Love <fx@gnu.org> | |
5758 | |
5759 * help.el (help-xref-button): Do nothing if text already has the | |
5760 help-xref property. | |
5761 (describe-variable): Revert previous change to hyperlink to source. | |
5762 | |
5763 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5764 | |
5765 * bindings.el (features): Add `base64' to this list. | |
5766 | |
5767 * loadhist.el (symbol-file): Doc fix. | |
5768 | |
5769 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src. | |
5770 | |
5771 * files.el (hack-one-local-variable): Cope with non-file buffers. | |
5772 | |
5773 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5774 | |
5775 * help.el (describe-mode): Put major mode first. | |
5776 | |
5777 * calendar/appt.el (appt-disp-window): Use pop-to-buffer, | |
5778 to support special-display and same-window features. | |
5779 | |
5780 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5781 | |
5782 * simple.el (transpose-subr, transpose-subr-1): Rename variables | |
5783 bound in one function and used in the other. | |
5784 (transpose-subr-start1, transpose-subr-start2): Add defvars. | |
5785 (transpose-subr-end1, transpose-subr-end2): Add defvars. | |
5786 | |
5787 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5788 | |
5789 * autoinsert.el (auto-insert-alist): Use user-mail-address. | |
5790 | |
5791 1998-11-26 Kenichi Handa <handa@etl.go.jp> | |
5792 | |
5793 * international/ccl.el (ccl-dump-translate-character-const-tbl): | |
5794 Give format correct control string. | |
5795 | |
5796 * international/mule.el (define-translation-table): Fix bug of | |
5797 setting incorrect translation-table-id. If the first element of | |
5798 ARGS is a translation table, just register it. | |
5799 | |
5800 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist | |
5801 property. | |
5802 | |
5803 1998-11-24 Michael Ernst <mernst@alum.mit.edu> | |
5804 | |
5805 * thingatpt.el (thing-at-point-url-at-point): Don't use current | |
5806 syntax table to determine what is whitespace. | |
5807 | |
5808 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5809 | |
5810 * frame.el (frame-parameter): Doc fix. | |
5811 | |
5812 * textmodes/tex-mode.el (tex-feed-input): New function. | |
5813 (tex-define-common-keys): Add binding for C-c C-m. | |
5814 | |
5815 1998-11-23 Dave Love <fx@gnu.org> | |
5816 | |
5817 * progmodes/fortran.el: Various minor doc fixes. | |
5818 (fortran-font-lock-keywords-1): Add `d' to comment-chars. | |
5819 (fortran-with-subprogram-narrowing): New macro. | |
5820 (fortran-check-for-matching-do): Use it. | |
5821 (fortran-end-do): Use fortran-check-end-prog-re. | |
5822 (fortran-beginning-do, fortran-end-if, fortran-beginning-if) | |
5823 (fortran-calculate-indent, fortran-calculate-indent): Likewise. | |
5824 | |
5825 1998-11-23 Simon Marshall <simon@gnu.org> | |
5826 | |
5827 * font-lock.el (font-lock-defaults): Doc fix. | |
5828 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message. | |
5829 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword. | |
5830 | |
5831 * lazy-lock.el (lazy-lock-unstall): | |
5832 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message. | |
5833 | |
5834 * fast-lock.el (fast-lock-save-cache-1): | |
5835 (fast-lock-cache-data): Rewritten to use with-temp-message. | |
5836 | |
5837 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org> | |
5838 | |
5839 * mail/rmail.el (rmail-set-message-counters-counter): Detect | |
5840 messages that have been added with DOS line endings and convert | |
5841 the line endings for such messages. | |
5842 | |
5843 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
5844 | |
5845 * help.el: Add resizing of temporary buffers. | |
5846 (temp-buffer-resize-mode): New command and variable. | |
5847 (temp-buffer-max-height): New variable. | |
5848 (resize-temp-buffer-window): New function. | |
5849 | |
5850 * window.el (window-buffer-height): New function, split from | |
5851 shrink-window-if-larger-than-buffer. | |
5852 (shrink-window-if-larger-than-buffer): Use window-buffer-height. | |
5853 | |
5854 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5855 | |
5856 * frame.el (initial-frame-alist): Add defcustom. | |
5857 | |
5858 * shell.el (shell-prompt-pattern): Add defcustom. | |
5859 | |
5860 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
5861 | |
5862 * message.el (message-ignored-supersedes-headers): Remove | |
5863 NNTP-Posting-Date. | |
5864 | |
5865 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5866 | |
5867 * help.el (describe-mode): Don't avoid loop indirecting thru | |
5868 value of INDICATOR. | |
5869 | |
5870 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5871 | |
5872 * help.el (describe-variable): Allow any variable with a defcustom, | |
5873 even if it is not a user variable. | |
5874 | |
5875 * mail/rmail.el (mail-unsent-separator): Additional alternative. | |
5876 | |
5877 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org> | |
5878 | |
5879 * gnus/nntp.el (nntp-request-group): Allow for failures when | |
5880 requesting a new group. | |
5881 | |
5882 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5883 | |
5884 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix. | |
5885 | |
5886 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
5887 | |
5888 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons. | |
5889 | |
5890 1998-11-19 Simon Marshall <simon@gnu.org> | |
5891 | |
5892 * subr.el (with-temp-message): New macro. | |
5893 | |
5894 * emacs-lisp/lisp-mode.el (with-temp-message): | |
5895 Add lisp-indent-function property. | |
5896 | |
5897 1998-11-18 Dave Love <fx@gnu.org> | |
5898 | |
5899 * progmodes/fortran.el (fortran-end-prog-re): Fix typo. | |
5900 | |
5901 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu> | |
5902 | |
5903 * emacs-lisp/bytecomp.el (temp-buffer-show-hook): | |
5904 This is not obsolete. | |
5905 | |
5906 1998-11-18 Kenichi Handa <handa@etl.go.jp> | |
5907 | |
5908 * textmodes/picture.el: Make a new map by make-keymap. | |
5909 (picture-desired-column): New variable. | |
5910 (picture-update-desired-column): New function. | |
5911 (picture-beginning-of-line): Set picture-desired-column to 0. | |
5912 (picture-end-of-line): Set picture-desired-column to the current | |
5913 column. | |
5914 (picture-forward-column): Pay attention to multi-column character. | |
5915 (picture-backward-column): Likewise. | |
5916 (picture-move-down): Likewise. | |
5917 (picture-move-up): Likewise. | |
5918 (picture-movement-nw): With prefix arg, move twice columns. | |
5919 (picture-movement-ne): Likewise. | |
5920 (picture-movement-sw): Likewise. | |
5921 (picture-movement-se): Likewise. | |
5922 (picture-set-motion): Handle two-column movements. | |
5923 (picture-move): Call picture-move-down or picture-forward-column | |
5924 only when necessary. | |
5925 (picture-insert): Pay attention to picture-desired-column. | |
5926 (picture-self-insert): Likewise. | |
5927 (picture-clear-column): Pay attention to multi-column character. | |
5928 (picture-mode): Modify doc-string for two-column movement. | |
5929 | |
5930 * rect.el (move-to-column-force): New function. | |
5931 (operate-on-rectangle): If coerce-tabs is non-nil, call | |
5932 move-to-column-force instead of move-to-column. | |
5933 (insert-rectangle): Call move-to-column-force instead of | |
5934 move-to-column. | |
5935 (open-rectangle-line): If begextra is not zero, call | |
5936 move-to-column-force. | |
5937 | |
5938 | |
5939 1998-11-16 Dave Love <fx@gnu.org> | |
5940 | |
5941 * textmodes/sgml-mode.el Require skeleton when compiling. | |
5942 (sgml-font-lock-keywords-1): Accept single-letter tags. | |
5943 (v2): Defvar free variable. | |
5944 | |
5945 1998-11-16 Sam Steingold <sds@goems.com> | |
5946 | |
5947 * emacs-lisp/cl-indent.el: indent `with-output-to-string' as a CL | |
5948 macro, not ELisp one. | |
5949 | |
5950 1998-11-16 Kenichi Handa <handa@etl.go.jp> | |
5951 | |
5952 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte | |
5953 characters to symbol. | |
5954 | |
5955 * language/japan-util.el (japanese-zenkaku-region): New optional | |
5956 arg KATAKANA-ONLY. | |
5957 | |
5958 1998-11-16 Kenichi Handa <handa@etl.go.jp> | |
5959 | |
5960 * international/mule.el | |
5961 (after-insert-file-set-buffer-file-coding-system): If the buffer | |
5962 is changed to unibyte, return inserted bytes. | |
5963 | |
5964 * tar-mode.el (tar-header-block-tokenize): Decode codes of file | |
5965 and link names if necessary. | |
5966 (tar-header-block-summarize): Handle the case that file or link | |
5967 names are multibyte. | |
5968 (tar-summarize-buffer): At first set the current buffer unibyte, | |
5969 then if there are multibyte file names, change it to multibyte. | |
5970 (tar-mode): Get char position from tar-header-offset. | |
5971 (tar-extract): Avoid multibyte<->unibyte conversion in | |
5972 insert-buffer-subsring by setting both buffers unibyte | |
5973 temporarily. | |
5974 (tar-copy): Set the buffer unibyte while doing a work. Write | |
5975 without code conversion. | |
5976 (tar-expunge): Set the buffer unibyte while doing a work. | |
5977 (tar-alter-one-field): Likewise. | |
5978 (tar-clear-modification-flags): Compare byte position with | |
5979 tar-header-offset. | |
5980 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in | |
5981 insert-buffer-subsring by setting both buffers unibyte | |
5982 temporarily. Pay attention to multibyteness while updating the | |
5983 descriptor-line. | |
5984 (tar-mode-write-file): Write without code conversion. | |
5985 | |
5986 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
5987 | |
5988 * nngateway.el: Require cl. | |
5989 | |
5990 1998-11-15 Dave Love <fx@gnu.org> | |
5991 | |
5992 * progmodes/fortran.el: Fix previous change: | |
5993 (fortran-end-prog-re1): Changed. | |
5994 (fortran-check-end-prog-re): New function. | |
5995 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it. | |
5996 | |
5997 1998-11-13 Tom Breton <tob@world.std.com> | |
5998 | |
5999 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of | |
6000 GNU Emacs. | |
6001 | |
6002 1998-11-13 Carsten Dominik <cd@delysid.gnu.org> | |
6003 | |
6004 * textmodes/reftex.el: (reftex-finding-files): Group documentation | |
6005 fixed. | |
6006 (reftex-toc-toggle-file-boundary, | |
6007 reftex-toc-toggle-labels, | |
6008 reftex-toc-toggle-context,reftex-find-start-point): New functions. | |
6009 (reftex-toc-include-labels, reftex-toc-include-context, | |
6010 reftex-toc-include-file-boundaries, | |
6011 reftex-toc-keep-other-windows): New options. | |
6012 (reftex-use-text-after-label-as-context): Option removed. | |
6013 (reftex-extract-bib-entries): Protect use in non-latex | |
6014 buffers. | |
6015 (reftex-toc-visit-location): Renamed from | |
6016 `reftex-toc-visit-line'. | |
6017 (reftex-latin1-to-ascii): Works now with and without Mule. | |
6018 (reftex-truncate): Removed special stuff for Emacs 20.2. | |
6019 (reftex-get-offset): Made more general. | |
6020 (reftex-show-label-location): Renamed from | |
6021 `reftex-select-label-callback'. | |
6022 (reftex-pop-to-label): Function removed (using | |
6023 `reftex-show-label-location' instead. | |
6024 (reftex-insert-docstruct): Renamed from | |
6025 `reftex-make-and-insert-label-list'. Function args changed. | |
6026 (reftex-toc): Now uses `reftex-insert-docstruct' and | |
6027 `reftex-find-start-point'. | |
6028 (reftex-select-item): Use `reftex-find-start-point'. | |
6029 (reftex-toc-visit-line): Can display labels and file | |
6030 boundaries. | |
6031 (reftex-TeX-master-file): `(TeX-master-file)' protected. | |
6032 | |
6033 1998-11-12 Sam Steingold <sds@goems.com> | |
6034 | |
6035 * browse-url.el (browse-url): Handle the case when | |
6036 `browse-url-browser-function' is a lambda list. | |
6037 | |
6038 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org> | |
6039 | |
6040 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the | |
6041 version string. | |
6042 * loadhist.el (symbol-file): Likewise | |
6043 | |
6044 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM> | |
6045 | |
6046 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling. | |
6047 | |
6048 1998-11-11 Sam Steingold <sds@goems.com> | |
6049 | |
6050 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call | |
6051 `run-lisp' instead of signalling an error. | |
6052 | |
6053 1998-11-11 Karl Heuer <kwzh@gnu.org> | |
6054 | |
6055 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change. | |
6056 | |
6057 1998-11-11 Richard Stallman <rms@gnu.org> | |
6058 | |
6059 * vc-hooks.el (vc-toggle-read-only): Doc fix. | |
6060 | |
6061 1998-11-11 Per Starback <starback@update.uu.se> | |
6062 | |
6063 * ispell.el: (ispell-dictionary-alist-2): Removed svenska, | |
6064 renamed svenska8 to svenska, and fixed and extended CASECHARS | |
6065 for it. | |
6066 | |
6067 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org> | |
6068 | |
6069 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode | |
6070 handling if setpagedevice is not available. | |
6071 (ps-begin-file): Fix typo. | |
6072 | |
6073 1998-11-11 Kenichi Handa <handa@etl.go.jp> | |
6074 | |
6075 * international/mule-util.el (compose-chars-component): Signal | |
6076 error if CH is a rule-based composition character. | |
6077 (compose-chars): Signal error if an already compsed character is | |
6078 going to be composed by rule-base. | |
6079 | |
6080 * term/x-win.el: If a resolved ASCII font name doesn't conform to | |
6081 full XLFD, don't try to get information of WEIGHT and SLANT from | |
6082 that font name. | |
6083 | |
6084 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk> | |
6085 | |
6086 * dos-w32.el (set-default-process-coding-system): Use function on | |
6087 before-init-hook to set default-process-coding-system based on | |
6088 enable-multibyte-characters. | |
6089 | |
6090 * term/w32-win.el ([language-change]): For now ignore | |
6091 keyboard language-change events. | |
6092 | |
6093 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org> | |
6094 | |
6095 * ediff-util.el (ediff-make-temp-file): Run the prefix through | |
6096 convert-standard-file-name, but leave the results of | |
6097 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2 | |
6098 characters if the original name already exists, or has a special | |
6099 handler. | |
6100 | |
6101 1998-11-10 Karl Heuer <kwzh@gnu.org> | |
6102 | |
6103 * international/iso-insert.el: Delete autoload cookies. | |
6104 | |
6105 * international/iso-transl.el: Add autoload cookies. | |
6106 | |
6107 1998-11-10 Richard Stallman <rms@gnu.org> | |
6108 | |
6109 * ispell.el (ispell-get-coding-system): Default to iso-latin-1. | |
6110 (ispell-process-line): Don't treat multibyte | |
6111 | |
6112 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk> | |
6113 | |
6114 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call | |
6115 setpagedevice to specify the page size if setpagedevice is | |
6116 available. This is necessary to select the correct paper tray on | |
6117 Level 2 printers with multiple paper sizes available. | |
6118 | |
6119 (ps-begin-file): Cope with font names that contain spaces, and | |
6120 call BeginDoc in a BeginSetup/EndSetup block. | |
6121 | |
6122 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org> | |
6123 | |
6124 * loadup.el (buffer-undo-list): Run fns-VERSION.el through | |
6125 convert-standard-filename. | |
6126 | |
6127 * loadhist.el (symbol-file): Run fns-VERSION.el through | |
6128 convert-standard-filename. | |
6129 | |
6130 1998-11-06 Richard Stallman <rms@gnu.org> | |
6131 | |
6132 * textmodes/texinfmt.el (texinfo-format-scan): | |
6133 Detect the case of two @-commands in a row; process just the first. | |
6134 (texinfo-append-refill): If line has a @c, insert the @refill | |
6135 before it. | |
6136 (texinfo-format-refill): Return with point where the @refill was. | |
6137 | |
6138 * files.el (hack-local-variables): Test local-enable-local-variables. | |
6139 (hack-local-variables-prop-line): Likewise. | |
6140 (set-auto-mode): Don't test local-enable-local-variables here. | |
6141 (enable-local-variables): Doc fix. | |
6142 (local-enable-local-variables): Doc fix. | |
6143 (normal-mode): Doc fix. | |
6144 | |
6145 1998-11-06 Karl Heuer <kwzh@gnu.org> | |
6146 | |
6147 * emacs-lisp/find-func.el (find-variable-noselect): Autoload. | |
6148 | |
6149 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM> | |
6150 | |
6151 * simple.el (line-number-mode): Doc fix. | |
6152 | |
6153 1998-11-06 Kenichi Handa <handa@etl.go.jp> | |
6154 | |
6155 * international/fontset.el (create-fontset-from-fontset-spec): | |
6156 Give correct arg to `error'. | |
6157 | |
6158 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org> | |
6159 | |
6160 * textmodes/sgml-mode.el (html-mode): Doc fix. | |
6161 (sgml-name-8bit-mode): Fix missing format character in message string. | |
6162 | |
6163 1998-11-05 Karl Heuer <kwzh@gnu.org> | |
6164 | |
6165 * mail/sendmail.el (sendmail-send-it): Check for failure. | |
6166 | |
6167 1998-11-05 Richard Stallman <rms@gnu.org> | |
6168 | |
6169 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6. | |
6170 | |
6171 * rect.el (delete-whitespace-rectangle): close-rectangle renamed. | |
6172 (close-rectangle): Define as alias. | |
6173 | |
6174 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu> | |
6175 | |
6176 * textmodes/tex-mode.el (tex-start-shell): Track directory changes. | |
6177 | |
6178 1998-11-05 Dave Love <fx@gnu.org> | |
6179 | |
6180 * help.el (describe-variable): Don't quote link to source. | |
6181 | |
6182 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu> | |
6183 | |
6184 * gud.el (gud-common-init): Use pop-to-buffer. | |
6185 (same-window-regexps): Add an element that matches all gud buffers. | |
6186 | |
6187 1998-11-04 Jason Rumney <jasonr@altavista.net> | |
6188 | |
6189 * term/w32-win.el (x-get-selection-value): Alias to | |
6190 x-cut-buffer-or-selection-value. | |
6191 (w32-standard-fontset-spec): New variable. | |
6192 (w32-create-initial-fontsets, mouse-set-font): Check whether | |
6193 new-fontset is available. | |
6194 (w32-use-w32-font-dialog): Enable use of set-variable. | |
6195 | |
6196 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
6197 | |
6198 * vc.el (with-vc-file, edit-vc-file): New macros. | |
6199 | |
6200 1998-11-04 Kenichi Handa <handa@etl.go.jp> | |
6201 | |
6202 * international/quail.el (quail-show-guidance-buf): Call | |
6203 set-minibuffer-window to set minibuffer window of the current | |
6204 frame correctly. | |
6205 | |
6206 1998-11-03 Theodore Jump <tjump@tertius.com> | |
6207 | |
6208 * term/w32-win.el: Require fontset. | |
6209 | |
6210 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org> | |
6211 | |
6212 * faces.el (set-face-font): Call resolve-fontset-name on w32. | |
6213 (set-face-font-auto): Ditto. | |
6214 | |
6215 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org> | |
6216 | |
6217 * mouse.el (mouse-drag-region): Fix typo. | |
6218 | |
6219 1998-11-02 Dave Love <fx@gnu.org> | |
6220 | |
6221 * progmodes/fortran.el Fix for fontification of strings lost somehow: | |
6222 (fortran-fontify-string): New function. | |
6223 (fortran-font-lock-keywords-1): Use it. | |
6224 | |
6225 1998-11-02 Markus Rost <rost@delysid.gnu.org> | |
6226 | |
6227 * comint.el (comint-file-name-quote-list): Doc fix. | |
6228 | |
6229 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6230 | |
6231 * loadup.el (buffer-undo-list): Write fns-VERSION.el into | |
6232 build directory, not source directory. | |
6233 | |
6234 * mouse.el (mouse-drag-region): Fake up a mouse-motion event | |
6235 if we did not get one for the final move. | |
6236 | |
6237 1998-11-01 Dave Love <fx@gnu.org> | |
6238 | |
6239 * goto-addr.el (goto-address-at-point, goto-address-at-mouse): | |
6240 Don't funcall browse-url-browser-function. | |
6241 | |
6242 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url): | |
6243 Don't funcall browse-url-browser-function. | |
6244 | |
6245 * fortran.el (fortran-end-prog-re1): Fix the regexp. | |
6246 | |
6247 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6248 | |
6249 * files.el (revert-buffer): Doc fix. | |
6250 | |
6251 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6252 | |
6253 * textmodes/tex-mode.el (tex-start-options-string): | |
6254 Quote the backslashes with more backslashes. | |
6255 | |
6256 1998-10-31 Dave Love <fx@gnu.org> | |
6257 | |
6258 * webjump.el (webjump-sample-sites): Fix Lisp archive site. | |
6259 (webjump): Don't funcall browse-url-browser-function. | |
6260 | |
6261 1998-10-30 Kenichi Handa <handa@etl.go.jp> | |
6262 | |
6263 * international/quail.el (quail-start-translation): Handle | |
6264 switching of the frame in read-key-sequence. | |
6265 (quail-start-conversion): Likewise. | |
6266 (quail-show-guidance-buf): Detach quail-guidance-buf from any | |
6267 windows before setting an appropriate window for it. | |
6268 (quail-hide-guidance-buf): Use window-minibuffer-p. Set | |
6269 quail-guidance-win to nil. | |
6270 (quail-update-guidance): If quail-guidance-buf is not in the | |
6271 selected frame, call quail-show-guidance-buf again. | |
6272 | |
6273 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no> | |
6274 | |
6275 * progmodes/pascal.el (pascal-mode): | |
6276 `blink-matching-paren-dont-ignore-comments' set to t. | |
6277 | |
6278 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
6279 | |
6280 * calendar/cal-menu.el (cal-menu-update): Fix menu wording. | |
6281 | |
6282 1998-10-30 Dave Love <fx@gnu.org> | |
6283 | |
6284 * vc.el (vc-backend-merge-news): Check for "P" output. | |
6285 | |
6286 * help.el (describe-variable): Hyperlink the definition. | |
6287 | |
6288 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org> | |
6289 | |
6290 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp. | |
6291 (sh-set-shell): Likewise. | |
6292 | |
6293 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected. | |
6294 | |
6295 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type. | |
6296 (edebug-on-error): Fix customize type to match that of | |
6297 debug-on-error. | |
6298 | |
6299 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type. | |
6300 | |
6301 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use | |
6302 report-emacs-bug-address instead of undefined bug-gnu-emacs. | |
6303 | |
6304 * international/mule-cmds.el (select-message-coding-system): Doc | |
6305 fix. | |
6306 | |
6307 * international/mule-diag.el (describe-coding-system): Describe | |
6308 all flags. | |
6309 | |
6310 * mail/sendmail.el (sendmail-coding-system, | |
6311 default-sendmail-coding-system): Doc fix. | |
6312 | |
6313 * simple.el (shell-command-on-region): Doc fix. | |
6314 | |
6315 * loadup.el: Write fns-*.el in current directory instead of | |
6316 data-directory since no installation directory exists yet. Mark | |
6317 buffer unmodified afterwards. | |
6318 | |
6319 * loadhist.el (symbol-file): Load fns-*.el from exec-directory | |
6320 instead of data-directory since it is architecture dependent. | |
6321 (load-history-loaded): Update doc string. | |
6322 | |
6323 1998-10-29 Geoff Voelker <voelker@cs.washington.edu> | |
6324 | |
6325 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC | |
6326 path as a default directory when canonicalizing names. | |
6327 | |
6328 * w32-fns.el: Remove a dangling reference to a directory on the | |
6329 build machine. | |
6330 | |
6331 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6332 | |
6333 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and | |
6334 namespace related keywords such as `class', `body', `private', | |
6335 `variable', `namespace eval', etc. | |
6336 (tcl-imenu-generic-expression): Handle itcl body and class definitions. | |
6337 (tcl-mode): Added ":" as a word constituent to the syntax-alist of | |
6338 imenu and font-lock so that searches for \sw would find words | |
6339 containing colons. | |
6340 | |
6341 * progmodes/etags.el (initialize-new-tags-table): | |
6342 Do not alter find-tag-marker-ring and tags-location-ring. | |
6343 | |
6344 1998-10-27 Geoff Voelker <voelker@cs.washington.edu> | |
6345 | |
6346 * term/w32-win.el: Require fontset. | |
6347 (w32-init-fontsets): New function (code from x-win.el). | |
6348 | |
6349 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
6350 | |
6351 * cal-x.el (diary-frame-parameters, calendar-frame-parameters, | |
6352 calendar-and-diary-frame-parameters): Add title parameter. | |
6353 | |
6354 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6355 | |
6356 * completion.el (dynamic-completion-mode): New function to enable | |
6357 the mode. (Just loading the file now does not change anything.) | |
6358 | |
6359 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
6360 | |
6361 * ps-print.el: User option for multibyte buffer handling and doc fix. | |
6362 (ps-multibyte-buffer): New user option. | |
6363 (ps-setup): Print new user option. | |
6364 (ps-print-quote): New fun. | |
6365 (ps-color-p, ps-mule-font-info-database-latin): New var. | |
6366 (ps-default-color, ps-mule-font-info-database) | |
6367 (ps-mule-font-info-database-ps-bdf): Adjust initialization. | |
6368 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file) | |
6369 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate): | |
6370 Little code improvement. | |
6371 (ps-mule-initialize): Initialize ps-mule-font-info-database. | |
6372 (ps-print-prologue-header, ps-font-family, ps-font-size) | |
6373 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size) | |
6374 (ps-build-face-reference, ps-mule-font-info-database-bdf) | |
6375 (ps-mule-external-libraries, ps-mule-init-external-library) | |
6376 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string): | |
6377 Doc fix. | |
6378 (ps-print-version): New version number (4.1.1) and doc fix. | |
6379 (ps-print-prologue-header): New user option. | |
6380 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter): | |
6381 Conditional compilation for GNU Emacs and emacsens. | |
6382 (ps-generate-postscript-with-faces): Skip invisible text better. | |
6383 (ps-setup): Print new user option. | |
6384 (ps-print-preprint): Check if input file name exists and is unwritable. | |
6385 (ps-begin-file): Adjust PostScript prologue header for duplex printers | |
6386 and insert user PostScript prologue header comments. | |
6387 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding): | |
6388 New funs. | |
6389 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated. | |
6390 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue): | |
6391 PostScript programming normalization. | |
6392 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font) | |
6393 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string) | |
6394 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar) | |
6395 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font) | |
6396 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool): | |
6397 Programming style normalization. | |
6398 | |
6399 1998-10-26 Kenichi Handa <handa@etl.go.jp> | |
6400 | |
6401 * ps-print.el: To make it work also on Emacs 20.2 and the earlier | |
6402 version, check the value of mule-version. | |
6403 | |
6404 * international/mule-util.el (compose-region): Insert then delete | |
6405 to preserve markers. | |
6406 (decompose-region): Use search-forward for efficiency. | |
6407 | |
6408 * language/chinese.el (pre-write-encode-hz): Cancel previous | |
6409 change, use generate-new-buffer instead of get-buffer-create. | |
6410 * language/devan-util.el | |
6411 (in-is13194-devanagari-pre-write-conversion): Likewise. | |
6412 * language/thai-util.el (thai-pre-write-conversion): Likewise. | |
6413 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise. | |
6414 * language/viet-util.el (viqr-pre-write-conversion): Likewise. | |
6415 | |
6416 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6417 | |
6418 * mail/rmailsum.el (rmail-message-subject-p): | |
6419 Handle message whose header has not been reformatted. | |
6420 | |
6421 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir. | |
6422 | |
6423 1998-10-25 Jason Rumney <jasonr@altavista.net> | |
6424 | |
6425 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist): | |
6426 New variables. | |
6427 (mouse-set-font): Use font menus instead of dialog according to | |
6428 w32-use-w32-font-dialog. | |
6429 | |
6430 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
6431 | |
6432 * calendar/calendar.el (calendar-day-name-array): Add doc string | |
6433 correctly! | |
6434 (calendar-month-name-array): Add doc string correctly! | |
6435 | |
6436 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6437 | |
6438 * net-utils.el (whois-get-tld): Rewrite not to use `do'. | |
6439 | |
6440 1998-10-21 Markus Rost <rost@delysid.gnu.org> | |
6441 | |
6442 * lisp/info.el (Info-next-menu-item): Stay on top of node. | |
6443 | |
6444 * mail/rmailout.el (rmail-output): Insert newline only if necessary. | |
6445 | |
6446 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case. | |
6447 | |
6448 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines. | |
6449 | |
6450 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org> | |
6451 | |
6452 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*". | |
6453 | |
6454 1998-10-21 Karl Heuer <kwzh@gnu.org> | |
6455 | |
6456 * emacs-lisp/profile.el (profile-timer-program): Var deleted. | |
6457 (profile-timer-process, profile-temp-result-, profile-time): Likewise. | |
6458 (profile-filter, profile-reset-timer): Functions deleted. | |
6459 (profile-check-zero-init-times, profile-get-time): Likewise. | |
6460 (profile-find-function, profile-quit): Likewise. | |
6461 (profile-distinct, profile-call-stack, profile-last-time): New vars. | |
6462 (profile-time-list, profile-init-list): Doc fix. | |
6463 (profile-functions): Simplify. | |
6464 (profile-print): Use float. Make output include space separators. | |
6465 (profile-add-time): New helper function. | |
6466 (profile-function-prolog): Renamed from profile-start-function. | |
6467 Handle profile-distinct. | |
6468 (profile-function-epilog): Renamed from profile-update-function. | |
6469 Handle profile-distinct. | |
6470 (profile-a-function): If the function to be profiled is an | |
6471 autoload form, load it. If it's lazy-loaded, fetch it. | |
6472 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it. | |
6473 (profile-restore-fun): Arg FUN is now a function symbol, as was | |
6474 documented, rather than a one-element list. | |
6475 (profile-finish): Call profile-restore-fun properly. | |
6476 | |
6477 1998-10-21 Kenichi Handa <handa@etl.go.jp> | |
6478 | |
6479 * international/characters.el: Setup charset property | |
6480 nospace-between-words. | |
6481 | |
6482 * international/mule-cmds.el (get-charset-property): If CHARSET is | |
6483 composition, return nil. | |
6484 (put-charset-property): If CHARSET is composition, do nothing. | |
6485 | |
6486 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer. | |
6487 * language/devan-util.el | |
6488 (in-is13194-devanagari-pre-write-conversion): Likewise. | |
6489 * language/thai-util.el (thai-pre-write-conversion): Likewise. | |
6490 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise. | |
6491 * language/viet-util.el (viqr-pre-write-conversion): Likewise. | |
6492 | |
6493 * textmodes/fill.el (sentence-end-without-period): New variable. | |
6494 (canonically-space-region): Pay attention to | |
6495 sentence-end-without-period. | |
6496 (fill-find-break-point): The first argument CHARSET deleted. | |
6497 Caller changed. | |
6498 (fill-region-as-paragraph): Pay attention to charset property | |
6499 nospace-between-words and text property nospace-between-words. | |
6500 | |
6501 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6502 | |
6503 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for | |
6504 an unrecognized shell. | |
6505 | |
6506 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org> | |
6507 | |
6508 * desktop.el (desktop-save): Include minor modes symbolically. | |
6509 (desktop-create-buffer): Turn on all minor modes in `mim'. | |
6510 | |
6511 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6512 | |
6513 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files. | |
6514 (sh-font-lock-keywords): Handle rpm and rpm2. | |
6515 (sh-ancestor-alist): Handle rpm. | |
6516 | |
6517 * files.el (auto-mode-alist): Recognize .rpm files. | |
6518 Also .spec and .mspec files. | |
6519 | |
6520 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org> | |
6521 | |
6522 * faces.el (frame-set-background-mode): Enable the function for | |
6523 MSDOS frames. | |
6524 | |
6525 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
6526 | |
6527 * calendar/calendar.el (calendar-day-name-array): Add doc string. | |
6528 (calendar-month-name-array): Add doc string. | |
6529 | |
6530 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6531 | |
6532 * simple.el (kill-ring-max): Increased to 60. | |
6533 | |
6534 1998-10-17 Kenichi Handa <handa@etl.go.jp> | |
6535 | |
6536 * international/characters.el: Setup auto-fill-chars. | |
6537 | |
6538 * international/kinsoku.el (kinsoku): Check the variable | |
6539 enable-kinsoku. | |
6540 | |
6541 * simple.el (do-auto-fill): Don't check kinsoku-enable here. | |
6542 Don't call kinsoku directly, intead call fill-find-break-point. | |
6543 | |
6544 * textmodes/fill.el: Setup `fill-find-break-point-function' | |
6545 property to character sets which require `kinsoku' processing for | |
6546 filling. | |
6547 (fill-find-break-point): New function. | |
6548 (fill-region-as-paragraph): Don't check kinsoku-enable here. | |
6549 Don't call kinsoku directly, intead call fill-find-break-point. | |
6550 | |
6551 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6552 | |
6553 * faces.el (modify-face-read-string): Return (nil) for "none". | |
6554 (modify-face): Don't get error if (nil) is the argument. | |
6555 (face-try-color-list): Don't check whether nil is a valid color. | |
6556 | |
6557 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6558 | |
6559 * emacs-lisp/bytecomp.el (byte-recompile-directory): | |
6560 Print message about each directory, even in batch mode. | |
6561 | |
6562 * gnus/nntp.el: Require `cl' before using nnoo-declare. | |
6563 | |
6564 * ps-print.el (ps-mule-chars-in-string): No need to use sref. | |
6565 (ps-mule-string-char): No need to use sref. | |
6566 (ps-mule-next-index): No need to use sref. | |
6567 | |
6568 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved. | |
6569 | |
6570 * files.el (revert-buffer-internal-hook): Add defvar. | |
6571 | |
6572 * arc-mode.el (archive-mode): Locally set file-precious-flag. | |
6573 | |
6574 * tar-mode.el (tar-mode): Locally set file-precious-flag. | |
6575 | |
6576 1998-10-16 Markus Rost <rost@delysid.gnu.org> | |
6577 | |
6578 * international/mule-cmds.el (default-input-method): Fix custom type. | |
6579 | |
6580 * net-utils.el (whois-server-list): Fix customization type. | |
6581 | |
6582 * shell.el (shell-input-autoexpand): Fix customization group. | |
6583 | |
6584 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6585 | |
6586 * repeat.el (repeat): Handle keyboard macros properly. | |
6587 Handle new prefix arg after self-insert command. | |
6588 | |
6589 * repeat.el: Don't include cl even at compile time. | |
6590 (repeat): Avoid using `loop'. | |
6591 | |
6592 * simple.el (shell-command-on-region): Doc fix. | |
6593 (next-history-element): Special error message if no default. | |
6594 | |
6595 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6596 | |
6597 * ps-print.el (ps-print-buffer): Doc fix. | |
6598 (ps-despool): Likewise. | |
6599 | |
6600 * arc-mode.el (arc-mode): Provide arc-mode. | |
6601 | |
6602 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6603 | |
6604 * ps-print.el (ps-print-buffer): Doc fix. | |
6605 | |
6606 1998-10-14 Dave Love <fx@gnu.org> | |
6607 | |
6608 * ange-ftp.el (ange-ftp-read-passwd): Function deleted. | |
6609 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd. | |
6610 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise. | |
6611 | |
6612 * progmodes/fortran.el (fortran-mode-map): Change "Join | |
6613 Continuation Line" to "Join Line". | |
6614 (fortran-font-lock-keywords-1): Add "cycle", "exit". | |
6615 | |
6616 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
6617 | |
6618 * progmodes/fortran.el (fortran-join-line): Use | |
6619 `delete-indentation' instead of issuing an error message if not on | |
6620 a continuation line. Provide for joining several lines using | |
6621 prefix arg. | |
6622 | |
6623 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org> | |
6624 | |
6625 * term/pc-win.el (msdos-color-values): New variable. | |
6626 (x-color-values): New function, emulates its namesake from | |
6627 src/xfns.c. | |
6628 (msdos-bg-mode): Add all dark colors to those which return | |
6629 "dark". | |
6630 | |
6631 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6632 | |
6633 * replace.el (keep-lines, flush-lines, how-many): | |
6634 Don't ignore case if arg has upper case letters. | |
6635 | |
6636 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch> | |
6637 | |
6638 * progmodes/vhdl-mode.el | |
6639 (vhdl-add-index-menu): reverse order in imenu-generic-expression. | |
6640 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec) | |
6641 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map) | |
6642 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop) | |
6643 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo). | |
6644 (vhdl-when): Fix indentation problem. | |
6645 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev. | |
6646 (vhdl-get-port, vhdl-get-generic): Bug fix in template. | |
6647 (vhdl-hooked-abbrev): Bug fix in hooked abbrev. | |
6648 | |
6649 1998-10-13 Geoff Voelker <voelker@cs.washington.edu> | |
6650 | |
6651 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable. | |
6652 (ls-lisp-insert-directory): Renamed from insert-directory. | |
6653 (insert-directory): New function. | |
6654 | |
6655 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6656 | |
6657 * simple.el (completion-fixup-function): Variable deleted. | |
6658 (completion-setup-function): Delete code for completion-fixup-function. | |
6659 * emacs-lisp/lisp.el (lisp-complete-symbol): | |
6660 Don't bind completion-fixup-function. | |
6661 | |
6662 * files.el (find-file-wildcards): New option. | |
6663 (find-file-noselect): Handle wild cards, if enabled. | |
6664 (file-expand-wildcards): New function. | |
6665 | |
6666 * simple.el (set-fill-column): Doc fix. | |
6667 | |
6668 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
6669 | |
6670 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search. | |
6671 | |
6672 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org> | |
6673 | |
6674 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only): | |
6675 Move declaration before first use. | |
6676 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr, | |
6677 hif-math, hif-factor): Rename token to hif-token and token-list to | |
6678 hif-token-list. | |
6679 (hif-token, hif-token-list): Declare them. | |
6680 (hif-find-ifdef-block): Return cons of top and bottom point | |
6681 instead of setting dynamically bound variables. | |
6682 (hide-ifdef-block, show-ifdef-block): Use return value of | |
6683 hif-find-ifdef-block. | |
6684 | |
6685 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6686 | |
6687 * subr.el (read-passwd): Use clear-this-command-keys. | |
6688 | |
6689 * telnet.el (telnet-initial-filter): Use clear-this-command-keys. | |
6690 | |
6691 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read | |
6692 and ...-for-write. | |
6693 | |
6694 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk> | |
6695 | |
6696 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected | |
6697 responses to GROUP command, since this may be called from a timer | |
6698 with quit inhibited. | |
6699 | |
6700 1998-10-12 Kenichi Handa <handa@etl.go.jp> | |
6701 | |
6702 * international/ccl.el (ccl-compile-if): If there's no false-cmds, | |
6703 set unconditional-jump to nil. | |
6704 (ccl-compile-read-multibyte-character): Return nil. | |
6705 (ccl-compile-write-multibyte-character): Likewise. | |
6706 (ccl-compile-translate-character): Likewise | |
6707 (ccl-compile-map-multiple): Likewise. | |
6708 (ccl-compile-map-single): Likewise. | |
6709 | |
6710 * international/kinsoku.el: Add coding tag. | |
6711 (kinsoku-bol): Remove superfluous TAB in a string. | |
6712 | |
6713 * international/mule-cmds.el (find-coding-systems-for-charsets): | |
6714 Delete `composition' (if any) from CHARSETS. | |
6715 | |
6716 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6717 | |
6718 * international/mule-cmds.el (setup-specified-language-environment): | |
6719 Add apropos-inhibit property. | |
6720 (describe-specified-language-support): Likewise. | |
6721 | |
6722 1998-10-11 Kenichi HANDA <handa@etl.go.jp> | |
6723 | |
6724 * international/mule.el (make-coding-system): Create -with-esc | |
6725 variant coding system. | |
6726 | |
6727 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu> | |
6728 | |
6729 * progmodes/etags.el (tags-loop-revert-buffers): New variable. | |
6730 (next-file): Optionally offer to revert a file's buffer, | |
6731 if it has an existing buffer but the file has changed. | |
6732 | |
6733 * info.el (Info-insert-dir): Detect and report problems | |
6734 in input files, such as "No Top node". Return with point | |
6735 at the beginning of the text. | |
6736 (Info-find-node): Reinsert the code to handle files | |
6737 with no tags table; it was deleted by mistake. | |
6738 | |
6739 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu> | |
6740 | |
6741 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let | |
6742 texinfo-find-higher-level-node repeatedly find the same node. | |
6743 (texinfo-find-higher-level-node): Doc fix. | |
6744 | |
6745 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6746 | |
6747 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string. | |
6748 (smtpmail-address-buffer): Add defvar. | |
6749 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise. | |
6750 | |
6751 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved. | |
6752 | |
6753 * ffap.el (ffap-machine-p-local): Fix editing error. | |
6754 | |
6755 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6756 | |
6757 * faces.el (frame-set-background-mode): | |
6758 Don't do anythung for text-only or MSDOS frame. | |
6759 | |
6760 1998-10-08 Kenichi Handa <handa@etl.go.jp> | |
6761 | |
6762 * international/quail.el (quail-defrule): New optional arg APPEND. | |
6763 (quail-defrule-internal): Fix bug of handling the argument APPEND. | |
6764 | |
6765 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6766 | |
6767 * gnus/pop3.el (pop3-open-server): | |
6768 Set process-coding-system-alist around open-network-stream. | |
6769 | |
6770 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6771 | |
6772 * files.el (save-buffer): Doc fix. | |
6773 | |
6774 1998-10-07 Karl Heuer <kwzh@gnu.org> | |
6775 | |
6776 * emacs-lisp/profile.el (profile-fix-fun): If already profiled, | |
6777 return DEF unchanged, not nil. Simplify. | |
6778 | |
6779 1998-10-06 Geoff Voelker <voelker@cs.washington.edu> | |
6780 | |
6781 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp. | |
6782 | |
6783 1998-10-06 Peter Breton <pbreton@ne.mediaone.net> | |
6784 | |
6785 * generic.el (generic-mode-with-type): Added hooks for generic-modes. | |
6786 | |
6787 * net-utils.el (ftp, nslookup): Require comint. | |
6788 (network-service-connection): Likewise. | |
6789 (whois-server-name): Defaults to whois.arin.net | |
6790 (whois-server-list, whois-server-tld, whois-guess-server): New var. | |
6791 (whois): Tries to guess the appropriate top-level domain server. | |
6792 (whois-get-tld): New function. | |
6793 | |
6794 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs. | |
6795 (dirtrack-debug-toggle): Added this function. | |
6796 | |
6797 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
6798 | |
6799 * files.el (find-file-noselect): Switch to the correct buffer | |
6800 before checking find-file-literally, and allow non-nil non-t | |
6801 rawfile params. | |
6802 | |
6803 1998-10-06 Karl Heuer <kwzh@gnu.org> | |
6804 | |
6805 * midnight.el (clean-buffer-list): Add autoload cookie. | |
6806 | |
6807 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from | |
6808 no-autosave. | |
6809 * tar-mode.el (tar-mode-revert): Likewise. | |
6810 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed | |
6811 from ediff-arrange-autosave-in-merge-jobs. Callers changed. | |
6812 * gnus/message.el (message-auto-save-directory): Renamed from | |
6813 message-autosave-directory. All references changed. | |
6814 | |
6815 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us> | |
6816 | |
6817 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary | |
6818 string. Expose mime stuff while searching. | |
6819 | |
6820 1998-10-06 Richard Stallman <rms@gnu.org> | |
6821 | |
6822 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result. | |
6823 | |
6824 * replace.el (perform-replace): Position point properly | |
6825 before and after the recursive edit of C-r. | |
6826 | |
6827 * progmodes/etags.el (tags-reset-tags-tables): Properly | |
6828 find the markers in the old rings that are being discarded. | |
6829 | |
6830 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
6831 | |
6832 * apropos.el (apropos-print): control invalid characters. | |
6833 | |
6834 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X): | |
6835 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid | |
6836 confusing customize. | |
6837 | |
6838 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org> | |
6839 | |
6840 * generic-x.el (bat-generic-mode): Fix regexps for keywords and | |
6841 built-in commands. Add more built-in commands and fix face names. | |
6842 | |
6843 1998-10-05 Simon Marshall <simon@gnu.org> | |
6844 | |
6845 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar. | |
6846 | |
6847 1998-10-04 Eric Ludlam <zappo@gnu.org> | |
6848 | |
6849 * speedbar.el (speedbar-initial-expansion-list-name): Remove | |
6850 customization since it is not useful in this case. | |
6851 (speedbar-frame-mode): Check if cfx or cfy is a list, and make | |
6852 sure it gets evalled to a number. Also verify that set-frame-name | |
6853 fn exists before calling it. | |
6854 | |
6855 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine): | |
6856 Protect a `forward-sexp' call which could fail, and improved regex | |
6857 for ie, and eg abbreviations. | |
6858 | |
6859 1998-10-02 Noah Friedman <friedman@splode.com> | |
6860 | |
6861 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not | |
6862 send-string. | |
6863 (rlogin-send-Ctrl-D): Here also. | |
6864 (rlogin-send-Ctrl-Z): Here also. | |
6865 (rlogin-send-Ctrl-backslash): Here also. | |
6866 | |
6867 1998-10-02 Dave Love <fx@gnu.org> | |
6868 | |
6869 * outline.el (hide-region-body): Bind | |
6870 outline-view-change-hook to nil while making repeated calls to | |
6871 outline-flag-region. Run it once at the end. | |
6872 (hide-other, hide-sublevels, show-children): Likewise. | |
6873 | |
6874 * info-look.el: Remove duplicate scheme-mode entry. | |
6875 (info-lookup-make-completions): When looking for entries, check | |
6876 that `item' isn't null or "Menu". | |
6877 | |
6878 1998-10-01 Karl Heuer <kwzh@gnu.org> | |
6879 | |
6880 * net-utils.el: Don't require ffap. | |
6881 (net-utils-machine-at-point, net-utils-url-at-point): New functions. | |
6882 (ping, nslookup-host, finger, network-connection-to-service): Use them. | |
6883 | |
6884 1998-09-30 Richard Stallman <rms@gnu.org> | |
6885 | |
6886 * ispell.el (check-ispell-version): No need to bind default-major-mode. | |
6887 | |
6888 * imenu.el (imenu--generic-function): Sort each submenu by position. | |
6889 (imenu--sort-by-position): New function. | |
6890 | |
6891 * cus-edit.el (Custom-mode-menu): Fix info node name. | |
6892 (customize group): Fix info node name. | |
6893 | |
6894 * mail/mailalias.el (build-mail-aliases): Don't allow | |
6895 a newline in the alias name. Don't define an alias | |
6896 if the definition would be empty. | |
6897 | |
6898 * which-func.el (which-func-mode-global): Make :set function | |
6899 more reliable. | |
6900 | |
6901 * custom.el (custom-set-variables): Load the requests first, | |
6902 then check the symbol's `set' function. | |
6903 | |
6904 * ffap.el: Doc fixes. | |
6905 | |
6906 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
6907 | |
6908 * gnus.el: (gnus-valid-select-methods): Fix type. | |
6909 * gnus-sum.el (gnus-summary-respool-default-method): Fix type. | |
6910 * gnus-score.el (gnus-orphan-score): Fix type. | |
6911 (gnus-score-default-header, gnus-score-default-type): Fix type. | |
6912 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type. | |
6913 (gnus-saved-headers): Fix type. | |
6914 | |
6915 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix): | |
6916 Avoid nil value of `two-lines-citation-part'. | |
6917 | |
6918 1998-09-30 Roman Belenov <roman@nstl.nnov.ru> | |
6919 | |
6920 * which-func.el (which-function): Handle case when | |
6921 (car imenu--index-alist) is nil. | |
6922 | |
6923 1998-09-29 Dave Love <fx@gnu.org> | |
6924 | |
6925 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from | |
6926 bzip2 args. | |
6927 | |
6928 1998-09-29 Simon Marshall <simon@gnu.org> | |
6929 | |
6930 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and | |
6931 comint-exec-hook. | |
6932 | |
6933 1998-09-29 Stephen Eglen <stephen@gnu.org> | |
6934 | |
6935 * info-look.el: Add support for Octave. | |
6936 | |
6937 1998-09-28 Carsten Dominik <cd@delysid.gnu.org> | |
6938 | |
6939 * textmodes/reftex.el (reftex-finding-files): New customize group. | |
6940 (reftex-texpath-environment-variables, | |
6941 reftex-use-external-file-finders, reftex-external-file-finders, | |
6942 reftex-search-unrecursed-path-first): New options. | |
6943 (reftex-process-string, reftex-find-file-externally): New | |
6944 functions. | |
6945 (reftex-access-search-path): Execute shell commands to find the | |
6946 search path. | |
6947 (reftex-toggle-auto-view-crossref): When turning on, make sure | |
6948 `reftex-auto-view-crossref' becomes non-nil. | |
6949 (reftex-abbrev-regexp): Constant removed. | |
6950 (reftex-convert-string): Abbrev regexp calculated locally. | |
6951 | |
6952 1998-09-28 Dave Love <fx@gnu.org> | |
6953 | |
6954 * progmodes/fortran.el: Don't call regexp-opt when deriving | |
6955 font-lock patterns with keywords that aren't all literal. | |
6956 | |
6957 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
6958 | |
6959 * octave-inf.el (inferior-octave-prompt): Also match prompts of | |
6960 the form `octave.bin:1>' which come from using precopiled binary | |
6961 versions. | |
6962 | |
6963 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
6964 | |
6965 * help.el (help-for-help): Use %THIS-KEY%. | |
6966 (help-quit): Add doc. | |
6967 | |
6968 * help-macro.el (make-help-screen): Keep HELP-TEXT | |
6969 in a separate function definition, not in the help command FNAME. | |
6970 Replace %THIS-KEY% with the key sequence that ran FNAME. | |
6971 | |
6972 1998-09-25 Richard Stallman <rms@gnu.org> | |
6973 | |
6974 * textmodes/texinfo.el (texinfo-show-structure): | |
6975 Bind inhibit-read-only. | |
6976 | |
6977 * isearch.el (isearch-search-and-update): Properly | |
6978 handle upper case letters in the reverse-search special case. | |
6979 | |
6980 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
6981 | |
6982 * gnus.el: Extend the list of autoloaded functions. | |
6983 | |
6984 * gnus/gnus-start.el (gnus-check-first-time-used): Change current | |
6985 buffer before creating help group. (from Gnus v5.6.43, fix by | |
6986 1998-08-20 Per Starback <starback@update.uu.se>) | |
6987 | |
6988 * gnus-util.el (gnus-output-to-rmail): Adjust to | |
6989 `rmail-output-to-rmail-file'. | |
6990 | |
6991 1998-09-25 Karl Heuer <kwzh@gnu.org> | |
6992 | |
6993 * hexl.el (hexl-mode-map): More of previous change. | |
6994 | |
6995 * textmodes/tex-mode.el (tex-run-command): Doc fix. | |
6996 (tex-start-tex): Don't use tex-start-options-string in star case. | |
6997 Quote file name in star case as well as in non-star. | |
6998 Add blank and quoting of option string here. | |
6999 (tex-start-options-string): Not here. | |
7000 | |
7001 1998-09-23 Karl Heuer <kwzh@gnu.org> | |
7002 | |
7003 * term.el (term-delimiter-argument-list): Doc fix. | |
7004 (term-emulate-terminal): Escape literal semicolon. | |
7005 * progmodes/asm-mode.el (asm-mode): Doc fix. | |
7006 (asm-comment-char): Escape literal semicolon. | |
7007 * emulation/viper-cmd.el (viper-movement-commands): Likewise. | |
7008 | |
7009 1998-09-23 Richard Stallman <rms@gnu.org> | |
7010 | |
7011 * hexl.el (hexl-mode-map): Don't override all ESC bindings, | |
7012 only those that normally modify the buffer. | |
7013 | |
7014 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer | |
7015 over again. | |
7016 | |
7017 1998-09-23 E. Jay Berkenbilt <ejb@ql.org> | |
7018 | |
7019 * ispell.el (check-ispell-version): Ensure same buffer is current | |
7020 when let-binding of case-fold-search ends. | |
7021 | |
7022 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
7023 | |
7024 * ps-print.el: Skip invisible overlay. | |
7025 Test for set-buffer-multibyte rather than using mule-version. | |
7026 (ps-print-version): New version number (4.1) and doc fix. | |
7027 (ps-generate-postscript-with-faces): Skip invisible overlay. | |
7028 | |
7029 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu> | |
7030 | |
7031 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes. | |
7032 | |
7033 1998-09-22 Kenichi Handa <handa@etl.go.jp> | |
7034 | |
7035 * international/quail.el (quail-update-guidance): Check for the | |
7036 return value of (quail-guidance) fixed. | |
7037 (quail-update-translation): Bind quail-current-str locally when it | |
7038 calls quail-update-guidance. | |
7039 (quail-update-translation): If input-method-exit-on-first-char is | |
7040 non-nil, terminate translation only when the current input method | |
7041 is simple. | |
7042 | |
7043 1998-09-22 Paul Eggert <eggert@twinsun.com> | |
7044 | |
7045 * startup.el (locale-translation-file-name): Prefer X-related names | |
7046 to the name used by GNU/Linux sans X. Set to nil if no file found. | |
7047 (command-line): Use locale-translation-file-name if it is not nil, | |
7048 instead of testing for its existence again. | |
7049 regexp-quote the ctype before using it in a regexp. | |
7050 Allow a colon to appear after the ctype in the aliases file, | |
7051 as is done in X11R6.4. | |
7052 | |
7053 1998-09-21 Richard Stallman <rms@gnu.org> | |
7054 | |
7055 * mail/rmail.el (rmail-resend): Work properly if invoked from summary. | |
7056 | |
7057 * calendar/appt.el (appt-interval): Variable deleted. | |
7058 (appt-check): For minutes in between appt-display-interval times, | |
7059 do check, but don't display anything except an updated mode line. | |
7060 Count against appt-display-interval based on minutes since | |
7061 first display of this appointment, not based on time of day. | |
7062 If appt-display-mode-line, force mode line redisplay | |
7063 whenever appt-mode-string has changed. | |
7064 (appt-add, appt-delete): Add autoload cookies. | |
7065 (appt-check): Catch errors from calling `diary'. | |
7066 (appt-max-time): Renamed from max-time. | |
7067 (appt-now-displayed, appt-display-count): New variables. | |
7068 (appt-timer): Don't create one if we already have one. | |
7069 | |
7070 * textmodes/tex-mode.el (tex-compilation-parse-errors): | |
7071 More general code to use the source buffer instead of the zap file. | |
7072 | |
7073 * hilit-chg.el (highlight-compare-with-file): Renamed from | |
7074 compare-with-file. | |
7075 | |
7076 * loadhist.el (load-history-loaded): New variable. | |
7077 (symbol-file): Load etc/fns-VERSION.el if that has not been done. | |
7078 | |
7079 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it. | |
7080 | |
7081 * emacs-lisp/find-func.el (find-function-search-for-symbol): | |
7082 Fix error messages. | |
7083 | |
7084 1998-09-21 Markus Armbruster <armbru@pond.sub.org> | |
7085 | |
7086 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an | |
7087 Emacs frame. | |
7088 | |
7089 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7090 | |
7091 * mail/rmail.el (rmail-decode-babyl-format): Recognize both | |
7092 `undecided' and `undecided-unix'. | |
7093 | |
7094 1998-09-21 Dave Love <fx@gnu.org> | |
7095 | |
7096 * help.el (help-make-xrefs): Fix typo affecting Info references. | |
7097 | |
7098 * subr.el (remove-hook): Check list values to avoid errors. | |
7099 | |
7100 1998-09-18 Noah Friedman <friedman@splode.com> | |
7101 | |
7102 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and | |
7103 store string in eldoc-last-message without consing a new string. | |
7104 Rearrange logic from nested if's into cond's. | |
7105 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string. | |
7106 Do not print message; just return string. | |
7107 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring. | |
7108 Do not print message; just return string. | |
7109 Cache that string in eldoc-last-data. | |
7110 (eldoc-last-data): Make into a vector. | |
7111 (eldoc-get-fnsym-args-string): Use new data form of structure. | |
7112 (eldoc-get-var-docstring): Here also. | |
7113 (eldoc-last-data-store): New function. | |
7114 (eldoc-get-fnsym-args-string): Use it. | |
7115 (eldoc-get-var-docstring): Here also. | |
7116 (eldoc-docstring-first-line): Minimize interim string consing. | |
7117 Call substitute-command-keys on the result. | |
7118 (eldoc-print-var-docstrings, eldoc-print-docstring, | |
7119 eldoc-docstring-message): Functions removed. | |
7120 (eldoc-docstring-format-sym-doc): New function, functionality | |
7121 ripped out of eldoc-docstring-message. | |
7122 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it. | |
7123 | |
7124 1998-09-18 Kenichi Handa <handa@etl.go.jp> | |
7125 | |
7126 * international/mule.el (make-coding-system): Doc-string modified. | |
7127 | |
7128 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org> | |
7129 | |
7130 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type. | |
7131 | |
7132 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix | |
7133 customize type. | |
7134 | |
7135 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize | |
7136 type. | |
7137 | |
7138 * progmodes/compile.el (compilation-error-screen-columns): New | |
7139 variable. | |
7140 (compilation-next-error-locus): Use it to decide whether to use | |
7141 forward-char or move-to-column. | |
7142 | |
7143 * mail/rmail.el (rmail-movemail-program): Fix customize type. | |
7144 | |
7145 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage, | |
7146 feedmail-fiddle-plex-user-list, | |
7147 feedmail-spray-address-fiddle-plex-list, | |
7148 feedmail-prompt-before-queue-user-alist, | |
7149 feedmail-prompt-before-queue-help-supplement, | |
7150 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug, | |
7151 feedmail-queue-alternative-mail-header-separator): Fix customize | |
7152 type. | |
7153 | |
7154 * startup.el (site-run-file): Fix customize type. | |
7155 | |
7156 * speedbar.el (speedbar-initial-expansion-list-name): Fix | |
7157 customize type. | |
7158 | |
7159 * shell.el (shell-input-autoexpand): Fix customize type. | |
7160 | |
7161 * ps-print.el (ps-font-info-database): Add missing dots in value. | |
7162 Improve layout of customize type. | |
7163 | |
7164 * net-utils.el (traceroute-program-options, ping-program-options, | |
7165 ipconfig-program-options, netstat-program-options, | |
7166 arp-program-options, route-program-options, | |
7167 nslookup-program-options, ftp-program-options): Fix customize | |
7168 type. | |
7169 | |
7170 * midnight.el (clean-buffer-list-kill-regexps, | |
7171 clean-buffer-list-kill-buffer-names, | |
7172 clean-buffer-list-kill-never-buffer-names, | |
7173 clean-buffer-list-kill-never-regexps): Fix customize type. | |
7174 | |
7175 * man.el (Man-init-defvars): Avoid trailing nil on | |
7176 Man-filter-list. | |
7177 | |
7178 * lpr.el (printer-name): Fix customize type. | |
7179 | |
7180 1998-09-16 Kenichi Handa <handa@etl.go.jp> | |
7181 | |
7182 * international/mule-cmds.el (reset-language-environment): Call | |
7183 update-coding-systems-internal. | |
7184 | |
7185 * international/mule-conf.el: Call update-coding-systems-internal | |
7186 at the tail. | |
7187 | |
7188 1998-09-14 Dave Love <fx@gnu.org> | |
7189 | |
7190 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't | |
7191 use the menu-enable properties, pending doing it correctly and | |
7192 acceptably fast. | |
7193 | |
7194 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text. | |
7195 | |
7196 1998-09-13 Dave Love <d.love@dl.ac.uk> | |
7197 | |
7198 * progmodes/hideshow.el (hs-grok-mode-type): Check | |
7199 comment-{start,end} non-nil as well as bound. Report an error if | |
7200 we can't grok the mode. | |
7201 | |
7202 1998-09-13 Richard Stallman <rms@gnu.org> | |
7203 | |
7204 * simple.el (blink-matching-open): Don't log paren matching | |
7205 messages in *Messages*. | |
7206 | |
7207 1998-09-12 Richard Stallman <rms@gnu.org> | |
7208 | |
7209 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up): | |
7210 Set point-before-scroll at end even if there was an error. | |
7211 | |
7212 * ange-ftp.el (ange-ftp-insert-file-contents): | |
7213 Use binary mode for dumb-unix hosts as for unix hosts. | |
7214 (ange-ftp-copy-file-internal): Likewise. | |
7215 | |
7216 * textmodes/paragraphs.el (use-hard-newlines): Doc fix. | |
7217 | |
7218 * emacs-lisp/pp.el: Doc fixes. | |
7219 | |
7220 * wid-edit.el (widget-menu-max-shortcuts): New variable. | |
7221 (widget-choose): Don't use single-char shortcuts if # items | |
7222 exceeds that many. Use minibuffer instead. | |
7223 | |
7224 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
7225 | |
7226 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg. | |
7227 | |
7228 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org> | |
7229 | |
7230 * speedbar.el (speedbar-frame-mode): Do not set frame position if | |
7231 in terminal mode. | |
7232 | |
7233 1998-09-10 Noah Friedman <friedman@splode.com> | |
7234 | |
7235 * rsz-mini.el (resize-minibuffer-mode): remove :version field from | |
7236 defcustom declaration. It's wreaking too much havoc with XEmacs | |
7237 and older versions of Emacs, which share this code. | |
7238 | |
7239 * type-break.el (type-break-mode): Here also. | |
7240 | |
7241 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg | |
7242 `t' to add-hook also to modify the new local value. | |
7243 | |
7244 1998-09-10 Dave Love <fx@gnu.org> | |
7245 | |
7246 * vc.el (vc-insert-headers): Doc fix. | |
7247 | |
7248 1998-09-10 Richard Stallman <rms@gnu.org> | |
7249 | |
7250 * textmodes/flyspell.el (flyspell-mode-on): Make the | |
7251 ispell-... variables permanent locals. | |
7252 (flyspell-mode-off): Add autoload cookie. | |
7253 | |
7254 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host, | |
7255 do use binary mode, just as for `unix'. | |
7256 (ange-ftp-host-type): If HOST is nil, return `unix'. | |
7257 | |
7258 * dired.el (dired-mark-files-containing-regexp): | |
7259 Don't scan directories. Ignore non-readable files. | |
7260 | |
7261 * progmodes/compile.el (compilation-error-regexp-alist): | |
7262 Fix previous change: allow . and _ in command name. | |
7263 | |
7264 * dired.el (dired-mark-files-containing-regexp): Fix previous change. | |
7265 | |
7266 * uncompress.el (uncompress-while-visiting): | |
7267 Use just the car of what find-operation-coding-system returns. | |
7268 | |
7269 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename. | |
7270 | |
7271 * shell.el (shell-file-name-quote-list): Add # to the value. | |
7272 | |
7273 1998-09-10 E. Jay Berkenbilt <ejb@ql.org> | |
7274 | |
7275 * textmodes/flyspell.el (flyspell-mode-on): fix kill-buffer-hook | |
7276 to make killing of ispell process work even if | |
7277 kill-all-local-variables has been run. | |
7278 | |
7279 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
7280 | |
7281 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite | |
7282 loop when sexp entry ends at end of file with no newline. | |
7283 | |
7284 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7285 | |
7286 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved) | |
7287 (Custom-reset-standard): Fix menu inconsistency. | |
7288 | |
7289 * mail/feedmail.el (feedmail-from-line): Allow t. | |
7290 (feedmail-message-id-suffix): Allow nil. | |
7291 | |
7292 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): | |
7293 Simplify. Make prefix arg work right. | |
7294 | |
7295 1998-09-09 Dave Love <fx@gnu.org> | |
7296 | |
7297 * textmodes/paragraphs.el (use-hard-newlines): Doc fix. | |
7298 | |
7299 * help.el (help-xref-interned): Bind inhibit-read-only when inserting. | |
7300 | |
7301 1998-09-08 Dave Love <fx@gnu.org> | |
7302 | |
7303 * add-log.el (change-log-font-lock-keywords): Do parenthesized | |
7304 stuff only after file names or at start of line. Allow parens | |
7305 around e-mail, as well as angles. | |
7306 | |
7307 * gnus/nnweb.el (require): Wrap requirement of w3 and url in | |
7308 ignore-errors too, eval'd when compile. Require w3 stuff at load | |
7309 time for nicer failure if it's not available. | |
7310 | |
7311 1998-09-07 Geoff Voelker <voelker@cs.washington.edu> | |
7312 | |
7313 * comint.el (comint-arguments): Ignore backslashes when using | |
7314 w32 shells that expect backslashes as the directory separator. | |
7315 | |
7316 1998-09-04 Kenichi Handa <handa@etl.go.jp> | |
7317 | |
7318 * international/fontset.el (resolved-ascii-font): New variable. | |
7319 (x-complement-fontset-spec): By side effect, set | |
7320 `resolved-ascii-font' to the resolved name of ASCII font." | |
7321 (create-fontset-from-fontset-spec): Don't get a value for | |
7322 resolved-ascii-font from the list full-fontlist. It is set by | |
7323 x-complement-fontset-spec now. | |
7324 | |
7325 * ps-print.el: To make it work also on Emacs 20.2 and the earlier | |
7326 version, check the value of mule-version. | |
7327 | |
7328 1998-09-07 Carsten Dominik <cd@delysid.gnu.org> | |
7329 | |
7330 * textmodes/reftex.el (reftex-view-crossref): Split up into | |
7331 several functions. No longer moves to find a macro. | |
7332 (reftex-view-cr-cite, reftex-view-cr-ref, | |
7333 reftex-end-of-bib-entry): New functions. | |
7334 (reftex-auto-view-crossref): New value `window' allowed. | |
7335 (reftex-view-crossref-when-idle): Process new `window' option in | |
7336 (reftex-translate-to-ascii-function): New default. | |
7337 (reftex-label-illegal-re): Default changed, removed Latin1. | |
7338 (reftex-latin1-to-ascii): New function. | |
7339 (reftex-what-environment): Check for section regexp before use. | |
7340 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with | |
7341 absolute path names. | |
7342 (reftex-TeX-master-file): Changed sequence of file checks. | |
7343 (reftex-do-citation): bibview cache only with RefTeX mode on. | |
7344 | |
7345 1998-09-06 Richard Stallman <rms@gnu.org> | |
7346 | |
7347 * progmodes/compile.el (compilation-error-regexp-alist): | |
7348 In first pattern (GNU utilities and other things), | |
7349 allow a space after the optional program name at the beginning. | |
7350 | |
7351 * mail/mail-hist.el (mail-hist-current-header-contents): | |
7352 Fix previous change: use mail-header-end. | |
7353 | |
7354 1998-09-06 Bill Richter <richter@math.nwu.edu> | |
7355 | |
7356 * international/ccl.el: Doc fixes. | |
7357 * international/encoded-kb.el: Doc fixes. | |
7358 * international/fontset.el: Doc fixes. | |
7359 * international/kinsoku.el: Doc fixes. | |
7360 * international/kkc.el: Doc fixes. | |
7361 * international/mule-cmds.el: Doc fixes. | |
7362 * international/mule-conf.el: Doc fixes. | |
7363 * international/mule-util.el: Doc fixes. | |
7364 * international/mule.el: Doc fixes. | |
7365 | |
7366 1998-09-05 Eric Ludlam <zappo@gnu.org> | |
7367 | |
7368 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function. | |
7369 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'. | |
7370 (checkdoc-this-string-valid-engine): Permit ? as terminating | |
7371 punctuation for first line sentence breaking. | |
7372 (checkdoc-this-string-valid): When converting a comment into a doc | |
7373 string, make sure " chars are \". | |
7374 (checkdoc-sentencespace-region-engine): Only do double space check | |
7375 if based on the variable `sentence-end-double-space' | |
7376 (checkdoc-this-string-valid-engine): ? ends valid sentence. | |
7377 (checkdoc-proper-noun-region-engine): Exclude items in URLs | |
7378 | |
7379 1998-09-04 Richard Stallman <rms@gnu.org> | |
7380 | |
7381 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): | |
7382 Recognize define-skeleton as a function definer. | |
7383 | |
7384 * cus-edit.el (customize-option): Refuse to customize | |
7385 a variable that has no defcustom. But if variable is autoloaded, | |
7386 first try to load the library that defines it. | |
7387 | |
7388 * international/iso-insert.el: Use `string' before calling `insert' | |
7389 so that in multibyte buffers we insert multibyte chars. | |
7390 | |
7391 * dired.el (dired-mark-files-containing-regexp): | |
7392 Don't use find-file; instead, insert the file in a temp buffer. | |
7393 | |
7394 * textmodes/tex-mode.el (tex-start-options-string): New option. | |
7395 (tex-start-tex): Use that variable. | |
7396 | |
7397 * mail/rmail.el (rmail-primary-inbox-list): Make the initial | |
7398 value in the `repeat' alternative a list. | |
7399 | |
7400 * textmodes/fill.el (fill-individual-paragraphs): Before deleting | |
7401 the inserted newline, verify that one was really inserted. | |
7402 | |
7403 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode | |
7404 remains on or remains off. | |
7405 (flyspell-multi-language-p): Default changed to nil. | |
7406 | |
7407 * progmodes/ada-mode.el (ada-search-ignore-string-comment): | |
7408 In "found in comment" case, don't beginning-of-line after forward-line. | |
7409 | |
7410 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): | |
7411 If the function definition is not a lambda, return original FORM | |
7412 with no error. | |
7413 | |
7414 1998-09-04 Peter Breton <pbreton@ne.mediaone.net> | |
7415 | |
7416 * net-utils.el (netstat-program-options): Changed from nil to "-a" | |
7417 so that by default netstat shows all network connections. | |
7418 | |
7419 1998-09-04 Bob Weiner <weiner@altrasoft.com> | |
7420 | |
7421 * international/quail.el: Doc fixes. | |
7422 | |
7423 * info.el (info): Don't add parens if FILE already has them. | |
7424 | |
7425 1998-09-04 Geoff Voelker <voelker@cs.washington.edu> | |
7426 | |
7427 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word | |
7428 on extension lines. | |
7429 | |
7430 1998-09-03 Geoff Voelker <voelker@cs.washington.edu> | |
7431 | |
7432 * w32-fns.el (w32-shell-dos-semantics): New function. | |
7433 | |
7434 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu> | |
7435 | |
7436 * international/quail.el (quail-choose-completion-string): Store | |
7437 completion `choice' in `quail-current-str'; don't insert it. | |
7438 | |
7439 1998-09-02 Kenichi Handa <handa@etl.go.jp> | |
7440 | |
7441 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH | |
7442 argument to ps-mule-generate-bitmap-font. | |
7443 | |
7444 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII | |
7445 entry and change Latin-1 entry in the default value. | |
7446 (ps-mule-font-info-database-ps-bdf): New variable. | |
7447 (ccl-encode-ethio-unicode): Bug of CCL code fixed. | |
7448 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function | |
7449 registerd in FONT-SPEC. | |
7450 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct | |
7451 charcter width of bitmap fonts. | |
7452 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript | |
7453 procedure NF. | |
7454 (ps-begin-file): Output PostScript code for setting | |
7455 SpaceWidthRatio. | |
7456 (ps-plot-region): Use line-beginning-position to get a position of | |
7457 the beginning of the current line. | |
7458 | |
7459 * international/mule-cmds.el (register-input-method): Doc-string | |
7460 modified. | |
7461 | |
7462 1998-09-01 Dave Love <fx@gnu.org> | |
7463 | |
7464 * international/mule-cmds.el (current-language-environment): Fix | |
7465 setter function. | |
7466 | |
7467 1998-09-01 Simon Marshall <simon@gnu.org> | |
7468 | |
7469 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite. | |
7470 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately. | |
7471 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class | |
7472 names with font-lock-type-face. Fontify type specs, etc., with | |
7473 font-lock-keyword-face. | |
7474 | |
7475 1998-08-31 Kenichi Handa <handa@etl.go.jp> | |
7476 | |
7477 * international/fontset.el (x-complement-fontset-spec): If ASCII | |
7478 font is specified in FONTLIST, don't substitute it for the | |
7479 resolved name. | |
7480 | |
7481 1998-08-31 Paul Eggert <eggert@twinsun.com> | |
7482 | |
7483 * international/mule.el (charset-description): Doc fix. | |
7484 | |
7485 * language/chinese.el, language/cyrillic.el, language/czech.el, | |
7486 language/devanagari.el, language/ethiopic.el, | |
7487 language/european.el, language/hebrew.el, language/indian.el, | |
7488 language/japanese.el, language/korean.el, language/lao.el, | |
7489 language/slovak.el, language/thai.el, language/tibetan.el, | |
7490 language/vietnamese.el: | |
7491 Add coding: local variable, to avoid bootstrapping problem | |
7492 if you need to recompile all the Lisp files using interpreted code. | |
7493 | |
7494 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
7495 | |
7496 * cal-china.el (chinese-year-cache): Change range of years from | |
7497 1989-2000 to 1990-2010. | |
7498 | |
7499 1998-08-29 Dave Love <d.love@dl.ac.uk> | |
7500 | |
7501 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie. | |
7502 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined. | |
7503 | |
7504 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
7505 | |
7506 * ps-print.el (ps-print-control-characters): Doc-string modified. | |
7507 (ps-output-string-prim): Comment format changed. | |
7508 (ps-do-despool): Indentation of source code changed. | |
7509 | |
7510 1998-08-28 Kenichi Handa <handa@etl.go.jp> | |
7511 | |
7512 * subr.el (sref): Make it an alias of aref. Make the | |
7513 byte-compiler warn that it is obsolete. | |
7514 (char-bytes): Make the byte-compiler warn that it is obsolete. | |
7515 | |
7516 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment): | |
7517 Calculate the total bytes using position-bytes instead of | |
7518 char-bytes. | |
7519 | |
7520 1998-08-27 Karl Heuer <kwzh@gnu.org> | |
7521 | |
7522 * snmp-mode.el: New file. | |
7523 * files.el (auto-mode-alist): Add snmp-mode patterns. | |
7524 | |
7525 1998-08-27 Karl Eichwalder <ke@suse.de> | |
7526 | |
7527 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'. | |
7528 | |
7529 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
7530 | |
7531 * calendar/diary-lib.el (diary-block): Doc fix.. | |
7532 * calendar/calendar.el (diary-list-include-blanks): Doc fix.. | |
7533 | |
7534 1998-08-27 Richard Stallman <rms@gnu.org> | |
7535 | |
7536 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp. | |
7537 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space. | |
7538 Clear appt-mode-string if we don't put something in it. | |
7539 | |
7540 1998-08-27 Dave Love <fx@gnu.org> | |
7541 | |
7542 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking | |
7543 dired-local-variables-file for dired-x. | |
7544 | |
7545 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look | |
7546 for compressed library files too. | |
7547 | |
7548 1998-08-26 Kenichi Handa <handa@etl.go.jp> | |
7549 | |
7550 * language/european.el ("Latin-1"): Modify `documentation' key value. | |
7551 ("Latin-2"): Likewise. | |
7552 | |
7553 1998-08-26 Karl Heuer <kwzh@gnu.org> | |
7554 | |
7555 * dired-x.el (dired-guess-shell-alist-default): Fix regexp. | |
7556 | |
7557 1998-08-26 Albert L. Ting <alt@artisan.com> | |
7558 | |
7559 * mail/mail-hist.el (mail-hist-current-header-name): Fix test. | |
7560 (mail-hist-current-header-contents): Use mail-text-start. | |
7561 | |
7562 1998-08-26 Richard Stallman <rms@gnu.org> | |
7563 | |
7564 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2. | |
7565 (customize-changed-options-previous-release): New variable. | |
7566 (customize-changed-options): Use that variable as default arg. | |
7567 | |
7568 1998-08-26 Karl Eichwalder <ke@suse.de> | |
7569 | |
7570 * midnight.el: Require `timer' not only when compiling. | |
7571 | |
7572 1998-08-26 Per Starback <starback@update.uu.se> | |
7573 | |
7574 * gnus/gnus-start.el (gnus-check-first-time-used): Change current | |
7575 buffer before creating help group. | |
7576 | |
7577 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
7578 | |
7579 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind | |
7580 coding-system-for-write before saving. | |
7581 | |
7582 1998-08-26 Kevin Rodgers <kevinr@ihs.com> | |
7583 | |
7584 * isearch.el (isearch-forward): Doc fix. | |
7585 | |
7586 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org> | |
7587 | |
7588 * emacs-lisp/find-func.el: Fix :version tags to have a string | |
7589 value, not a float. | |
7590 | |
7591 * cus-dep.el: Fix typo in output. | |
7592 | |
7593 1998-08-25 Dave Love <fx@gnu.org> | |
7594 | |
7595 * repeat.el (repeat): Doc fix. | |
7596 [From rms:] | |
7597 (repeat-previous-repeated-command): New variable. | |
7598 (repeat): Check for real-last-command being null or repeat. Set | |
7599 repeat-previous-repeated-command. | |
7600 | |
7601 * browse-url.el (browse-url-netscape): Fix format for hex escapes. | |
7602 | |
7603 1998-08-25 Kenichi Handa <handa@etl.go.jp> | |
7604 | |
7605 * gnus/message.el (message-send-mail-with-sendmail): Bind | |
7606 coding-system-for-write by the return value of | |
7607 select-message-coding-system. | |
7608 (message-send-mail-with-qmail): Likewise. | |
7609 | |
7610 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org> | |
7611 | |
7612 * emacs-lisp/autoload.el: Fix doc-string-elt property on | |
7613 define-derived-mode. | |
7614 | |
7615 * files.el (file-name-invalid-regexp): | |
7616 Fix regex for ms-dos without long file names. | |
7617 | |
7618 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
7619 | |
7620 * ps-print.el: Multi-byte buffer handling. | |
7621 (ps-print-version): New version number (4.0) and doc fix. | |
7622 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional | |
7623 compilation for GNU Emacs and emacsens. | |
7624 (ps-generate-postscript-with-faces): Force invisible text to be | |
7625 visible. | |
7626 (dos-ps-printer): New var to avoid compilation gripes. | |
7627 | |
7628 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
7629 | |
7630 * ps-print.el (ps-mule-plot-string): Pay attention to the case | |
7631 that no more characters can't be printed in the current line. | |
7632 | |
7633 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
7634 | |
7635 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be | |
7636 greater than TO. | |
7637 | |
7638 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
7639 | |
7640 * ps-print.el: Add codes to make ps-print.el work also on Emacs | |
7641 20.2 and the earlier version. | |
7642 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2. | |
7643 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise. | |
7644 (ps-mule-find-wrappoint): Likewise. | |
7645 (ps-mule-generate-font): Change `X' to `x' in format | |
7646 control-string. | |
7647 (ps-generate): Call ps-mule-begin before calling ps-begin-job. | |
7648 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and | |
7649 `restore' form procedures `BC' and `EC'. | |
7650 | |
7651 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
7652 | |
7653 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox | |
7654 is an executable procedure. Make LineThickness, Xshadow, and | |
7655 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc. | |
7656 (ps-mule-font-info-database, ps-mule-font-info-database-ps, | |
7657 ps-mule-font-info-database-bdf): New vars. | |
7658 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs. | |
7659 (ccl-encode-ethio-unicode): New CCL program. | |
7660 (ps-mule-encode-ethiopic): New fun. | |
7661 (ps-mule-current-charset): New var. | |
7662 (ps-mule-get-font-spec, ps-mule-font-spec-src, | |
7663 ps-mule-font-spec-name, ps-mule-font-spec-encoding, | |
7664 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs. | |
7665 (ps-mule-external-libraries): New var. | |
7666 (ps-mule-init-external-library): New fun. | |
7667 (ps-mule-font-cache): New var. | |
7668 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs. | |
7669 (ps-last-font): New var. | |
7670 (ps-mule-prepare-font): New fun. | |
7671 (ps-mule-charset-list): New var. | |
7672 (ps-mule-prologue-generated, ps-mule-prologue): New vars. | |
7673 (ps-mule-skip-same-charset, ps-mule-find-wrappoint, | |
7674 ps-mule-plot-string): New funs. | |
7675 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue): | |
7676 New vars. | |
7677 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar, | |
7678 ps-mule-prepare-cmpchar-font): New funs. | |
7679 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New | |
7680 vars. | |
7681 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font, | |
7682 ps-mule-generate-bitmap-glyph): New funs. | |
7683 (ps-mule-initialize, ps-mule-begin): New funs. | |
7684 (ps-output-string-prim): Insert string as unibyte. | |
7685 (ps-output-prologue): New fun. | |
7686 (ps-flush-output): Handle the case of 'prologue. | |
7687 (ps-begin-file): Call ps-mule-initialize. | |
7688 (ps-begin-job): Set ps-control-or-escape-regexp differently if | |
7689 printing multibyte characters. | |
7690 (ps-begin-page): Set ps-mule-current-charset to 'ascii. | |
7691 (ps-basic-plot-string): Handle the case of printing ASCII | |
7692 characters by external libraries (e.g. BDF). | |
7693 (ps-set-font): Set ps-last-font. | |
7694 (ps-plot-region): Handle multibyte characters, use | |
7695 ps-mule-plot-string for them. | |
7696 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin. | |
7697 | |
7698 * bdf.el: New file. | |
7699 | |
7700 1998-08-23 Kenichi HANDA <handa@etl.go.jp> | |
7701 | |
7702 * international/mule-cmds.el (select-message-coding-system): New | |
7703 function. | |
7704 (set-language-environment-coding-systems): Set | |
7705 default-sendmail-coding-system. | |
7706 | |
7707 * mail/sendmail.el (sendmail-coding-system): Doc-string modified. | |
7708 (default-sendmail-coding-system): New variable. | |
7709 (sendmail-send-it): Encode the message by a coding system | |
7710 select-message-coding-system returns. | |
7711 | |
7712 1998-08-23 Eric Ludlam <zappo@gnu.org> | |
7713 | |
7714 * speedbar.el: (speedbar-with-writable): remove `toggle-read-only'. | |
7715 (speedbar-mode): Set buffer to read only. | |
7716 (speedbar-temp-buffer-show-function): For emacs don't call hook | |
7717 with arguments. | |
7718 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable. | |
7719 | |
7720 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu> | |
7721 | |
7722 * speedbar.el (speedbar-key-map): Fix typo. | |
7723 | |
7724 See ChangeLog.7 for earlier changes. |