Mercurial > emacs
annotate lisp/ChangeLog @ 31270:a45cbbc51e09
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 29 Aug 2000 14:40:01 +0000 |
parents | d33c1be1708d |
children | f58e0f825bfa |
rev | line source |
---|---|
31264 | 1 2000-08-29 Dave Love <fx@gnu.org> |
2 | |
31270 | 3 * diff-mode.el (diff-mode) <defgroup>: Add :version. |
4 (diff-mode-shared-map): Bind mouse-2. | |
5 (diff-imenu-generic-expression): New variable. | |
6 (diff-mode): Use it. | |
7 | |
31264 | 8 * mouse.el (mouse-major-mode-menu): Use local-key-binding. |
9 (mouse-popup-menubar): Add minor mode menus. | |
10 (popup-menu): Check for lookup-key returning number. | |
11 | |
31263 | 12 2000-08-29 Miles Bader <miles@gnu.org> |
13 | |
14 * comint.el (comint-send-input): Create overlays using the proper | |
15 front/read-advance arguments. | |
16 | |
31254 | 17 2000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
18 | |
19 * ps-print.el: Even/odd pages printing. Doc fix. | |
20 (ps-print-version): New version number (6.0). | |
21 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image) | |
22 (ps-background, ps-begin-file, ps-begin-job): Code fix. | |
23 (ps-print-duplex-feature): Variable eliminated. | |
24 (ps-even-or-odd-pages): New variable. | |
25 | |
31265
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
26 * progmodes/ebnf2ps.el: Doc fix. |
31256 | 27 (ebnf-version): New version (3.3). |
28 (ebnf-user-arrow): Change variable customization to sexp. | |
29 (ebnf-user-arrow): Function eliminated. | |
30 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix. | |
31 | |
31242 | 32 2000-08-29 Kenichi Handa <handa@etl.go.jp> |
33 | |
31244 | 34 * help.el (help-xref-mule-regexp): New variable. |
31242 | 35 (help-make-xrefs): Handle help-xref-mule-regexp. |
36 | |
37 * international/mule-cmds.el (help-xref-mule-regexp-template): New | |
38 variable. | |
39 (describe-input-method): Temporarily activate the specfied input | |
40 method to display the information. | |
41 (describe-language-environment): Hyperlinks to mule related items. | |
42 | |
43 * international/mule-diag.el (charset-multibyte-form-string): New | |
44 function. | |
45 (list-character-sets-1): Use charset-multibyte-form-string. | |
46 (describe-character-set): New function. | |
47 (describe-coding-system): Hyperlinks to safe character sets. | |
48 | |
49 * international/quail.el (quail-help): New arg PACKAGE. | |
50 Hyperlinks to mule related items. | |
51 (quail-help-insert-keymap-description): Use | |
52 substitute-command-keys instead of describe-bindings. | |
53 (quail-translation-help): Hyperlinks to mule related items. | |
54 | |
31240 | 55 2000-08-28 John Wiegley <johnw@gnu.org> |
56 | |
31241 | 57 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to |
58 have a defsubst call itself. Made `eshell-flatten-list' back into | |
59 a function again. | |
60 | |
31240 | 61 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety |
62 catch, in case re-centering point at bottom messes up the display. | |
63 This happens frequently in Emacs 21, due I believe to variable | |
64 line heights. | |
65 | |
66 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order | |
67 to call `find-tag-interactive'. | |
68 | |
69 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display | |
70 the list of remember directories. | |
71 | |
31239 | 72 2000-08-28 John Wiegley <johnw@gnu.org> |
73 | |
74 * align.el: Test align-region-separate to see if it's a symbol. | |
75 | |
76 2000-08-27 John Wiegley <johnw@gnu.org> | |
77 | |
78 * eshell/esh-util.el (eshell-flatten-list): Made this function | |
79 into a defsubst form. It gets used very frequently, although | |
80 calls don't occur all that often. | |
81 | |
82 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before | |
83 examining it. | |
84 | |
85 * eshell/esh-cmd.el (eshell-rewrite-while-command): | |
86 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of | |
87 `eshell-protect'. | |
88 (eshell-copy-handles): Created a new macro for duplicating the | |
89 current set of open handles. This is needed by the looping | |
90 functions. | |
91 (eshell-do-eval): Fixed while and if, so that the eshell-test-body | |
92 is not incorrectly stomped on. | |
93 | |
94 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror | |
95 declaration for pcomplete-use-paring. | |
96 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the | |
97 value of eshell-cmpl-use-paring. | |
98 * pcomplete.el (pcomplete-use-paring): New config variable, to | |
99 indicate whether paring should be used. | |
100 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out | |
101 completion alternatives that have already been used. | |
102 | |
103 * eshell/esh-mode.el (eshell-repeat-argument): Added function, | |
104 bound to C-c C-y, which will repeat the previous N arguments | |
105 (based on prefix argument). | |
106 (eshell-mode): Bind C-c C-y to eshell-repeat-argument. | |
107 | |
108 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer | |
109 if there is no *Help* buffer. This is for XEmacs, which renames | |
110 its help buffers uniquely. TODO: Find out what the current buffer | |
111 name to delete is. | |
112 | |
113 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the | |
114 first entry that correlates to a passwd/group number. Later | |
115 entries (used for group/user name aliasing to multiple IDs) are | |
116 ignored. | |
117 | |
118 * eshell/em-xtra.el (eshell/expr): | |
119 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make) | |
120 (eshell-grep, eshell/diff, eshell/locate): | |
121 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the | |
122 argument list, before passing it to the system command. | |
123 | |
124 * eshell/esh-mode.el (eshell-find-tag): Added a special version of | |
125 `find-tag' for use at final position in Eshell buffers (which | |
126 otherwise triggers an error on Emacs 21). | |
127 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell | |
128 buffer, if it is currently bound to `find-tag'. | |
129 | |
130 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile | |
131 in the list of matched Makefile names. | |
132 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current | |
133 directory, prefer its contents to Makefile. | |
134 | |
135 * eshell/em-dirs.el (eshell/cd): cd commands that look up | |
136 directory parts (like "cd old new", or "cd =regexp"), are now case | |
137 sensitive on non-Windows/DOS platforms. | |
138 | |
139 * eshell/esh-mode.el (eshell-parse-command-input): When a user | |
140 types RET after an open delimiter (like "), display a message | |
141 indicating that Eshell is waiting for the closing delimiter. | |
142 | |
143 * eshell/esh-var.el (eshell/unset): Added a command for unsetting | |
144 environment variables. | |
145 | |
146 * eshell/em-unix.el (eshell/diff): Added logic to fail more | |
147 gracefully if the user enters incorrect arguments. | |
148 | |
149 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in | |
150 Eshell buffers. | |
151 | |
152 * eshell/esh-var.el (eshell-interpolate-variable): | |
153 * eshell/esh-mode.el (eshell-move-argument): | |
154 * eshell/em-unix.el (eshell-du-sum-directory): | |
155 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): | |
156 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of | |
157 (not (= ...)). | |
158 | |
159 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply', | |
160 to ensure the `preserve' flag gets propagated when doing recursive | |
161 directory copies. | |
162 | |
163 2000-08-09 Stefan Monnier <monnier@cs.yale.edu> | |
164 | |
165 * eshell/em-hist.el (eshell-put-history, eshell-get-history): | |
166 Don't convert \n into \0177 in memory. | |
167 (eshell-read-history, eshell-write-history): Convert \n to \0177, | |
168 and back again, when reading and writing. | |
169 | |
170 2000-07-06 Eli Zaretskii <eliz@is.elta.co.il> | |
171 | |
172 * eshell/esh-util.el (eshell-processp): Added to relieve constant | |
173 testing of `fboundp' on `processp'. | |
174 | |
175 * eshell/esh-proc.el (eshell/kill): Use eshell-processp. | |
176 (eshell/jobs): Don't call process-list if it is not bound. | |
177 (eshell-gather-process-output): Support systems where async | |
178 subprocesses aren't supported. | |
179 (eshell-scratch-buffer, eshell-last-sync-output-start): New | |
180 variables. | |
181 | |
182 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when | |
183 eshell-do-eval returns t. | |
184 (eshell-do-pipelines-synchronously): New defmacro. | |
185 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines | |
186 when async subprocesses aren't supported. | |
187 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer | |
188 if async subprocesses aren't supported. | |
189 (eshell-resume-command): Don't assume STATUS is a string. | |
190 | |
191 * eshell/em-unix.el (eshell/rm): Use eshell-processp. | |
192 | |
193 * eshell/esh-io.el (eshell-virtual-targets): Doc fix. | |
194 (eshell-close-target, eshell-get-target): Use eshell-processp. | |
195 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc | |
196 fix. | |
197 (eshell-get-target, eshell-create-handles): Doc fix. | |
198 | |
199 2000-06-28 Miles Bader <miles@lsi.nec.co.jp> | |
200 | |
201 * em-smart.el (eshell-smart-maybe-jump-to-end): Change the | |
202 criterion to include commands that output something, as long as it | |
203 leaves both the command and the end-of-buffer visible when the | |
204 command has exited. | |
205 (eshell-review-quick-commands): Adjust the help doc string | |
206 accordingly. | |
207 | |
31236
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
208 2000-08-28 Peter Breton <pbreton@ne.mediaone.net> |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
209 |
31238
d9e6c7b507bd
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31236
diff
changeset
|
210 * locate.el (locate): Cleaned up locate command's interactive prompting |
31242 | 211 Thanks to Fran,Ag(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions. |
31238
d9e6c7b507bd
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31236
diff
changeset
|
212 |
31236
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
213 * filecache.el (file-cache-case-fold-search): New variable |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
214 (file-cache-assoc-function): New variable |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
215 (file-cache-minibuffer-complete): Use file-cache-assoc-function. |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
216 Use file-cache-case-fold-search variable |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
217 (file-cache-add-file): Use file-cache-assoc-function |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
218 (file-cache-delete-file): likewise |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
219 (file-cache-directory-name): likewise |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
220 (file-cache-debug-read-from-minibuffer): likewise |
53ceca8d12b9
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
31231
diff
changeset
|
221 |
31231 | 222 2000-08-28 Gerd Moellmann <gerd@gnu.org> |
223 | |
224 * abbrev.el (list-abbrevs): Add optional parameter LOCAL. | |
225 (abbrev-table-name): New function. | |
226 (prepare-abbrev-list-buffer): Add optional parameter LOCAL. | |
227 If non-nil list local abbrev, only. | |
228 | |
31229 | 229 2000-08-28 Stanislav Shalunov <shalunov@internet2.edu> |
230 | |
231 * uce.el (uce-reply-to-uce): Remove hard-coded "*Article*" from | |
232 Gnus support code, and use special article copy buffer | |
233 `(gnus-original-article-buffer)' instead. This allows to get rid | |
234 of article-hide-headers usage (which breaks in the latest Gnus | |
235 version). Thanks to Detlev Zundel. | |
236 | |
31216 | 237 2000-08-28 Kenichi Handa <handa@etl.go.jp> |
238 | |
239 * international/quail.el (quail-use-package): Hide "... loaded" | |
240 message. | |
241 (quail-start-translation, quail-start-conversion): Likewise. | |
242 | |
243 * international/kkc.el (kkc-region): Hide "... loaded" message. | |
244 | |
31212 | 245 2000-08-27 Dave Love <fx@gnu.org> |
246 | |
247 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg. | |
248 | |
31198 | 249 2000-08-27 Miles Bader <miles@gnu.org> |
250 | |
251 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts. | |
252 | |
31195 | 253 2000-08-27 Kenichi Handa <handa@etl.go.jp> |
254 | |
255 * international/ja-dic-cnv.el (skkdic-convert): Insert (require | |
256 'ja-dic-cnv), not (require 'skkdic-cnv). | |
257 | |
31180 | 258 2000-08-26 Miles Bader <miles@gnu.org> |
259 | |
31194 | 260 * faces.el (face-x-resources): Add entry for :inherit. |
261 * cus-face.el (custom-face-attributes): Add support for :inherit | |
262 attribute. Add support for relative face heights. | |
263 (custom-face-attributes-get): Treat `nil' as being a default value | |
264 for :inherit (as well as `unspecified'). | |
265 | |
31191 | 266 * faces.el (set-face-attribute): Update doc string. |
267 (face-attribute-name-alist): Add :inherit. | |
268 (face-valid-attribute-values): Handle :inherit. | |
269 (face-read-string): Rephrase prompt to be less confusing. | |
270 Assume that DEFAULT is a string, since we must return a string. | |
271 (face-read-integer): Use `format' to turn DEFAULT into an | |
272 acceptable default for face-read-string. Match NEW-VALUE against | |
273 the string "unspecified", not the symbol `unspecified', since | |
274 that's what face-read-string returns. | |
275 (read-face-attribute): Lookup a name for old-value in valid, and | |
276 use it as a default if we find one. Treat all values from | |
277 face-read-string as strings. If the default is used, don't do any | |
278 more processing on the value, just use the old value directly. | |
279 (read-face-and-attribute, modify-face): Tweak prompt. | |
280 (read-face-name): Don't assume prompt ends with a space. | |
281 | |
31180 | 282 * faces.el (describe-face): Add support for :inherit attribute. |
283 | |
31166 | 284 2000-08-25 Kenichi Handa <handa@etl.go.jp> |
285 | |
31167 | 286 * terminal.el (terminal-emulator): Fix args to `concat'. Now |
287 concat doesn't accept interger. | |
288 | |
31166 | 289 * international/kkc.el: Remove SKK from Keywords. Require |
290 ja-dic-utl instead of skkdic-utl. | |
291 | |
292 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el. | |
293 Provide ja-dic-cnv instead of skkdic-cnv. | |
294 (ja-dic-filename): Renamed from skkdic-filename. Referers changed | |
295 (iso-2022-7bit-short): Add safe-charsets property. | |
296 (skkdic-convert-postfix): Search Japanese chou-on character in | |
297 addition to Hiragana character. | |
298 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise. | |
299 (skkdic-convert): Change file names from skkdic.el to ja-dic.el | |
300 (batch-skkdic-convert): Likewise. | |
301 | |
302 * international/ja-dic-utl.el: Renamed from skkdic-utl.el. | |
303 Provide ja-dic-utl instead of skkdic-utl. | |
304 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic. | |
305 | |
31156 | 306 2000-08-24 Dave Love <fx@gnu.org> |
307 | |
31158 | 308 * disp-table.el (standard-display-default): Make the test of `l' |
309 useful. | |
310 | |
31156 | 311 * language/european.el ("Latin-8", "Latin-9"): Add input methods, |
312 mod sample text. | |
313 | |
314 * international/iso-ascii.el: Make pilcrow convenient string | |
315 consistent with section. | |
316 (iso-ascii-display): Set up multibyte characters as well as | |
317 unibyte. | |
318 | |
31137 | 319 2000-08-24 Kenichi Handa <handa@etl.go.jp> |
320 | |
321 * international/mule-cmds.el (reset-language-environment): Set | |
322 default-process-coding-system to '(undecided . iso-latin-1), which | |
323 makes process I/O almost consistent with file I/O. Call this | |
324 function when mule-cmds.el[c] is loaded. | |
325 | |
31092 | 326 2000-08-22 Andrew Innes <andrewi@gnu.org> |
327 | |
328 * makefile.w32-in: New file. | |
329 | |
31038 | 330 2000-08-22 Miles Bader <miles@lsi.nec.co.jp> |
331 | |
332 * comint.el (comint-output-filter): Compare end of | |
333 comint-last-output-overlay with the start of the newly inserted | |
334 text, not the end, when deciding whether to extend it. | |
335 Set saved-point's insertion type to advance after insertion. | |
336 | |
337 * shell.el (shell-font-lock-keywords): Remove prompt highlighting, | |
338 since this is now done independently of font-lock mode. | |
339 | |
31009 | 340 2000-08-21 Gerd Moellmann <gerd@gnu.org> |
341 | |
342 * server.el (server-kill-new-buffers): New user option. | |
343 (server-existing-buffer): New buffer-local variable. | |
344 (server-visit-files): When using an existing buffer, set | |
345 server-existing-buffer to t. | |
346 (server-buffer-done): If server-kill-new-buffers is t, kill the | |
347 buffer, unless it was already present before visiting it with | |
348 Emacs server. | |
349 | |
31006 | 350 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il> |
351 | |
352 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag, | |
353 even if the display doesn't support colors: some displays will | |
354 support bold/underline faces. | |
355 | |
30997 | 356 2000-08-21 Gerd Moellmann <gerd@gnu.org> |
357 | |
31004 | 358 * emacs-lisp/cl.el (cl-macroexpand): Doc fix. |
359 | |
30997 | 360 * startup.el (command-line): If user's init file had an error, |
361 add explanatory text to *Messages*. | |
362 | |
30994 | 363 2000-08-21 Kenichi Handa <handa@etl.go.jp> |
364 | |
365 * man.el (Man-getpage-in-background): Decode the process output by | |
366 the system locale coding system. | |
367 | |
30980 | 368 2000-08-20 Dave Love <fx@gnu.org> |
369 | |
30991 | 370 * wid-edit.el (widget-choose, widget-choice-mouse-down-action): |
371 Don't test x-popup-menu. | |
372 (function) <complete-function>: Complete only fbound symbols. | |
373 <validate, value>: New. | |
374 (variable) <complete-function>: Complete only bound symbols. | |
375 (coding-system): Add :base-only, :complete-function, :validate, | |
376 :value, :prompt-match. | |
377 (widget-coding-system-prompt-value): Use read-coding-system and | |
378 act on :base-only. | |
379 (editable-field): Add :help-echo. | |
380 (widget-push-button-gui, widget-push-button-cache) | |
381 (widget-gui-action, widget-editable-list-gui): COmment out, along | |
382 with uses. | |
383 (widget-at): Make arg optional. | |
384 (widget-echo-help): Adjust for current help-echo calling sequence. | |
385 (widget-specify-field, widget-specify-button) | |
386 (widget-specify-insert, widget-get-sibling, widget-image-find) | |
387 (widget-convert, widget-insert, widget-leave-text) | |
388 (widget-beginning-of-line, widget-end-of-line, widget-kill-line) | |
389 (widget-setup, widget-field-find, widget-before-change) | |
390 (widget-after-change, widget-default-complete) | |
391 (widget-default-create, widget-default-delete) | |
392 (widget-push-button-value-create, editable-field) | |
393 (widget-field-prompt-value, widget-field-validate) | |
394 (widget-choice-value-create, widget-choice-action) | |
395 (widget-choice-validate, widget-checklist-add-item) | |
396 (widget-radio-add-item, widget-radio-chosen) | |
397 (widget-radio-value-inline, widget-editable-list-value-create) | |
398 (widget-editable-list-entry-create) | |
399 (widget-documentation-link-add) | |
400 (widget-documentation-string-value-create) | |
401 (widget-regexp-validate, widget-file-complete) | |
402 (widget-sexp-validate, widget-plist-convert-widget) | |
403 (widget-plist-convert-widget, widget-alist-convert-widget) | |
404 (widget-alist-convert-widget, widget-color-complete): Simplify, | |
405 particularly to avoid bindings which aren't optimized out. | |
406 | |
30980 | 407 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces): |
408 Doc fix. | |
409 (down-list, backward-up-list, up-list, kill-sexp) | |
410 (backward-kill-sexp, mark-sexp): Make arg optional. | |
411 (lisp-complete-symbol): Add optional arg PREDICATE. | |
412 | |
413 * cus-start.el: Add display-buffer-reuse-frames, | |
414 file-coding-system-alist. | |
415 | |
30975 | 416 2000-08-20 Gerd Moellmann <gerd@gnu.org> |
417 | |
418 * startup.el (command-line): Clear realized faces after | |
419 modifying TTY color mappings. | |
420 | |
30972 | 421 2000-08-20 Miles Bader <miles@gnu.org> |
422 | |
423 * faces.el (face-attr-match-p): Don't return true if ATTRS are | |
424 merely a subset of FACE's attributes. | |
425 | |
30966 | 426 2000-08-19 Miles Bader <miles@gnu.org> |
427 | |
428 * comint.el (comint-output-filter): Save the point with a marker, | |
429 not just a buffer position. | |
430 | |
431 * international/mule.el (set-buffer-process-coding-system): Make | |
432 interactive prompt less confusing. | |
433 | |
30963 | 434 2000-08-19 Gerd Moellmann <gerd@gnu.org> |
435 | |
436 * hilit-chg.el: General cleanup of doc strings, comments and | |
437 code formatting. | |
438 | |
30960 | 439 2000-08-19 Miles Bader <miles@gnu.org> |
440 | |
441 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line): | |
442 Compiler macro removed; beginning-of-line is no longer always | |
443 equivalent to forward-line, in the presence of fields. | |
444 | |
445 * comint.el (comint-output-filter): Remove ad-hoc saving of | |
446 restriction, and just use save-restriction, now that it works | |
447 correctly. Don't adjust comint-last-input-start to account for | |
448 our insertion; it shouldn't have moved because we don't use | |
449 insert-before-markers anymore. Comment out call to | |
450 `force-mode-line-update'; why is it here? | |
451 | |
452 * gud.el (gud-basic-call): Temporarily widen gud comint buffer | |
453 while checking for prompt to delete. Use `forward-line 0' | |
454 instead of beginning-of-line. | |
455 (gud-filter): Temporarily widen gud comint buffer while | |
456 examining output. | |
457 | |
30955
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
458 2000-08-18 Stefan Monnier <monnier@cs.yale.edu> |
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
459 |
31018
c5196e8ccc16
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31009
diff
changeset
|
460 * progmodes/sh-script.el: Big bag of typos. |
c5196e8ccc16
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31009
diff
changeset
|
461 |
30955
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
462 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp |
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
463 check since ispell-process is not bound when ispell is not yet loaded. |
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
464 |
30953 | 465 2000-08-18 Dave Love <fx@gnu.org> |
466 | |
467 * image.el (find-image): Copy `spec' before using plist-put. | |
468 | |
30948 | 469 2000-08-18 Gerd Moellmann <gerd@gnu.org> |
470 | |
471 * textmodes/ispell.el (ispell-dictionary-alist-6): Add | |
472 `portugues'. | |
473 | |
474 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to | |
475 backward-kill-sexp, analogous to kill-sexp. | |
476 | |
477 * progmodes/icon.el (icon-indent-line) | |
478 (icon-is-continuation-line): Handle comments specially. | |
479 | |
480 2000-08-17 Ken Stevens <k.stevens@ieee.org> | |
481 | |
482 * ispell.el: Set to standard author/maintainer/keyword fields. | |
483 Fine tuning to menu map appearance and operation, and added help. | |
484 Remove `start' and `end' error messages when compiling. | |
485 (ispell-choices-win-default-height): Fixed comment string. | |
486 (ispell-dictionary-alist-1): Fixed regexp in castellano and | |
487 castellano8 dictionaries. | |
488 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary. | |
489 (ispell-dictionary-alist-4): Fixed regexp in francais-tex | |
490 dictionary, added italiano dictionary. | |
491 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a | |
492 word character | |
493 (ispell-tex-skip-alists): Added psfig support. | |
494 (ispell-skip-html): Renamed from ispell-skip-sgml. | |
495 (ispell-begin-skip-region-regexp, ispell-skip-region) | |
496 (ispell-minor-check): Improved html skipping support to skip across | |
497 code, and recognize `&' commands without propper `;' syntax; | |
498 (ispell-process-line): Fix alignment error when manually | |
499 correcting spelling. | |
500 (ispell): Fix comment string. | |
501 (ispell-add-per-file-word-list): Always put word list on new line. | |
502 | |
30922 | 503 2000-08-17 Gerd Moellmann <gerd@gnu.org> |
504 | |
30928 | 505 * format.el (format-encode-run-method): Fix error message to say |
506 `encode' instead of `decode'. Use save-window-excursion around | |
507 shell-command-on-region as in format-decode-run-method because | |
508 shell-command-on-region can display a buffer with error output. | |
509 (format-decode): Don't record undo information for the decoding. | |
510 (format-annotate-function): Add parameter FORMAT-COUNT. Make | |
511 that number part of the temporary buffer name so that more than | |
512 one decoding using a temporary buffer can happen safely. | |
513 | |
514 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead | |
515 of `A-z' in the regexp. | |
516 | |
517 * hilit-chg.el: Fix typos in commentary. | |
518 | |
30922 | 519 * help.el (view-emacs-news): Rewritten for new naming scheme |
520 for old NEWS files. | |
521 | |
522 * startup.el (command-line): Pop to *Messages* in case an error | |
523 is signaled while loading user-init-file. | |
524 | |
30908
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
525 2000-08-17 Andreas Schwab <schwab@suse.de> |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
526 |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
527 * files.el (insert-directory): Don't lose original file name, |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
528 undoing an undocumented change. |
ab7340cbf81f
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
30906
diff
changeset
|
529 |
30906 | 530 2000-08-17 Alex Schroeder <alex@gnu.org> |
531 | |
532 * sql.el (sql-magic-go): Use comint-bol. | |
533 (sql-copy-column): Use comint-line-beginning-position. | |
534 (comint-line-beginning-position): Define a replacement for | |
535 comint-line-beginning-position if it is not fboundp. | |
536 | |
537 2000-08-17 Alex Schroeder <alex@gnu.org> | |
538 | |
539 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map; | |
540 it didn't have any effect anyway. | |
541 | |
542 2000-08-17 Alex Schroeder <alex@gnu.org> | |
543 | |
544 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters | |
545 --pset and pager=off instead of sending \\o|cat at the beginning | |
546 of the session. | |
547 | |
30903 | 548 2000-08-17 Miles Bader <miles@gnu.org> |
549 | |
550 * progmodes/octave-inf.el: Add compatibility definition of | |
551 comint-line-beginning-position. | |
552 | |
30898 | 553 2000-08-17 Kenichi Handa <handa@etl.go.jp> |
554 | |
555 * startup.el (normal-top-level): Look in each dir in load-path for | |
556 a leim-list.el file too. This assures of loading leim-list.el | |
557 that is created at Emacs installation time even if a user have his | |
558 own leim-list.el. | |
559 | |
30897 | 560 2000-08-17 Miles Bader <miles@gnu.org> |
561 | |
562 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the | |
563 foreground color to black if the background is dark. | |
564 | |
30887
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
565 2000-08-16 Stefan Monnier <monnier@cs.yale.edu> |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
566 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
567 * loadhist.el (unload-feature): Typo. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
568 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
569 * finder.el (finder-compile-keywords): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
570 * cus-dep.el (custom-make-dependencies): Add local-variable settings |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
571 to the generated file. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
572 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
573 * mail/mh-e.el (mh-make-local-vars): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
574 Replace make-variable-buffer-local with make-local-variable. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
575 |
30955
3e6393238058
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30953
diff
changeset
|
576 * play/landmark.el: |
30887
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
577 * options.el (Edit-options-{set,toggle,t,nil}): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
578 * mail/mailabbrev.el (mail-abbrevs-mode): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
579 * textmodes/tex-mode.el (tex-expand-files): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
580 * textmodes/outline.el (outline-minor-mode): Don't quote lambda. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
581 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
582 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
583 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
584 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point). |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
585 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
586 Allow going past the last element. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
587 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark) |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
588 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
589 (cvs-mouse-toggle-mark): Don't move point. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
590 (cvs-revert-if-needed): Avoid re-eval of local variables and modes. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
591 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
592 * progmodes/compile.el (grep): Provide a default set of files. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
593 (next-error): Docstring fix. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
594 (compilation-find-file): Avoid find-file (fails in a dedicated window). |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
595 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
596 * emacs-lisp/easy-mmode.el (define-minor-mode): |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
597 Use `symbol-value' to keep the byte-compiler quiet. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
598 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
599 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
600 (diff-find-source-location): New fun, extracted from diff-goto-source. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
601 (diff-goto-source): Use it. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
602 (diff-next-complex-hunk, diff-filter-lines): New function. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
603 (diff-apply-hunk): New command. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
604 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
605 * smerge-mode.el (smerge-mode-menu): Doc fix. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
606 |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
607 * msb.el (msb-mode): Define it in terms of define-minor-mode. |
c4366892a814
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30870
diff
changeset
|
608 |
30870 | 609 2000-08-16 Dave Love <fx@gnu.org> |
610 | |
30894 | 611 * windmove.el (windmove) <defgroup>: Add :version. |
612 | |
613 * net/goto-addr.el: Don't require browse-url. Require thingatpt. | |
614 (goto-address-fontify-p, goto-address-highlight-p) | |
615 (goto-address-url-face, goto-address-url-mouse-face) | |
616 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix. | |
617 (goto-address-url-regexp): Use thing-at-point-url-regexp. | |
618 (goto-address-fontify, goto-address-at-mouse): Simplify, | |
619 (goto-address-at-point): browse-url-url-at-point, | |
620 goto-address-find-address-at-point can return nil. | |
621 (goto-address-find-address-at-point): Return nil on failure. | |
622 | |
623 * align.el (align) <defgroup>: Add :version. | |
624 | |
625 * calculator.el (calculator): Add :version. | |
626 (calculator): Use two lines for calculator window if `modeline' | |
627 face is boxed. | |
628 | |
30870 | 629 * play/5x5.el: Doc fixes. |
630 (5x5) <defgroup>: Add :version. | |
631 | |
632 * play/fortune.el (fortune) <defgroup>: Add :version. | |
633 (fortune-append): Fix error message. | |
634 (fortune-from-region): Doc fix. | |
635 | |
636 * play/pong.el (pong): Doc fix. | |
637 | |
638 * play/morse.el: Keywords, commentary, autoloads. | |
639 | |
30854 | 640 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il> |
641 | |
642 * desktop.el (desktop-save): Don't look at symbol-value of a | |
643 member of minor-mode-alist, unless it is boundp. | |
644 | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
645 2000-08-16 Sam Steingold <sds@gnu.org> |
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
646 |
30897 | 647 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
648 `while'; use `with-current-buffer' instead of `save-excursion'. |
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
649 Removed unnecessary kludges now that "*Buffer List*" is excluded. |
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
650 |
30846 | 651 2000-08-16 Kenichi Handa <handa@etl.go.jp> |
652 | |
653 * international/ccl.el (declare-ccl-program): Docstring modified. | |
654 (ccl-execute-with-args): Likewise. | |
655 | |
30839 | 656 2000-08-16 Miles Bader <miles@gnu.org> |
657 | |
30903 | 658 * progmodes/sql.el: Add compatibility definition of |
30839 | 659 comint-line-beginning-position. |
660 | |
30808 | 661 2000-08-15 Gerd Moellmann <gerd@gnu.org> |
662 | |
30829 | 663 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as |
664 'buffer-menu' property. | |
665 (Buffer-menu-buffer): Use `buffer' property if `buffer-name' | |
666 fails. | |
667 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name | |
668 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer | |
669 wasn't killed. | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
670 |
30825 | 671 * buff-menu.el (list-buffers-noselect): Don't display the |
672 *Buffer List* buffer. | |
673 | |
30822 | 674 * font-lock.el: Require jit-lock to prevent a very late |
675 `Loading jit-lock' message. | |
676 | |
30808 | 677 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
678 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors' |
30808 | 679 mail address. |
680 | |
30804 | 681 2000-08-15 Miles Bader <miles@gnu.org> |
682 | |
683 * textmodes/ispell.el (ispell-graphic-p): New constant. | |
684 (ispell-choices-win-default-height, ispell-help): Use | |
685 `ispell-graphic-p' instead of `xemacsp'. | |
686 | |
30802 | 687 2000-08-15 Dave Love <fx@gnu.org> |
688 | |
30842 | 689 * simple.el: Autoload widget-convert when compiling. |
690 (mail-user-agent): Doc fix. | |
691 | |
692 * help.el (function-called-at-point, variable-at-point): Use | |
693 with-syntax-table. | |
694 (help-manyarg-func-alist): Add insert-and-inherit. | |
695 | |
696 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'. | |
697 | |
698 * delsel.el (delsel-unload-hook): New function. | |
699 | |
700 * find-file.el: Doc fixes. Move provide to end. | |
701 (ff) <defgroup>: Add :link. | |
702 (ff-goto-click): Deleted. | |
703 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window): | |
704 Use mouse-set-point. | |
705 | |
706 * textmodes/tildify.el: Doc fixes. | |
707 (tildify) <defgroup>: Add:version. | |
708 | |
709 * progmodes/glasses.el (glasses) <defgroup>: Add :version. | |
710 (glasses-custom-set): Use set-default, not set. | |
711 (minor-mode-alist): Propertize the lighter. | |
712 (glasses-mode): Provide optional arg. | |
713 | |
30813 | 714 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link. |
715 (global-cwarn-mode): Don't make it a user option. Unquote lambda. | |
716 (cwarn-font-lock-feature-keywords-alist): Don't make it a user | |
717 option. Provide :type. | |
718 (cwarn-configuration): Provide :type. | |
719 (cwarn-mode): Doc fix. | |
720 | |
721 * add-log.el (change-log-merge): Doc fix. | |
722 (change-log-redate): New command. | |
723 | |
30802 | 724 * net/browse-url.el (browse-url-filename-alist): Add a clause for |
725 Doze and Dog. | |
726 (browse-url): Use dolist, not mapcar. | |
727 (browse-url-at-point): Check for null url. | |
728 (browse-url-event-buffer, browse-url-event-point): Functions | |
729 deleted. | |
730 (browse-url-at-mouse, browse-url-netscape): Simplify. | |
731 | |
732 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus | |
733 modes. | |
734 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators): | |
735 Fix previous change to mapcan. | |
736 (msb--init-file-alist, msb--add-separators) | |
737 (msb--make-keymap-menu): Simplify. | |
738 (msb--choose-file-menu): Use copy-sequence. | |
739 (msb-mode-map): Add title to keymap. | |
740 (msb-unload-hook): New function. | |
741 | |
742 * bs.el: Fix indentation. | |
743 (bs) <defgroup>: Add :links. | |
30894 | 744 (bs-show): Doc fix. |
745 (bs-apply-sort-faces): Don't use window-system. | |
746 (bs-mode-font-lock-keywords): Avoid testing for XEmacs. | |
30802 | 747 |
30796 | 748 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il> |
749 | |
750 * calendar/timeclock.el (timeclock-file): Run .timelog through | |
751 convert-standard-filename. | |
752 | |
30788 | 753 2000-08-14 Gerd Moellmann <gerd@gnu.org> |
754 | |
30790 | 755 * emacs-lisp/authors.el: New file. |
756 | |
30788 | 757 * paren.el (show-paren-priority): New user option. |
758 (show-paren-function): Set overlay priorities to | |
759 show-paren-priority. | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
760 |
30783 | 761 2000-08-14 Miles Bader <miles@gnu.org> |
762 | |
763 * comint.el (comint-bol): Use `forward-line 0' instead of calling | |
764 beginning-of-line with inhibit-field-text-motion bound. | |
765 | |
30781 | 766 2000-08-14 Gerd Moellmann <gerd@gnu.org> |
767 | |
768 * calendar/timeclock.el: New file. | |
769 | |
770 2000-08-14 David Ponce <david@dponce.com> | |
771 | |
772 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to | |
773 `widget-button-click'. so that one can use left mouse button to | |
774 click on dialog buttons. | |
775 | |
776 2000-08-14 Emmanuel Briot <briot@gnat.com> | |
777 | |
778 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase | |
779 identifiers, since XML is case sensitive | |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
780 |
30767 | 781 2000-08-12 Miles Bader <miles@gnu.org> |
30851
f9233f642b88
* buff-menu.el (list-buffers-noselect): Use `dolist' instead of
Sam Steingold <sds@gnu.org>
parents:
30846
diff
changeset
|
782 |
30769 | 783 * comint.el (comint-output-filter): Don't bother frobbing |
784 window-start, it doesn't seem to be necessary. | |
30767 | 785 |
786 * comint.el (comint-send-string, comint-send-region): Make into | |
787 real functions. Snapshot the prompt before sending. | |
788 | |
30764 | 789 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il> |
790 | |
791 * info.el (Info-find-emacs-command-nodes): Rewrite to use | |
792 technique similar to Info-index, instead of relying on specific | |
793 names of relevant Index nodes. | |
794 (Info-goto-emacs-command-node): Bind Info-history to nil when | |
795 going to the first node found by Info-find-emacs-command-nodes. | |
796 | |
30770
dfa82b47c25d
Fix a typo in Eli Zaretskii's name.
Eli Zaretskii <eliz@gnu.org>
parents:
30769
diff
changeset
|
797 2000-08-11 Eli Zaretskii <eliz@is.elta.co.il> |
30758 | 798 |
799 * menu-bar.el (menu-bar-help-menu): Add a :help string. | |
800 | |
30741 | 801 2000-08-10 Miles Bader <miles@gnu.org> |
802 | |
803 * comint.el (comint-output-filter): Doc fixes & misc code cleanup. | |
804 | |
30739 | 805 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> |
806 | |
807 * info.el (Info-file-list-for-emacs): More elements for the | |
808 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs, | |
809 and woman manuals. | |
810 | |
30737 | 811 2000-08-10 Miles Bader <miles@lsi.nec.co.jp> |
812 | |
813 * comint.el (comint-send-input): Make the newline boundary overlay | |
814 rear-nonsticky. Use `insert' instead of `insert-before-markers'. | |
815 (comint-output-filter): Use `insert' instead of | |
816 `insert-before-markers'. Extend comint-last-output-overlay when | |
817 necessary since we can't rely on insert-before-markers to do it. | |
818 * gud.el (gud-filter): Use `with-current-buffer' instead of | |
819 save-excursion when inserting the output, so that point gets | |
820 updated correctly; the old method relied on a rather dodgy | |
821 side-effect of comint-output-filter to avoid the effect of | |
822 save-excursion. | |
823 | |
30734 | 824 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il> |
825 | |
826 * files.el (recover-file): Call insert-directory instead of | |
827 invoking `ls' directly. | |
828 | |
30732 | 829 2000-08-10 Miles Bader <miles@gnu.org> |
830 | |
831 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face) | |
832 (comint-last-prompt-overlay): New variables. | |
833 (comint-output-filter): Implement prompt highlighting. | |
834 (comint-snapshot-last-prompt): New function. | |
835 (comint-send-input): Snapshot the last prompt. | |
836 Use comint-highlight-input-face. | |
837 (comint-highlight-input-face): Renamed from `comint-highlight-face'. | |
838 Use defface instead of defcustom. | |
839 (send-invisible, comint-send-eof): Snapshot the last prompt. | |
840 (comint-delchar-or-maybe-eof): Use comint-send-eof. | |
841 (comint-mode): Make `comint-last-prompt-overlay' buffer-local. | |
842 | |
30718
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
843 2000-08-09 Stefan Monnier <monnier@cs.yale.edu> |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
844 |
30719
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
845 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
846 (regexp-opt-group): Use a list of chars for `letters'. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
847 (regexp-opt-charset): `chars' is now a list of chars. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
848 Use a char-table rather than a vector so it works for multibyte chars. |
fd7db1cf7adf
(make-bool-vector): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30718
diff
changeset
|
849 |
30718
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
850 * pcvs.el (cvs-menu): Don't move point. Use popup-menu. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
851 Set cvs-minor-current-files to the selected fileinfo. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
852 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
853 (cvs-mode-insert): Manually macroexpand `ignore-errors'. |
39957e672714
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30715
diff
changeset
|
854 |
30715 | 855 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il> |
856 | |
857 * files.el (insert-directory): Don't call access-file on | |
858 directories on DOS and Windows. | |
859 | |
30704 | 860 2000-08-09 Kenichi Handa <handa@etl.go.jp> |
861 | |
862 * international/ccl.el (ccl-embed-data): Make ccl-program-vector | |
863 longer if necessary. | |
864 (ccl-embed-code): Call ccl-embed-data to store CODE in | |
865 ccl-program-vector. | |
866 | |
30701 | 867 2000-08-09 Miles Bader <miles@gnu.org> |
868 | |
869 * comint.el (comint-output-filter): Properly handle the case where | |
870 the text surrounded by comint-last-output-overlay was deleted. | |
871 | |
30671 | 872 2000-08-08 Gerd Moellmann <gerd@gnu.org> |
873 | |
30693 | 874 * info.el (Info-insert-dir): Use Info-additional-directory-list if |
875 non-nil. | |
876 (Info-file-list-for-emacs): Remove "info" from the list because | |
877 that leads to trying to use the documentation from file `info' | |
878 in various situations where it isn't appropriate, for instance | |
879 C-h C-k C-h i. | |
880 | |
881 * ffap.el (ffap-read-file-or-url-internal): Handle case that | |
882 DIR and/or STRING are nil. | |
883 | |
884 * progmodes/compile.el (compilation-setup): Make variable | |
885 compilation-error-screen-columns buffer-local, as some comment | |
886 in the code suggests it should be. | |
887 | |
888 * files.el (auto-mode-interpreter-regexp): New variable. | |
889 (set-auto-mode): Use it. | |
890 | |
891 * indent.el (indent-for-tab-command): Doc fix. | |
892 | |
893 * mouse-sel.el (mouse-sel-mode): Doc fix. | |
894 | |
30671 | 895 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N=' |
896 labels. | |
897 | |
898 * help.el (print-help-return-message): When | |
899 display-buffer-reuse-frames is set, let the help window been quit, | |
900 instead of deleting it, which might delete a reused frame. | |
901 | |
30664 | 902 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il> |
903 | |
904 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to | |
905 rename a directory to a name that differs only by its letter case. | |
906 | |
30655 | 907 2000-08-08 Kenichi Handa <handa@etl.go.jp> |
908 | |
909 * international/quail.el (quail-define-rules): Handle Quail decode | |
910 map correctly. Add code for supporting annotations. | |
911 (quail-install-decode-map): New function. | |
912 (quail-defrule-internal): New optional arguments decode-map and | |
913 props. | |
914 (quail-advice): New function. | |
915 | |
30651
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
916 2000-08-07 Sam Steingold <sds@gnu.org> |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
917 |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
918 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass', |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
919 `defconst', `define-condition', `with-slots'. |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
920 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'. |
61c2f9fcb8f6
* emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
Sam Steingold <sds@gnu.org>
parents:
30649
diff
changeset
|
921 |
30649 | 922 2000-08-03 Miles Bader <miles@gnu.org> |
923 | |
924 * comint.el (comint-use-prompt-regexp-instead-of-fields): | |
925 New variable. | |
926 (comint-prompt-regexp, comint-get-old-input): Document dependence on | |
927 comint-use-prompt-regexp-instead-of-fields. | |
928 (comint-send-input): Add `input' field property to stuff we send to | |
929 the process, if comint-use-prompt-regexp-instead-of-fields is nil. | |
930 (comint-output-filter): Add `output' field property to process | |
931 output, if comint-use-prompt-regexp-instead-of-fields is nil. | |
932 (comint-replace-by-expanded-history) | |
933 (comint-get-old-input-default, comint-show-output) | |
934 (comint-backward-matching-input, comint-forward-matching-input) | |
935 (comint-next-prompt, comint-previous-prompt): Use field | |
936 properties if comint-use-prompt-regexp-instead-of-fields is nil. | |
937 (comint-line-beginning-position): New function. | |
938 (comint-bol): Use comint-line-beginning-position. Make ARG optional. | |
939 (comint-replace-by-expanded-history-before-point): Use | |
940 comint-line-beginning-position and line-end-position. | |
941 (comint-last-output-overlay): New variable. | |
942 (comint-mode): Make `comint-last-output-overlay' buffer-local. | |
943 | |
944 * shell.el (shell-prompt-pattern): Doc change. | |
945 (shell-backward-command): Use line-beginning-position. | |
946 | |
947 * gud.el (gud-gdb-complete-command): Use | |
948 comint-line-beginning-position. | |
949 | |
950 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if | |
951 comint-bol doesn't actually go to the beginning of the line. | |
952 | |
953 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp | |
954 if comint-use-prompt-regexp-instead-of-fields is non-nil. | |
955 (try-expand-line-all-buffers): Likewise. | |
956 | |
957 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of | |
958 explicitly matching comint-prompt-regexp. | |
959 (sql-copy-column): Use comint-line-beginning-position instead of | |
960 explicitly matching comint-prompt-regexp. | |
961 | |
962 * progmodes/octave-inf.el (inferior-octave-complete): Use | |
963 comint-line-beginning-position. | |
964 | |
965 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change. | |
966 | |
967 * progmodes/idlw-shell.el (idlwave-shell-send-command): When | |
968 looking for a prompt, use `forward-line 0' instead of | |
969 `beginning-of-line', to avoid getting caught by an input field. | |
970 | |
30633 | 971 2000-08-07 Gerd Moellmann <gerd@gnu.org> |
972 | |
973 * files.el (shell-quote-wildcard-pattern): Make sure to return | |
974 PATTERN, in the Unix case. | |
975 | |
30629 | 976 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il> |
977 | |
978 * play/zone.el (zone): Discard any pending input before running | |
979 the randomly-chosen pgm. | |
980 | |
30623 | 981 2000-08-07 Kenichi Handa <handa@etl.go.jp> |
982 | |
983 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of | |
984 checking the existence of any multibyte characters. | |
985 | |
30619 | 986 2000-08-06 Gerd Moellmann <gerd@gnu.org> |
987 | |
30622 | 988 * help.el (describe-mode): Test minor-mode symbol for being |
989 bound before testing its value for being nil. | |
990 | |
30619 | 991 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of |
992 `first', `second', and `third'. | |
993 | |
994 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05. | |
995 (second): Make it an alias for `cadr'. | |
996 | |
30616 | 997 2000-08-06 Eli Zaretskii <eliz@is.elta.co.il> |
998 | |
999 * bs.el (bs-apply-sort-faces): Don't use window-system, since all | |
1000 types of display support faces now. | |
1001 | |
30614 | 1002 2000-08-05 Gerd Moellmann <gerd@gnu.org> |
1003 | |
1004 * pcvs.el (require): Require `cl' during compilation, only. | |
1005 | |
1006 * emacs-lisp/cl.el (first, ..., tenth): Make them macros. | |
1007 (toplevel): Remove `remq' and `remove' from autoloads. | |
1008 (cl-fake-autoloads): New variable. If set, arrange for an error | |
1009 when CL functions etc. are autoloaded. | |
1010 | |
30585 | 1011 2000-08-04 Eli Zaretskii <eliz@is.elta.co.il> |
1012 | |
30593 | 1013 * play/zone.el (zone, zone-pgm-stress): Don't use window-system. |
1014 | |
30591 | 1015 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is |
1016 popped up, but the user clicks outside the menu, return an empty | |
1017 regexp (that causes unhighlight-regexp to have no effect). | |
1018 | |
30589 | 1019 * menu-bar.el (menu-bar-games-menu): Add Zone. |
1020 | |
30585 | 1021 * hi-lock.el (toplevel): Require font-lock. |
1022 | |
30576 | 1023 2000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
1024 | |
31265
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
1025 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward. |
30576 | 1026 (ebnf-8-bit-chars): New var for bug fix. |
1027 (ebnf-string): Bug fix. | |
1028 | |
30569
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1029 2000-08-03 Sam Steingold <sds@gnu.org> |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1030 |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1031 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties' |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1032 instead of `buffer-string'. |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1033 (require 'cl): Always, not just when compiling. |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1034 `ignore-errors' in `interactive', `list*', `defun*' &c make this |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1035 necessary. |
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1036 |
30567 | 1037 2000-08-03 Eli Zaretskii <eliz@is.elta.co.il> |
1038 | |
1039 * international/mule-cmds.el (select-safe-coding-system): Make | |
1040 the message text about selecting a safe coding system more clear. | |
1041 | |
30564 | 1042 2000-08-02 Gerd Moellmann <gerd@gnu.org> |
1043 | |
30565 | 1044 * hi-lock.el: New file. |
1045 | |
1046 * play/zone.el: New file. | |
1047 | |
30564 | 1048 * replace.el (occur): Set tab-width in the *Occur* buffer to the |
1049 value of tab-width in the original buffer. Choose a line number | |
1050 format that's a multiple of the original buffer's tab width, so | |
1051 that lines appear right. | |
1052 | |
1053 * textmodes/ispell.el (ispell): New function, replacing an alias. | |
1054 Spell-check active region if in transient-mark-mode and mark | |
1055 is active; otherwise spell-check buffer. | |
1056 | |
1057 2000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
1058 | |
1059 * ps-mule.el: Fix a customization problem on | |
1060 ps-mule-font-info-database-default. | |
1061 | |
30555 | 1062 2000-08-02 Eli Zaretskii <eliz@is.elta.co.il> |
1063 | |
1064 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use | |
1065 display-mouse-p instead of window-system. | |
1066 (ebrowse-member-mode-map): Ditto. | |
1067 | |
30553 | 1068 2000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
1069 | |
31265
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
1070 * progmodes/ebnf2ps.el: Update ps-print functions call. |
d33c1be1708d
Fix the file name in the entries for ebnf2ps.el.
Eli Zaretskii <eliz@gnu.org>
parents:
31264
diff
changeset
|
1071 Indentation fix. Doc fix. |
30553 | 1072 (ebnf-version): New version number (3.2). |
1073 (ebnf-format-color, ebnf-begin-job): Code fix. | |
30569
f7a0912532da
* pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
Sam Steingold <sds@gnu.org>
parents:
30567
diff
changeset
|
1074 |
30547 | 1075 2000-08-01 Eli Zaretskii <eliz@is.elta.co.il> |
1076 | |
30549 | 1077 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition |
1078 font lock support on window-system. | |
1079 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise. | |
1080 | |
30547 | 1081 * textmodes/ispell.el (ispell-highlight-spelling-error): Use |
1082 display-color-p, if fboundp, instead of window-system. | |
1083 | |
30545 | 1084 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il> |
1085 | |
1086 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p | |
1087 instead of window-system. | |
1088 | |
1089 * wid-edit.el (widget-choose): Use display-mouse-p instead of | |
1090 window-system. | |
1091 (widget-choice-mouse-down-action): Use display-popup-menus-p | |
1092 instead of window-system. | |
1093 | |
1094 * strokes.el (strokes-file): Run the file name through | |
1095 convert-standard-filename. | |
1096 (strokes-mode): Call display-mouse-p instead of looking at | |
1097 window-system. Change the error message accordingly. | |
1098 | |
1099 * progmodes/cpp.el (toplevel): Support faces on tty's. | |
1100 | |
1101 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X) | |
1102 (lm-plot-square, lm-init-display): Don't use window-system. | |
1103 | |
1104 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face) | |
1105 (gomoku-plot-square, gomoku-init-display): Don't use window-system. | |
1106 | |
1107 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p | |
1108 instead of looking at window-system. | |
1109 | |
30528 | 1110 2000-07-30 Gerd Moellmann <gerd@gnu.org> |
1111 | |
1112 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead | |
1113 of testing if iswitchb-prepost-hooks is bound, because the | |
1114 latter will always be true when invoking a recursive minibuffer | |
1115 from an active Iswitchb buffer. | |
1116 | |
30526 | 1117 2000-07-30 Eli Zaretskii <eliz@is.elta.co.il> |
1118 | |
1119 * files.el (shell-quote-wildcard-pattern): New function. | |
1120 (insert-directory): Call it. Only prepend "\" to command on Unix | |
1121 and GNU/Linux systems. | |
1122 | |
30524 | 1123 2000-07-30 Gerd Moellmann <gerd@gnu.org> |
1124 | |
1125 * eshell/esh-groups.el: Change custom :link file names | |
1126 from `eshell.info' to `eshell'. | |
1127 | |
1128 2000-07-30 Francis Wright <fjw@maths.qmw.ac.uk> | |
1129 | |
1130 * dired.el (dired-build-subdir-alist): Expand subdirectory names | |
1131 correctly in recursive ange-ftp listings. | |
1132 | |
1133 2000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
1134 | |
1135 * ps-print.el: Fix bug 1: if ps-font-size-internal, | |
1136 ps-header-font-size-internal and | |
1137 ps-header-title-font-size-internal variables are not set, | |
1138 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if | |
1139 face text property is (foreground-color . COLOR) or | |
1140 `(background-color . COLOR)', ps-print crashes. Doc fix. | |
1141 (ps-print-version): New version number (5.2.4). | |
1142 (ps-plot-region): Code fix. | |
1143 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1. | |
1144 (ps-face-attribute-list, ps-face-attributes, ps-face-background): | |
1145 Bug fix 2. | |
1146 | |
1147 2000-07-30 Milan Zamazal <pdm@freesoft.cz> | |
1148 | |
1149 * glasses.el (glasses-make-readable): Fix uncapitalization of | |
1150 identifiers like `myXMLDocument'. | |
1151 | |
30519
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
1152 2000-07-28 Karl Fogel <kfogel@red-bean.com> |
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
1153 |
30524 | 1154 * mail/mail-hist.el (mail-hist-previous-input) |
1155 (mail-hist-next-input): Do the obvious code factorization. | |
1156 (mail-hist-retrieve-and-insert): New func, contains common | |
30519
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
1157 code of above two. |
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
1158 If inserting a message body, leave point at top. |
d732477f0678
(mail-hist-previous-input, mail-hist-next-input): do the obvious code
Karl Fogel <kfogel@red-bean.com>
parents:
30518
diff
changeset
|
1159 |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1160 2000-07-28 Sam Steingold <sds@gnu.org> |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1161 |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1162 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime): |
30524 | 1163 Use `<=', not `<' to compare times! |
1164 (ange-ftp-ls): Remove. | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1165 |
30502 | 1166 2000-07-27 Gerd Moellmann <gerd@gnu.org> |
1167 | |
30516 | 1168 * play/cookie1.el: Add explanation of how to make cookie.el |
1169 compatible with strfile(1) to comment. | |
1170 | |
1171 * subr.el (remove, remq): New functions. | |
1172 | |
30511 | 1173 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly |
1174 escape `*' in regexps. | |
1175 (midnight-find): Reverse order of arguments in the funcall of | |
1176 TEST. | |
1177 | |
1178 * bindings.el (completion-ignored-extensions): Add `.la', `.lo', | |
1179 and `.class'. | |
1180 | |
30502 | 1181 * play/meese.el: Add Commentary section. |
1182 | |
30516 | 1183 2000-07-27 Alex Schroeder <alex@gnu.org> |
1184 | |
1185 * sql.el (sql-ms): Added autoload cookie. | |
1186 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase) | |
1187 (sql-oracle): Ditto. | |
1188 (sql-help): Doc change. | |
1189 | |
1190 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data | |
1191 types and exceptions. | |
1192 | |
1193 2000-07-27 Alex Schroeder <alex@gnu.org> | |
1194 | |
1195 * sql.el (sql-placeholder-history): New variable. | |
1196 (sql-query-placeholders-and-send): New function that will query | |
1197 the user and replace placeholders with user input. | |
1198 (sql-oracle): If running on NT, set comint-input-sender to | |
1199 sql-query-placeholders-and-send. | |
1200 | |
1201 (sql-stop): If in the SQLi buffer, insert stop notification, else | |
1202 present it as a message. | |
1203 | |
1204 2000-07-27 Alex Schroeder <alex@gnu.org> | |
1205 | |
1206 * sql.el (sql-input-ring-separator): Doc change. | |
1207 (sql-input-ring-file-name): Doc change. | |
1208 (sql-interactive-mode): Use `sql-input-ring-separator' and | |
1209 `sql-input-ring-file-name' to set the comint-mode equivalents | |
1210 without making them local variables. | |
1211 (sql-stop): Don't bind `sql-input-ring-separator' and | |
1212 `sql-input-ring-file-name' dynamically to their comint-mode | |
1213 equivalents. | |
1214 | |
30490 | 1215 2000-07-27 Kenichi Handa <handa@etl.go.jp> |
1216 | |
1217 * international/mule.el (register-char-codings): New function. | |
1218 (make-coding-system): Handle `safe-chars' specification in the arg | |
1219 PROPERTY. | |
1220 | |
1221 * international/mule-cmds.el | |
1222 (find-coding-systems-region-subset-p): This function deleted. | |
1223 (sort-coding-systems-predicate): New variable. | |
1224 (sort-coding-systems): New function. | |
1225 (find-coding-systems-region): Use | |
1226 find-coding-systems-region-internal. | |
1227 (find-coding-systems-string): Use find-coding-systems-region. | |
1228 (find-coding-systems-for-charsets): Check | |
1229 char-coding-system-table. | |
1230 (select-safe-coding-system-accept-default-p): New variable. | |
1231 (select-safe-coding-system): Mostly rewritten. New argument | |
1232 ACCEPT-DEFAULT-P. | |
1233 (select-message-coding-system): Call select-safe-coding-system | |
1234 with ACCEPT-DEFAULT-P arg. | |
1235 (reset-language-environment): Reset default-sendmail-coding-system | |
1236 to the default value iso-latin-1. | |
1237 (set-language-environment): Don't set the obsolete variable | |
1238 charset-origin-alist. | |
1239 | |
1240 * international/codepage.el (cp-coding-system-for-codepage-1): | |
1241 Give `safe-chars' property to make-coding-system. | |
1242 | |
1243 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid | |
1244 calling select-message-coding-system twice. | |
1245 | |
1246 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property | |
1247 instead of `safe-charsets'. | |
1248 (cyrillic-alternativnyj): Likewise. | |
1249 (ccl-encode-alternativnyj): Don't check the charset | |
1250 cyrillic-iso8859-5. | |
1251 | |
30484 | 1252 2000-07-27 Kenichi Handa <handa@etl.go.jp> |
1253 | |
1254 * composite.el (compose-chars-after): Preserve match data. | |
1255 | |
30481 | 1256 2000-07-26 Sam Steingold <sds@gnu.org> |
1257 | |
1258 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function. | |
1259 (ange-ftp-real-file-newer-than-file-p): New function. | |
1260 (ange-ftp-verify-visited-file-modtime): Use `float-time'. | |
1261 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string'). | |
1262 | |
1263 * tooltip.el (tooltip-float-time): Removed (use `float-time'). | |
1264 * midnight.el (midnight-float-time): Ditto. | |
1265 | |
30479 | 1266 2000-07-26 Andreas Schwab <schwab@suse.de> |
1267 | |
1268 * files.el (normal-backup-enable-predicate): Correct | |
1269 interpretation of the return value of compare-strings. | |
1270 | |
30471 | 1271 2000-07-26 Gerd Moellmann <gerd@gnu.org> |
1272 | |
30477 | 1273 * isearch.el (isearch-resume): New function. |
1274 (isearch-done): Add something to command-history to resume | |
1275 the search. | |
1276 (isearch-yank-line, isearch-yank-word): Use | |
1277 buffer-substring-no-properties instead of buffer-substring. | |
1278 | |
30471 | 1279 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead |
1280 of flyspell-mouse-map. | |
1281 | |
1282 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove | |
1283 duplicate definition. | |
1284 (makefile-mode): Remove duplicate setting of local-abbrev-table. | |
1285 | |
1286 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable. | |
1287 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table. | |
1288 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1289 2000-07-25 Sam Steingold <sds@gnu.org> |
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1290 |
30459 | 1291 * net/ange-ftp.el: Get modtime over the net. |
1292 (ange-ftp-file-modtime): New function. | |
30473 | 1293 (ange-ftp-write-region, ange-ftp-insert-file-contents) |
1294 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime): | |
30459 | 1295 Use it. |
1296 (ange-ftp-dot-to-slash): New function. | |
1297 (ange-ftp-fix-name-for-vms): Use it. | |
1298 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1299 * midnight.el (midnight-buffer-display-time): Use |
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1300 `with-current-buffer'. |
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1301 |
30457 | 1302 2000-07-25 Gerd Moellmann <gerd@gnu.org> |
1303 | |
1304 * find-dired.el: Update copyright notice. | |
1305 (find-dired): Offer to kill a running `find'. | |
1306 | |
1307 * enriched.el (enriched-face-ans): For a `foreground-color' | |
1308 property, return '(("x-color" COLOR))' so that COLOR will be | |
1309 output as a parameter of the x-color annotation. Likewise for the | |
1310 `background-color' property. In the case of normal face | |
1311 properties, don't return annotations for unspecified foreground | |
1312 and background face attributes. | |
1313 | |
30450 | 1314 2000-07-25 Kenichi Handa <handa@etl.go.jp> |
1315 | |
1316 * language/japan-util.el (japanese-katakana-region): Fix handling | |
1317 HANKAKU argument. | |
1318 | |
30438 | 1319 2000-07-25 Miles Bader <miles@gnu.org> |
1320 | |
1321 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to | |
1322 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to | |
1323 constrain-to-field. | |
1324 | |
30437 | 1325 2000-07-24 Andrew Innes <andrewi@gnu.org> |
1326 | |
1327 * timer.el (timer-activate-when-idle): Add optional parameter | |
1328 DONT-WAIT. Update docstring. | |
1329 (run-with-idle-timer): Specify extra parameter to | |
1330 timer-activate-when-idle, so that timer will be activated | |
1331 immediately if Emacs is already idle. | |
1332 | |
1333 * w32-fns.el (w32-using-nt): Fix docstring. | |
1334 | |
30434 | 1335 2000-07-24 Dave Love <fx@gnu.org> |
1336 | |
1337 * mouse.el (popup-menu): Set last-command-event. | |
1338 (mouse-major-mode-menu-prefix): Declare. | |
1339 | |
30433 | 1340 2000-07-24 Gerd Moellmann <gerd@gnu.org> |
1341 | |
1342 * textmodes/flyspell.el: Update to author's version 1.5d. | |
1343 | |
1344 * progmodes/hideshow.el: Update copyright notice. | |
1345 | |
1346 * vcursor.el: Set maintainer to FSF, since author cannot | |
1347 be reached. | |
1348 | |
30422 | 1349 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il> |
1350 | |
30424 | 1351 * info.el (Info-goto-emacs-key-command-node): Leave a space after |
1352 the prompt. | |
1353 | |
30422 | 1354 * mouse.el (popup-menu): Run the keymap through indirect-function, |
1355 in case it was defined with define-prefix-key. If the menu is a | |
1356 list of keymaps, look up the binding of user's choice in each one | |
1357 of the keymaps. | |
1358 (mouse-popup-menubar): If the global and local menu-bar keymaps | |
1359 don't have a prompt string, create one and insert it into the | |
1360 keymap. Don't barf if current-local-map returns nil. | |
1361 | |
30415 | 1362 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk> |
1363 | |
1364 * dired.el (dired-sort-R-check): Added to allow recursive listing | |
1365 to be undone. | |
1366 (dired-sort-other): Use it. | |
1367 | |
30412 | 1368 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> |
1369 | |
30415 | 1370 * Release of cc-mode 5.27 |
30412 | 1371 |
1372 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1373 | |
1374 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to | |
1375 c-beginning-of-statement-1 that caused a bad case of recursion | |
1376 which could consume a lot of CPU in large classes in languages | |
1377 that have in-expression classes (i.e. Java and Pike). | |
1378 | |
1379 * cc-engine.el (c-guess-basic-syntax): Check for in-expression | |
1380 statements before top level constructs (i.e. case 6 is moved | |
1381 before case 5 and is now case 4) to catch in-expression | |
1382 classes in top level expressions correctly. | |
1383 | |
1384 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1385 | |
1386 * cc-engine.el (c-guess-basic-syntax): Less naive handling of | |
1387 objc-method-intro. Case 4 removed and case 5I added. | |
1388 | |
1389 * cc-langs.el (c-append-paragraph-start): New variable used by | |
1390 c-common-init to get paragraph-start correct. | |
1391 * cc-langs.el (c-common-init): Use c-append-paragraph-start to | |
1392 initialize paragraph-start to make it correct both with and | |
1393 without the javadoc special case. | |
1394 | |
1395 * cc-mode.el (java-mode): Use c-append-paragraph-start to | |
1396 initialize paragraph-start for javadoc markup. | |
1397 | |
1398 * cc-vars.el (c-style-variables-are-local-p): Incompatible | |
1399 change by defaulting this to t. It's motivated by the | |
1400 confusing behavior that otherwise arise from the style system | |
1401 when editing both java and non-java files at the same time | |
1402 (see the comments about style setting in c-common-init). | |
1403 | |
1404 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1405 | |
1406 * cc-cmds.el (c-indent-new-comment-line): Added a kludge | |
1407 similar to the one in c-fill-paragraph to check the fill | |
1408 prefix from the adaptive fill function for sanity. | |
1409 | |
1410 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1411 | |
1412 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into | |
1413 defun block. | |
1414 | |
1415 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1416 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1417 * cc-mode.texi Documented the change of cpp-macro. |
30412 | 1418 |
1419 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1420 | |
1421 * cc-align.el (c-lineup-multi-inher): Handle lines with | |
1422 leading comma nicely. Extended to handle member initializers | |
1423 too. | |
1424 | |
30415 | 1425 * cc-engine.el: (c-beginning-of-inheritance-list, |
30412 | 1426 c-guess-basic-syntax): Fixed recognition of inheritance lists |
1427 when the lines begins with a comma. | |
1428 | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1429 * cc-mode.texi: Updated doc for c-lineup-multi-inher. |
30412 | 1430 |
1431 * cc-vars.el (c-offsets-alist): Changed default for | |
1432 member-init-cont to c-lineup-multi-inher since it now handles | |
1433 member initializers and indents better for leading commas. | |
1434 | |
1435 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1436 | |
1437 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state | |
1438 handling that caused class open lines to be recognized as | |
1439 statement-conts in some cases. | |
1440 | |
1441 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix | |
1442 guessed by the adaptive fill function unless point is on the | |
1443 first line of a block comment. | |
1444 | |
1445 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug | |
1446 when the buffer ends with a macro continuation char. | |
1447 | |
1448 * cc-engine.el (c-guess-basic-syntax): Added support for | |
1449 function definitions as statements in Pike. The first | |
1450 statement in a lambda block is now labeled defun-block-intro | |
1451 instead of statement-block-intro. | |
1452 | |
1453 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state | |
1454 so that the class surrounding point is selected, not the one | |
1455 innermost in the state. | |
1456 | |
1457 * cc-engine.el (c-guess-basic-syntax): Fixed bug in | |
1458 recognition of switch labels having hanging multiline | |
1459 statements. | |
1460 | |
1461 * cc-engine.el (c-beginning-of-member-init-list): Broke out | |
1462 some code in c-guess-basic-syntax to a separate function. | |
1463 * cc-engine.el (c-just-after-func-arglist-p): Fixed | |
1464 recognition of member inits with multiple line arglists. | |
1465 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect | |
1466 member-init-cont when the commas are in funny places. | |
1467 | |
1468 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1469 | |
1470 * cc-defs.el (c-auto-newline): Removed this macro since it's | |
1471 not used anymore. | |
1472 | |
1473 * cc-engine.el (c-looking-at-bos): New helper function. | |
1474 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell | |
1475 inexpr and toplevel classes apart in Pike. | |
1476 | |
1477 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition | |
1478 of case 9A. | |
1479 | |
1480 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New | |
1481 constant, since "class" can introduce an in-expression class | |
1482 in Pike nowadays. | |
1483 | |
1484 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1485 | |
1486 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum | |
1487 indentation on cpp-macro lines. | |
1488 | |
1489 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro | |
1490 a syntax modifier like comment-intro, to make it possible to | |
1491 get syntactic indentation for preprocessor directives. It's | |
1492 incompatible wrt to lineup functions on cpp-macro, but it has | |
1493 no observable effect in the 99.9% common case where cpp-macro | |
1494 is set to -1000. | |
1495 | |
1496 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1497 | |
1498 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed | |
1499 member-init-cont when the preceding arglist is several lines. | |
1500 | |
1501 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1502 | |
1503 * cc-styles.el (c-style-alist): The basic offset for the BSD | |
1504 style corrected to 8. | |
1505 | |
1506 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1507 | |
1508 * cc-styles.el (c-style-alist): Adjusted the indentation of | |
1509 brace list openers in the gnu style. | |
1510 | |
1511 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1512 | |
1513 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation. | |
1514 | |
1515 * cc-cmds.el (c-electric-brace, c-electric-slash, | |
1516 c-electric-star, c-electric-semi&comma, c-electric-colon, | |
1517 c-electric-lt-gt, c-electric-paren): Don't reindent old lines | |
1518 when c-syntactic-indentation is nil. | |
1519 | |
1520 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where | |
1521 we were left at comments preceding the first statement when | |
1522 reaching the beginning of the buffer. | |
1523 | |
1524 * cc-vars.el (c-syntactic-indentation): New variable to turn | |
1525 off all syntactic indentation. | |
1526 | |
1527 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1528 | |
1529 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces | |
1530 between the text and the block comment ender when it hangs, | |
1531 depending on how many there are before the fill. | |
1532 | |
1533 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1534 | |
1535 * cc-engine.el (c-beginning-of-closest-statement): New helper | |
1536 function to go back to the closest preceding statement start, | |
1537 which could be inside a conditional statement. | |
1538 * cc-engine.el (c-guess-basic-syntax): Use | |
1539 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C. | |
1540 | |
1541 * cc-engine.el (c-guess-basic-syntax): Better handling of | |
1542 arglist-intro, arglist-cont-nonempty and arglist-close when | |
1543 the arglist is nested inside parens. Cases 7A, 7C and 7F | |
1544 changed. | |
1545 | |
1546 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought | |
1547 up-to-date with javadoc 1.2. | |
1548 | |
1549 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1550 | |
1551 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of | |
1552 multiline Pike type decls. | |
1553 | |
1554 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1555 | |
1556 * cc-cmds.el (c-indent-new-comment-line): Always break | |
1557 multiline comments in multiline mode, regardless of | |
1558 comment-multi-line. | |
1559 | |
1560 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1561 | |
1562 * cc-engine.el (c-guess-basic-syntax): Fixed bug with | |
1563 fully::qualified::names in C++ member init lists. Preamble in | |
1564 case 5D changed. | |
1565 | |
1566 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1567 | |
1568 * cc-langs.el (c-common-init): Handling of obsolete variables | |
1569 moved to c-initialize-cc-mode. More compatible style override | |
1570 when using global style variables. | |
1571 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete | |
1572 variables moved here. | |
1573 | |
30415 | 1574 * cc-mode.texi: Documented the special behavior of |
30412 | 1575 c-special-indent-hook as a style variable. Don't talk about |
1576 doing (c-make-styles-buffer-local t) in a mode hook, since | |
1577 that's already too late to work right. | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1578 |
30412 | 1579 * cc-styles.el (c-make-styles-buffer-local): Flag style |
1580 variable localness in c-style-variables-are-local-p to make | |
1581 the compatibility measure in c-common-init work well. | |
1582 | |
1583 * cc-styles.el (c-set-style-1): c-special-indent-hook can no | |
1584 longer contain set-from-style. | |
1585 * cc-styles.el (c-initialize-builtin-style): Don't check for | |
1586 set-from-style on c-special-indent-hook. | |
1587 * cc-styles.el (c-copy-tree): Obsolete. The standard function | |
1588 copy-alist is sufficient now. | |
1589 | |
1590 * cc-styles.el (c-set-style, c-set-style-1, | |
1591 c-get-style-variables): Fixes to variable initialization so | |
1592 that duplicate entries in styles have the same effect | |
1593 regardless of DONT-OVERRIDE. | |
1594 | |
1595 * cc-styles.el (c-set-style-2): Fixed bug where the | |
1596 initialization of inheriting styles failed when the | |
1597 dont-override flag is set. | |
1598 | |
1599 * cc-vars.el (c-special-indent-hook): Don't use set-from-style | |
1600 on this. | |
1601 | |
1602 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1603 | |
1604 * cc-defs.el (c-forward-comment): Removed the workaround | |
1605 introduced in 5.38 since it had worse side-effects. If a line | |
1606 contains the string "//\"", it regarded the // as a comment | |
1607 start since the \ temporarily doesn't have escape syntax. | |
1608 | |
1609 2000-07-17 Emmanuel Briot <briot@act-europe.fr> | |
1610 | |
1611 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load | |
1612 ada-xref.el before ada-prj.el, so that the Project menu is created | |
1613 when ada-prj tries to add to it. | |
1614 (ada-activate-keys-for-case): Suppress the characters that are not | |
1615 part of the Ada syntax. Better compatibility with else-mode | |
1616 (ada-adjust-case-interactive): When auto-casing is not active, | |
1617 correctly insert newlines (used to insert only ^M). Prevent the | |
1618 syntax table from being changed in case of an error | |
1619 (or '_' becomes part of a word and some commands are confused). | |
1620 Do nothing if ada-auto-case is nil. | |
1621 (ada-after-keyword-p): Ignore keywords that are also attributes | |
1622 (ada-batch-reformat): Update usage comment | |
1623 (ada-call-from-contextual-menu): New function | |
1624 (ada-case-read-exceptions): Reinitialize the casing exception list | |
1625 first to nil first, so that the casing exception file can be | |
1626 shared. | |
1627 (ada-check-defun-name): Handles "configure" keyword for gnatdist | |
1628 files. | |
1629 (ada-compile-goto-error): Fix regexp used to detect a file:line | |
1630 anywhere in the error message | |
1631 (ada-contextual-menu-last-point): New variable | |
1632 (ada-create-keymap): If the variable delete-key-deletes-forward is | |
1633 t on XEmacs, it means that DEL should delete one character | |
1634 forward. | |
1635 (ada-create-menu): Use :included instead of :visible for XEmacs. | |
1636 New submenu "Options". | |
1637 (ada-end-stmt-re): Correctly indent "select ... then abort" | |
1638 statements. | |
1639 (ada-fill-comment-paragraph): Correctly delete all leading '--' | |
1640 even if they don't match ada-fill-comment-prefix Fix handling of | |
1641 paragraphs on the first or last line of a file. | |
1642 (ada-format-paramlist): Fix handling of default parameter values. | |
1643 (ada-get-body-name): New function. | |
1644 (ada-get-current-indent): Optimized by searchling directly for an | |
1645 existing generic part or a statement outside of it. Handle | |
1646 ada-indent-align-comments when indenting comments Replaced some | |
1647 regexps by testing directly the next character. This results in a | |
1648 huge speedup on some files. New indentation scheme for renames | |
1649 statements. Stop looking for the 'while' or 'for' associated with | |
1650 a 'loop' at the first semicolon encountered. A "return" can also | |
1651 match an anonymous access subprogram declaration. | |
1652 (ada-get-indent-noindent): Ignore strings and comments when | |
1653 looking for the keywords "record" and "private". | |
1654 (ada-goto-matching-decl-start): When matching "if", make sure we | |
1655 are not in fact seeing "end if". Ignore "when" statements except | |
1656 when initial keyword was "begin". Fix handling of nested | |
1657 procedures. Add a recursive call to this function to skip over | |
1658 other 'end' statmts. Fix indentation for "when .. => begin" | |
1659 (ada-in-open-paren-p): Fix indentation for complex boolean | |
1660 expressions, where 'and then', 'or else' and parenthesis | |
1661 statements are mixed up. | |
1662 (ada-in-paramlist-p): Skip comments while searching for the | |
1663 beginning Fix handling of operator declarations. | |
1664 (ada-indent-align-comments): New variable | |
1665 (ada-indent-current): Change the syntax table only in the | |
1666 protected section, so that we are sure it is restored correctly. | |
1667 (ada-indent-on-previous-lines): Use ada-use-indent and | |
1668 ada-with-indent Correctly indent "select ... then" | |
1669 (ada-indent-region): Slight speedup. | |
1670 (ada-indent-renames): New variable. | |
1671 (ada-last-which-function-subprog, ada-last-which-function-line): | |
1672 New variables | |
1673 (ada-looking-at-semi-private): Correctly indent the 'private' | |
1674 keyword when it is the first word in a package declaration. | |
1675 (ada-loose-case-word): Stop searching if at the end of the buffer. | |
1676 (ada-loose-case-word, ada-capitalize-word): Recase the whole word | |
1677 even if point is not initially at the end of the word. | |
1678 (ada-matching-decl-start-re): Add "when". | |
1679 (ada-mode): Add support for abbrev-mode, outline-mode and | |
1680 which-func-mode Override the old find-file.el entry in | |
1681 ff-special-constructs since it is using the obsolete | |
1682 ada-spec-suffix variable | |
1683 (ada-no-auto-case): New function | |
1684 (ada-scan-paramlist): When parsing the argument type, accept | |
1685 spaces (as in "X 'Class", generated by Rational Rose). | |
1686 (ada-other-file-name): No longer loads the other file. | |
1687 (ada-popup-menu): Save and restore the current buffer and cursor | |
1688 position before and after displaying the menu. | |
1689 (ada-search-ignore-complex-boolean): New function. | |
1690 (ada-uncomment-region): Emacs21 already knows how to delete | |
1691 comments not starting in the first column. | |
1692 (ada-use-indent): New variable | |
1693 (ada-which-function): New function. | |
1694 (ada-with-indent): New variable | |
1695 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el | |
1696 can be batch-compiled from the command line. | |
1697 | |
1698 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs. | |
1699 Add to the menu when the file is loaded, not in ada-mode-hook. | |
1700 Add -toolbar to the default ddd command Switches moved from | |
1701 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to | |
1702 ada-prj-default-comp-opt | |
1703 (ada-add-ada-menu): Remove the map and name parameters Add the Ada | |
1704 Reference Manual to the menu | |
1705 (ada-check-current): rewritten as a call to ada-compile-current | |
1706 (ada-compile): Removed. | |
1707 (ada-compile-application, ada-compile-current, ada-check-current): | |
1708 Set the compilation-search-path so that compile.el automatically | |
1709 finds the sources in src_dir. Automatic scrollong of the | |
1710 compilation buffer. C-uC-cC-c asks for confirmation before | |
1711 compiling | |
1712 (ada-compile-current): New parameter, prj-field | |
1713 (ada-complete-identifier): Load the .ali file before doing | |
1714 processing | |
1715 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to | |
1716 conform to gnatmake's behavior. | |
1717 (ada-find-file-in-dir): New function | |
1718 (ada-find-references): Set the environment variables for gnatfind | |
1719 (ada-find-src-file-in-dir): New function. | |
1720 (ada-first-non-nil): Removed | |
1721 (ada-gdb-application): Add support for jdb, the java debugger. | |
1722 (ada-get-ada-file-name): Load the original-file first if not done | |
1723 yet. | |
1724 (ada-get-all-references): Handles the new ali syntax (parent types | |
1725 are found between <>). | |
1726 (ada-initialize-runtime-library): New function | |
1727 (ada-mode-hook): Always load a project file when a file is opened, | |
1728 so that the casing exceptions are correctly read. | |
1729 (ada-operator-re): Add all missing operators ("abs", "rem", "**"). | |
1730 (ada-parse-prj-file): Use find-file-noselect instead of find-file | |
1731 to open the project file, since the latter does not work with | |
1732 speedbar Get default values before loading the prj file, or the | |
1733 default executable file name is wrong. Use the absolute value of | |
1734 src_dir to initialize ada-search-directories and | |
1735 compilation-search-path,... Add the standard runtime library to | |
1736 the search path for find-file. | |
1737 (ada-prj-default-debugger): Was missing an opening '{' | |
1738 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New | |
1739 variables. | |
1740 (ada-prj-default-gnatmake-opt): New variable | |
1741 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada | |
1742 buffers, the project file is the default one Save the windows | |
1743 configuration before displaying the menu. | |
1744 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed | |
1745 (ada-read-identifier): Fix xrefs on operators (for "mod", "and", | |
1746 ...) regexp-quote identifiers names to support operators +, | |
1747 -,... in regexps. | |
1748 (ada-remote): New function. | |
1749 (ada-run-application): Erase the output buffer before starting the | |
1750 run Support remote execution of the application. Use | |
1751 call-process, or the arguments are incorrectly parsed | |
1752 (ada-set-default-project-file): Reread the content of the active | |
1753 project file, not the one from the current buffer When a project | |
1754 file is set as the default project, all directories are | |
1755 automatically associated with it. | |
1756 (ada-set-environment): New function | |
1757 (ada-treat-cmd-string): New special variable ${current} | |
1758 (ada-treat-cmd-string): Revised. The substitution is now done for | |
1759 any ${...} substring | |
1760 (ada-xref-current): If no body was found, compiles the spec | |
1761 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the | |
1762 compiler to get rid of command line length limitations. | |
1763 (ada-xref-get-project-field): New function | |
1764 (ada-xref-project-files): New variable | |
1765 (ada-xref-runtime-library-specs-path) | |
1766 (ada-xref-runtime-library-ali-path): New variables | |
1767 (ada-xref-set-default-prj-values): Default run command now does a | |
1768 cd to the build directory. New field: main_unit Provide a default | |
1769 file name even if the current buffer has no prj file. | |
1770 | |
1771 * ada-prj.el: | |
1772 Rewritten to show a tabbed-dialog. | |
1773 (ada-prj-add-ada-menu): Remove the map and name parameters. | |
1774 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values): | |
1775 New function | |
1776 (ada-prj-load-directory, ada-prj-subdirs-of): New functions | |
1777 (ada-prj-load-from-file): New function | |
1778 (ada-prj-save): Always save fields that depend on the current buffer | |
1779 (ada-prj-show-value): New function | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1780 |
30412 | 1781 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in |
1782 Ada mode. This will allow us to display the Ada menu in any buffer | |
1783 we want (for project items). | |
1784 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct | |
1785 number of spaces in the header. | |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
30457
diff
changeset
|
1786 |
30395 | 1787 2000-07-24 Dave Love <fx@gnu.org> |
1788 | |
1789 * ediff-init.el (ediff-region-help-echo): Bind face-help. | |
1790 | |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1791 2000-07-23 Noah Friedman <friedman@splode.com> |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1792 |
30392
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1793 * type-break.el (type-break): perform autosave. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1794 Suggested by Stephen Gildea <gildea@intouchsys.com>. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1795 (type-break-do-query): Cancel query schedule while performing |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1796 actual query, to avoid possibility of a second query being made |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1797 while first one is already in progress. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1798 (type-break-time-stamp-format): New variable. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1799 (type-break-time-stamp): New function. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1800 (type-break-time-warning): Use it. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1801 (type-break-keystroke-warning): Use it. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1802 (type-break-noninteractive-query): Use it. |
cbb8dfde490d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30390
diff
changeset
|
1803 |
30390
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1804 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1805 cookie. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1806 Use add-minor-mode to set minor-mode-alist, if available. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1807 (eldoc-echo-area-use-multiline-p): New user option. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1808 (eldoc-echo-area-multiline-supported-p): New variable. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1809 (eldoc-docstring-format-sym-doc): Use them. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1810 (eldoc-mode): If not using idle timers, append to local post and |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1811 pre command hooks. Suggested by David Byers <davby@ida.liu.se>. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1812 (eldoc-display-message-no-interference-p): Don't interfere with |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1813 edebug. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1814 Add autoload cookie for eldoc-mode minor-mode-alist initialization. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1815 (eldoc-function-arglist): New function. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1816 (eldoc-function-argstring): Use it. |
91ee387fb19e
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30388
diff
changeset
|
1817 |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1818 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1819 auto save directory exists before calling directory-files. |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1820 |
30386 | 1821 2000-07-23 Dave Love <fx@gnu.org> |
1822 | |
1823 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i, | |
1824 ^o, ^u. | |
1825 | |
30359 | 1826 2000-07-21 Dave Love <fx@gnu.org> |
1827 | |
30374 | 1828 * ediff-init.el (ediff-region-help-echo): Modify to use overlay |
1829 now passed to the function. It now works properly. | |
1830 | |
30359 | 1831 * smerge-mode.el (smerge-mode-menu): Fill it out. |
1832 | |
30350 | 1833 2000-07-20 Gerd Moellmann <gerd@gnu.org> |
1834 | |
1835 * info-look.el (info-lookup): If *info* is shown in another frame | |
1836 on the same display, select that frame, instead of switching to | |
1837 the Info buffer in another window of the selected frame. | |
1838 | |
1839 * simple.el (universal-argument-map): Bind numeric keypad keys | |
1840 kp-0 to kp-9 and kp-subtract. | |
1841 (digit-argument): Handle these keys. | |
1842 | |
30346 | 1843 2000-07-20 Dave Love <fx@gnu.org> |
1844 | |
1845 * net/goto-addr.el (goto-address-fontify): Don't bother with | |
1846 buffer-modified and read-only stuff -- irrelevant with overlays. | |
1847 Put an extra property on the overlays and use it to clean up in | |
1848 case goto-address is re-run. | |
1849 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
1850 2000-07-19 Richard M. Stallman <rms@gnu.org> |
30334
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
1851 |
30337
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30335
diff
changeset
|
1852 * timer.el (run-with-idle-timer): Doc fix. |
5861c80aa795
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30335
diff
changeset
|
1853 |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1854 * mail/mail-utils.el (mail-strip-quoted-names): |
30334
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
1855 Handle case where <...> appears inside "...". |
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
1856 Use replace-match to edit the string more simply. |
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
1857 (rmail-dont-reply-to): Cope with an unmatched ". |
367cc943e9f0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30331
diff
changeset
|
1858 |
30331 | 1859 2000-07-19 Dave Love <fx@gnu.org> |
1860 | |
1861 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs | |
1862 implementation. | |
1863 | |
1864 * mouse.el (popup-menu): Allow a list of keymaps for menu arg. | |
1865 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions. | |
1866 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff. | |
1867 | |
30318 | 1868 2000-07-19 Gerd Moellmann <gerd@gnu.org> |
1869 | |
30329 | 1870 * textmodes/refer.el: Correct maintainer's email address. |
1871 | |
1872 * progmodes/hideif.el: Correct author's email address. | |
1873 Fix typo in comment. | |
1874 | |
1875 * xml.el: New file. | |
1876 | |
30318 | 1877 * mail/mailheader.el: Correct author's mail address. |
1878 | |
1879 * gnus/parse-time.el: Correct author's mail address. | |
1880 | |
30329 | 1881 2000-07-19 Colin Walters <walters@cis.ohio-state.edu> |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1882 |
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1883 * comint.el (comint-highlight-input, comint-highlight-face): |
30329 | 1884 New user options. |
1885 (comint-input-ring-file-name): Change custom type. | |
1886 (comint-mode-map): Bind mouse-2. | |
1887 (comint-insert-clicked-input): New function. | |
1888 (comint-send-input): Handle input highlighting. | |
1889 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1890 2000-07-18 Stefan Monnier <monnier@cs.yale.edu> |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1891 |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1892 * mouse.el (popup-menu): New function. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1893 (mouse-major-mode-menu): Use it. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1894 |
30311 | 1895 2000-07-18 Dave Love <fx@gnu.org> |
1896 | |
1897 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo | |
1898 improvements. | |
1899 | |
30308 | 1900 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
1901 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1902 * faces.el (face-font-selection-order) |
30308 | 1903 (face-font-family-alternatives): Add custom type. |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1904 |
30298 | 1905 2000-07-18 Dave Love <fx@gnu.org> |
1906 | |
1907 * cus-edit.el (custom-variable-reset-saved) | |
1908 (custom-variable-reset-standard): Remove unused bindings. | |
1909 | |
1910 * rect.el (open-rectangle-line): Remove unused let. | |
1911 | |
1912 * hl-line.el (hl-line-highlight): Check hl-line-mode. | |
1913 | |
30296 | 1914 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
1915 | |
1916 * cdl.el: Fix `Maintainer' keyword. | |
1917 | |
1918 * play/pong.el: Add author's email address. | |
1919 | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
1920 2000-07-17 Sam Steingold <sds@gnu.org> |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
1921 |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
1922 * files.el (insert-directory): Call `split-string' instead of |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
1923 re-implementing it. |
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
1924 |
30290 | 1925 2000-07-18 Gerd Moellmann <gerd@gnu.org> |
1926 | |
1927 * mail/vms-pmail.el: Change maintainer to FSF. | |
1928 | |
1929 * net/goto-addr.el: Change maintainer to FSF. | |
1930 | |
1931 * recentf.el: Update from author. | |
1932 | |
1933 * info.el (Info-title-face-alist): Removed. | |
30388
018e42425bee
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
30386
diff
changeset
|
1934 |
30277 | 1935 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il> |
1936 | |
1937 * eshell/eshell.el (eshell): Replace links to eshell.info with | |
1938 links to eshell, to avoid problems on systems where the manual is | |
1939 installed as `eshell'. | |
1940 * eshell/esh-cmd.el (eshell-cmd): Ditto. | |
1941 * eshell/em-smart.el (eshell-smart): Ditto. | |
1942 * eshell/em-banner.el (eshell-banner): Ditto. | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1943 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto. |
30277 | 1944 |
1945 * eshell/em-unix.el (eshell-shuffle-files): Don't disable | |
1946 same-file check in the MS-DOS version (it does support inodes). | |
1947 | |
1948 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix. | |
1949 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1950 * eshell/eshell.el (eshell-directory-name): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1951 Run default directory name through convert-standard-filename. |
30277 | 1952 |
30255 | 1953 2000-07-18 Kenichi Handa <handa@etl.go.jp> |
1954 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1955 * international/mule-cmds.el (select-safe-coding-system): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1956 Fix typo in the comment. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1957 |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1958 * language/european.el (compound-text): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1959 Force katakana-jisx0201 to be designated to G1. |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1960 |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1961 * international/mule-conf.el (oldjis-newjis-jisroman-ascii): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1962 Don't translate some national variant characters of latin-jisx0201. |
30262 | 1963 (x-ctext): Force katakana-jisx0201 to be designated to G1. |
30257 | 1964 |
30255 | 1965 * international/kkc.el (kkc-after-update-conversion-functions): |
1966 New variable. | |
1967 (kkc-update-conversion): Run functions in it at the tail. | |
1968 | |
30277 | 1969 2000-07-16 John Wiegley <johnw@gnu.org> |
30254
857a458d569d
Added a new feature to align.el
John Wiegley <johnw@newartisans.com>
parents:
30253
diff
changeset
|
1970 |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1971 * lisp/align.el (align-newline-and-indent): |
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1972 Adding new function. for auto-aligning blocks of code on RET. |
30254
857a458d569d
Added a new feature to align.el
John Wiegley <johnw@newartisans.com>
parents:
30253
diff
changeset
|
1973 (align-region): Fixed badly formatted minibuffer message. |
857a458d569d
Added a new feature to align.el
John Wiegley <johnw@newartisans.com>
parents:
30253
diff
changeset
|
1974 |
30253 | 1975 2000-07-17 Kenichi Handa <handa@etl.go.jp> |
1976 | |
30313
230ffbb2b7a8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30311
diff
changeset
|
1977 * international/kkc.el (kkc-show-conversion-list-count): Customize it. |
30253 | 1978 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show |
1979 the conversion list at first if appropriate. | |
1980 (kkc-next): Don't update kkc-next-count here. | |
1981 (kkc-prev): Don't update kkc-prev-count here. | |
1982 (kkc-show-conversion-list-update): Fix setting up of conversion | |
1983 list message. | |
1984 | |
30250
bf443dabe303
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30248
diff
changeset
|
1985 2000-07-16 Stefan Monnier <monnier@cs.yale.edu> |
bf443dabe303
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30248
diff
changeset
|
1986 |
30290 | 1987 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key. |
30250
bf443dabe303
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30248
diff
changeset
|
1988 |
30248 | 1989 2000-07-16 Dave Love <fx@gnu.org> |
1990 | |
1991 * cus-edit.el (custom-buffer-create-internal): Use a help-echo | |
1992 function to be more specific. | |
1993 | |
1994 * wid-edit.el (widget-specify-field, widget-specify-button): Allow | |
1995 non-string help-echo. | |
1996 (widget-types-convert-widget): Defsubst it. | |
1997 (widget-echo-help): Try to cope with a help-echo function of two | |
1998 possible sorts. | |
1999 | |
30241 | 2000 2000-07-15 Jason Rumney <jasonr@gnu.org> |
2001 | |
2002 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist): | |
2003 Declare as obsolete. | |
2004 | |
2005 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons. | |
2006 | |
30226 | 2007 2000-07-14 Gerd Moellmann <gerd@gnu.org> |
2008 | |
2009 * hilit-chg.el: Fix typo. | |
2010 | |
30221 | 2011 2000-07-14 Dave Love <fx@gnu.org> |
2012 | |
2013 * info.el (Info-mode-menu): Fix use of :help, :enable. | |
2014 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2015 2000-07-14 Stefan Monnier <monnier@cs.yale.edu> |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2016 |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2017 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2018 |
30193 | 2019 2000-07-13 Dave Love <fx@gnu.org> |
2020 | |
30195 | 2021 * emacs-lisp/easymenu.el: Doc fixes. |
2022 (easy-menu-remove): Defalias to ignore. | |
2023 | |
30193 | 2024 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback): |
2025 Call throw correctly. | |
2026 | |
30190 | 2027 2000-07-13 Gerd Moellmann <gerd@gnu.org> |
2028 | |
2029 * faces.el (frame-background-mode): Doc fix. | |
2030 | |
2031 * simple.el (eval-expression-print-length): Change custom type to | |
2032 allow entering nil as value. | |
2033 | |
30185 | 2034 2000-07-13 Dave Love <fx@gnu.org> |
2035 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2036 * progmodes/fortran.el (fortran-imenu-generic-expression): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2037 Change definition layout. |
30187 | 2038 (fortran-mode-menu): Reinstate customize entries. |
2039 | |
30185 | 2040 * cus-edit.el (custom-group-menu-create, customize-menu-create): |
2041 Use :filter, per old XEmacs code. | |
2042 | |
30170 | 2043 2000-07-12 Gerd Moellmann <gerd@gnu.org> |
2044 | |
2045 * term.el (term-send-raw-meta): Strip modifiers from the keyboard | |
2046 event when deciding what to send to the terminal. | |
2047 | |
30168 | 2048 2000-07-12 Dave Love <fx@gnu.org> |
2049 | |
2050 * cus-start.el: Add optional version as 4th element of specs and | |
2051 use it for several things new in v21. Remove load-path. Fix type | |
2052 of line-number-display-limit. | |
2053 | |
30148 | 2054 2000-07-11 Dave Love <fx@gnu.org> |
2055 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2056 * progmodes/fortran.el: Don't require easymenu. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2057 Use repeat counts in various regexps. |
30150 | 2058 (fortran-mode-syntax-table): Defvar directly. |
2059 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2) | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2060 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2061 Use defvar, not defconst. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2062 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'. |
30150 | 2063 (fortran-mode): Set fortran-comment-line-start-skip, |
2064 fortran-comment-line-start-skip, dabbrev-case-fold-search. | |
2065 (fortran-comment-indent): Use defsubst. | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2066 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2067 Use fortran-comment-indent, not fortran-comment-indent-function. |
30150 | 2068 (fortran-comment-region, fortran-electric-line-number): Simplify. |
2069 (fortran-auto-fill): New function. | |
2070 (fortran-do-auto-fill): Deleted. | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2071 (fortran-find-comment-start-skip): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2072 Check for non-null comment-start-skip. |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2073 (fortran-auto-fill-mode, fortran-fill-statement): |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2074 Use fortran-auto-fill. |
30150 | 2075 (fortran-fill): Use fortran-auto-fill. Check for null |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2076 comment-start-skip. Simplify final clause and use end-of-line finally. |
30150 | 2077 |
30148 | 2078 * widget.el (widget-plist-member): New alias. |
2079 | |
30146 | 2080 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il> |
2081 | |
2082 * eshell/esh-module.el (toplevel): Reference | |
2083 byte-compile-current-file only if it is bound. | |
2084 | |
30131 | 2085 2000-07-10 Gerd Moellmann <gerd@gnu.org> |
2086 | |
2087 * dired.el: Don't require `dired-aux'. | |
2088 | |
30127 | 2089 2000-07-10 Miles Bader <miles@lsi.nec.co.jp> |
2090 | |
2091 * dired-aux.el (dired-show-file-type): New function. | |
2092 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type. | |
2093 (dired-show-file-type): Add autoload. | |
2094 | |
30125 | 2095 2000-07-10 Kenichi Handa <handa@etl.go.jp> |
2096 | |
2097 * international/mule-diag.el (describe-font): Adjusted for the | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2098 change of fontset-info. |
30125 | 2099 (print-fontset): Likewise. |
2100 | |
30123
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2101 2000-07-09 Stefan Monnier <monnier@cs.yale.edu> |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2102 |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2103 * mouse.el (mouse-drag-region): Use functionp rather than fboundp. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2104 |
30111 | 2105 2000-07-07 Gerd Moellmann <gerd@gnu.org> |
2106 | |
30131 | 2107 * bindings.el: Bind `[delete]' to delete-char. |
30115 | 2108 |
30111 | 2109 * dired.el (dired-find-alternate-file): New function. |
2110 (dired-mode-map): Bind `a' to dired-find-alternate-file. | |
2111 (toplevel): Require dired-aux when compiling. | |
2112 (dired-buffers): Move defvar within file to avoid compiler warning. | |
2113 | |
2114 * info.el (Info-last-search): Variable removed. | |
2115 (Info-search-history): New variable. | |
2116 (Info-search): New Info-search-history. | |
2117 | |
2118 * battery.el, info-look.el: Change author's mail address. | |
2119 | |
30115 | 2120 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us> |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2121 |
30115 | 2122 * mail/rmail.el (rmail-clear-headers): Don't throw an error |
2123 if rmail-ignored-headers is nil. | |
2124 (rmail-retry-failure): Bind rmail-ignored-headers and | |
2125 rmail-displayed-headers to nil. | |
2126 | |
30096 | 2127 2000-07-06 Gerd Moellmann <gerd@gnu.org> |
2128 | |
30103 | 2129 * lpr.el (lpr-page-header-switches): Add `-h' switch. |
2130 (print-region-1): Don't hard code `-h' here. | |
2131 | |
30096 | 2132 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'. |
2133 | |
30103 | 2134 2000-07-01 Francesco Potorti` <pot@gnu.org> |
2135 | |
2136 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as | |
2137 exim can use "your message" instead of "the message". | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2138 |
30123
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2139 2000-07-06 Stefan Monnier <monnier@cs.yale.edu> |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2140 |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2141 * facemenu.el: Docstrings fixes. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2142 (facemenu-get-face): Don't use internal-find-face. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2143 (facemenu-iterate): Rename arg to match the docstring. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2144 |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2145 * newcomment.el (uncomment-region): Be more careful when skipping |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2146 backwards over `=' not to bump into BOBP. |
b235edbd96c8
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30115
diff
changeset
|
2147 |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
2148 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu> |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2149 |
30096 | 2150 * ediff-diff.el (ediff-wordify): Use syntax table. |
2151 * ediff-init.el (ediff-has-face-support-p): Use | |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
2152 ediff-color-display-p. |
30096 | 2153 (ediff-color-display-p): Use display-color-p, changed to defun |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
2154 from defsubst. |
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
2155 Got rid of special cases for NeXT and OS/2. |
30096 | 2156 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline |
30089
f7f64f1ccc38
2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
30088
diff
changeset
|
2157 face. |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2158 |
30088
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2159 2000-07-05 Stefan Monnier <monnier@cs.yale.edu> |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2160 |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2161 * emacs-lisp/lucid.el: Require CL. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2162 (copy-tree, remprop): Remove, it's provided by CL. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2163 (map-keymap): Define in terms of cl-map-keymap. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2164 (extent-property, set-extent-end-glyph): New functions. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2165 |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2166 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables. |
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2167 |
30076 | 2168 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
2169 | |
30085 | 2170 * Makefile.in (DONTCOMPILE): Add comment that the name may |
2171 not be changed without changing the make-dist script. | |
2172 | |
30088
2ed241fb45f7
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30085
diff
changeset
|
2173 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc. |
30076 | 2174 (cl-mapc): Use mapc instead of cl-old-mapc. |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2175 |
30067 | 2176 2000-07-05 Andrew Innes <andrewi@gnu.org> |
2177 | |
2178 * makefile.nt: Add support for `bootstrap' and related targets. | |
2179 | |
30059
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2180 2000-07-05 Stefan Monnier <monnier@cs.yale.edu> |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2181 |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2182 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2183 (easy-menu-do-define): Use `menu-item' format. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2184 Handle case where easy-menu-create-menu returns a symbol. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2185 Manually call the potential top-level filter in the function binding. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2186 (easy-menu-filter-return): New arg NAME. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2187 Convert to a keymap if MENU is an XEmacs menu. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2188 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2189 (easy-menu-converted-items-table, easy-menu-convert-item): |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2190 New var and fun to memoize easy-menu-convert-item-1. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2191 (easy-menu-do-add-item): Use it. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2192 (easy-menu-create-menu): Use easy-menu-convert-item. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2193 Wrap easy-menu-filter-return around any :filter specification. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2194 Don't convert the menu if a filter was specified. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2195 Tell easy-menu-make-symbol not to check for MENU being an expression. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2196 (easy-menu-make-symbol): New arg NOEXP. |
6a413a3c9c25
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
2197 |
30056 | 2198 2000-07-05 Gerd Moellmann <gerd@gnu.org> |
2199 | |
2200 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter | |
2201 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer. | |
2202 (eval-defun): If called with prefix arg, instrument code for | |
2203 Edebug. | |
2204 | |
2205 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string | |
2206 similar to that of eval-defun. | |
2207 | |
30029 | 2208 2000-07-04 Dave Love <fx@gnu.org> |
2209 | |
30035 | 2210 * hl-line.el (hl-line-overlay): Make it permanent-local. |
2211 | |
30029 | 2212 * calendar/todo-mode.el: Replaced with a working version, based on |
2213 revision 1.34 tidied up. | |
2214 | |
2215 2000-07-03 Miles Bader <miles@lsi.nec.co.jp> | |
30021 | 2216 |
2217 * paths.el (prune-directory-list): New function. | |
2218 (Info-default-directory-list): Rewritten to more methodically | |
2219 enumerate a big list of possible info directories (based on the | |
2220 list used by the standalone info reader). | |
30029 | 2221 |
30021 | 2222 * info.el (info-initialize): Use prune-directory-list to remove |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2223 non-existent directories from Info-directory-list. |
30021 | 2224 |
2225 * paths.el (Info-default-directory-list): Try a list of possible | |
2226 info-directories instead of a single one. Add the possible | |
2227 info directory "/usr/share/info". | |
2228 | |
2229 * woman.el (woman-man.conf-path): Explicitly include the debian | |
2230 man-db config file "/etc/manpath.config". | |
2231 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as | |
2232 are present in `manpath.config'. | |
2233 (woman-manpath): Include "/usr/share/man". | |
2234 | |
30006 | 2235 2000-07-03 Gerd Moellmann <gerd@gnu.org> |
2236 | |
30017 | 2237 * frame.el (blink-cursor-mode): Don't hide cursor initially. |
2238 | |
2239 * startup.el (command-line): Initialize blink-cursor based | |
2240 on window-system. | |
2241 | |
30014 | 2242 * frame.el (blink-cursor): Default to nil if not running under |
2243 a window-system. | |
2244 | |
30012 | 2245 * faces.el (face-spec-set): Ignore invalid attributes like 20.x. |
2246 (face-x-resources): Remove duplicate entry for :font. | |
2247 | |
30006 | 2248 * textmodes/refer.el (refer-find-entry-internal): Use some-window |
2249 instead of cycling through windows with next-window. | |
2250 | |
2251 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead | |
2252 of cycling through windows with next-window. | |
2253 | |
2254 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead | |
2255 of cycling through windows with next-window. | |
2256 | |
2257 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list) | |
2258 (edebug-get-displayed-buffer-points): Use walk-windows/some-window | |
2259 instead of cycling through windows with next-window. | |
2260 | |
2261 * calendar/appt.el (appt-select-lowest-window): Use walk-windows | |
2262 instead of cycling through windows with next-window. | |
2263 | |
2264 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead | |
2265 of cycling through windows with next-window. | |
2266 | |
2267 * terminal.el (te-process-output): Use walk-windows instead of | |
2268 cycling through windows with next-window. | |
2269 | |
2270 * server.el (server-switch-buffer): Use some-window instead of | |
2271 cycling through windows with next-window. | |
2272 | |
2273 * window.el (some-window): New function. | |
2274 (walk-windows): Remove reference to walk-windows-start. | |
29996 | 2275 |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2276 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil. |
29996 | 2277 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
2278 2000-07-03 Richard Stallman <rms@gnu.org> |
30006 | 2279 |
2280 * window.el (walk-windows): Guarantee termination by keeping a list | |
2281 of all the windows already handled. | |
2282 | |
29975 | 2283 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il> |
2284 | |
2285 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use | |
2286 window-system. | |
2287 | |
2288 * man.el (Man-notify-when-ready): Don't use window-system. If | |
2289 Man-notify-method is newframe, and the display is not | |
2290 multi-frame, select the frame created for the man page. | |
2291 (Man-init-defvars): Doc fix. | |
2292 | |
29972 | 2293 2000-06-28 Gerd Moellmann <gerd@gnu.org> |
2294 | |
29982 | 2295 * faces.el (region): Change background color for light background. |
2296 | |
2297 * ediff-wind.el (ediff-setup-control-frame): Remove :box | |
2298 attribute from mode-line face of Ediff control frame. | |
2299 | |
29972 | 2300 * replace.el (query-replace-map): Bind `e' like `E'. |
2301 | |
29967 | 2302 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il> |
2303 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2304 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>: |
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2305 Change name to "Select All". |
29969 | 2306 |
29967 | 2307 * dos-fns.el (convert-standard-filename): Fix last change. |
2308 | |
29957 | 2309 2000-06-27 Gerd Moellmann <gerd@gnu.org> |
2310 | |
29959 | 2311 * help.el (describe-variable): Don't insert a second `'s' in front |
2312 of the string `value is shown below'. Since the syntax-table is | |
2313 set to emacs-lisp-mode-syntax-table, forward-sexp skips over | |
2314 an existing `'s', so that this won't be deleted. | |
2315 | |
29957 | 2316 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el: |
2317 * pcmpl-unix.el: New files. | |
2318 | |
29955
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
2319 2000-06-26 Stefan Monnier <monnier@cs.yale.edu> |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
2320 |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
2321 * wid-edit.el (widget-member): Use the new plist-member. |
7e4b93cdaa3a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29949
diff
changeset
|
2322 |
29939 | 2323 2000-06-26 Gerd Moellmann <gerd@gnu.org> |
2324 | |
29956 | 2325 * replace.el (perform-replace): Undo change of 2000-04-04. |
2326 Instead, move backward 1 character at the end of the loop when | |
2327 necessary. | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2328 |
29949 | 2329 * faces.el (fringe): Change face for different backgrounds. |
2330 | |
2331 * eshell/esh-module.el (toplevel): Load defgroup's differently; | |
2332 patch from John. | |
2333 | |
29939 | 2334 * eshell/*.el: Change spelling of the Free Software Foundation. |
2335 | |
2336 * eshell/esh-toggle.el: Removed. | |
2337 | |
2338 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el. | |
2339 | |
2340 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command | |
2341 interactively. | |
2342 | |
2343 2000-06-26 Alex Schroeder <alex@gnu.org> | |
2344 | |
2345 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to | |
2346 `define-key'; instead of checking `(emacs-version)' check for | |
2347 `set-keymap-parent' and `set-keymap-name' directly. Add entries | |
2348 for `;' and `o' which might be electric. | |
2349 | |
2350 (sql-electric-stuff): New user option. | |
2351 (sql-magic-go): New function which uses `sql-electric-stuff'. | |
2352 (sql-magic-semicolon): New function which uses | |
2353 `sql-electric-stuff'. | |
2354 | |
2355 (sql-accumulate-and-indent): Insert newline if `comint-accumulate' | |
2356 is not fboundp. | |
2357 | |
2358 (sql-oracle-options): New variable. | |
2359 (sql-oracle): Use it. | |
2360 | |
2361 (sql-imenu-generic-expression): Doc change. | |
2362 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer | |
2363 is used. | |
2364 | |
2365 (sql-informix): Added command line parameter "-" to force | |
2366 sql-informix-program to use stdout. | |
2367 | |
29924 | 2368 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il> |
2369 | |
30208
e0e295d641ba
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30195
diff
changeset
|
2370 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix. |
29924 | 2371 (cp864-decode-table): Doc fix. |
2372 (cp720-decode-table): New variable, supports the Arabic OEM | |
2373 codepage used by Windows. | |
2374 (cp737-decode-table): New, Greek OEM codepage used by Windows. | |
2375 | |
29920 | 2376 2000-06-23 Dave Love <fx@gnu.org> |
2377 | |
2378 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version. | |
2379 (font-lock-fontify-anchored-keywords): Use | |
2380 line-beginning-position. | |
2381 (global-font-lock-mode): Use mapc. | |
2382 | |
29908
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
2383 2000-06-23 Stefan Monnier <monnier@cs.yale.edu> |
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
2384 |
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
2385 * eshell/esh-module.el: Require CL when compiling. |
82ec30fbd2e2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29888
diff
changeset
|
2386 |
29870 | 2387 2000-06-23 Gerd Moellmann <gerd@gnu.org> |
2388 | |
29885 | 2389 * comint.el (comint-substitute-in-file-name): Call replace-match |
2390 with second and third arg t. | |
2391 | |
30291
062625598798
insert-directory: use split-string
Sam Steingold <sds@gnu.org>
parents:
30290
diff
changeset
|
2392 * cus-edit.el (custom-button-face, custom-button-pressed-face): |
29881 | 2393 Specify foreground color. |
2394 | |
2395 * faces.el (tool-bar, mode-line, header-line): Specify foreground | |
2396 color. | |
2397 | |
29876 | 2398 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el. |
2399 | |
2400 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and | |
2401 cddr instead of cdddr. | |
2402 | |
29873 | 2403 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list |
2404 instead of copy-list. | |
2405 | |
2406 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead | |
2407 of copy-list. | |
2408 | |
29870 | 2409 * subdirs.el: Add eshell subdirectory. |
2410 | |
2411 * eshell: New subdirectory containing the Eshell package. | |
2412 | |
2413 * pcomplete.el: New file. | |
2414 | |
29885 | 2415 2000-06-23 Paul Eggert <eggert@twinsun.com> |
2416 | |
29888 | 2417 * mail/mailpost.el (post-mail-send-it): Make sure file has |
2418 proper permissions from birth. | |
2419 | |
2420 * files.el (basic-save-buffer-2): When temporarily setting | |
2421 file modes, set them to current modes plus 0200, not to 0777. | |
2422 | |
29885 | 2423 * emerge.el (emerge-make-temp-file): Make sure file has proper |
2424 permissions from birth. | |
2425 | |
29857 | 2426 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il> |
2427 | |
2428 * files.el (make-backup-file-name-1): On DOS/Windows, run the | |
2429 backup file name through convert-standard-filename. | |
2430 | |
2431 * dos-fns.el (convert-standard-filename): Convert leading | |
2432 directories as well. When long file names are supported, convert | |
2433 characters that are invalid in Windows file names. | |
2434 | |
29849 | 2435 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
2436 | |
2437 * ps-print.el: Fix bug: if ^L is the very first buffer character, | |
2438 ps-print crashes. New feature: page selection for printing. Create | |
2439 raw-text-unix coding system for XEmacs. Doc fix. | |
2440 (ps-print-version): New version number (5.2.3). | |
2441 (ps-plot-region): Bug fix. | |
2442 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file) | |
2443 (ps-header-sheet, ps-generate, ps-end-job): Code fix. | |
2444 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New | |
2445 funs. | |
2446 (ps-selected-pages, ps-last-selected-pages, ps-first-page) | |
2447 (ps-last-page): New vars. | |
2448 | |
29845 | 2449 2000-06-21 Gerd Moellmann <gerd@gnu.org> |
2450 | |
2451 * progmodes/sh-script.el (sh-while-getopts): Fix handling of | |
2452 empty option string. | |
2453 | |
29839 | 2454 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il> |
2455 | |
2456 * man.el (man): Doc fix. | |
2457 | |
29829 | 2458 2000-06-21 Kenichi Handa <handa@etl.go.jp> |
2459 | |
2460 * international/mule-cmds.el (set-language-info-alist): Docstring | |
2461 fixed. | |
2462 | |
29814 | 2463 2000-06-20 Gerd Moellmann <gerd@gnu.org> |
2464 | |
2465 * version.el (emacs-version): Use ISO date format. | |
2466 | |
2467 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d' | |
2468 instead of `M-backspace'. | |
2469 | |
2470 * simple.el (turn-off-auto-fill): New function. | |
2471 | |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2472 2000-06-20 Stefan Monnier <monnier@cs.yale.edu> |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2473 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2474 * jit-lock.el (with-buffer-prepared-for-jit-lock): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2475 Renamed from with-buffer-prepared-for-font-lock and use |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2476 inhibit-modification-hooks rather than setting *-change-functions. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2477 Update all functions to use the new name. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2478 (jit-lock-first-unfontify-pos): New semantics (and doc). |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2479 (jit-lock-mode): Make non-interactive. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2480 Don't automatically turn on font-lock. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2481 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2482 Always use jit-lock-after-change. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2483 Remove and restore font-lock-after-change-function. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2484 (turn-on-jit-lock, jit-lock-after-fontify-buffer) |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2485 (jit-lock-after-unfontify-buffer): Remove. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2486 (jit-lock-stealth-fontify): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2487 Reset jit-lock-first-unfontify-pos to point-max rather than to nil. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2488 (jit-lock-after-change): Set the `fontified' text-prop to nil. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2489 |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2490 2000-06-20 Sam Steingold <sds@gnu.org> |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2491 |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2492 * emacs-lisp/cl-indent.el (toplevel): Indent |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2493 `print-unreadable-object' properly. Untabify. |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2494 |
29777
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2495 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl> |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2496 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2497 * textmodes/reftex.el (reftex-find-citation-regexp-format): |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2498 Support for bibentry. |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2499 (reftex-compile-variables): Fixed problem with end of section-re. |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2500 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2501 * texmodes/reftex-dcr.el (reftex-view-crossref, |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2502 reftex-view-crossref-from-bibtex): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2503 Deal with changed `reftex-find-citation-regexp-format'. |
29777
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2504 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex): |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2505 Replaced `remprop' with `put'. |
29802
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2506 (reftex-view-crossref, reftex-view-crossref-when-idle): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2507 Support for bibentry. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2508 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2509 * textmodes/reftex-vars.el (reftex-cite-format-builtin): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2510 New entry for bibentry package. |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2511 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2512 * textmodes/reftex-parse.el (reftex-locate-bibliography-files): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2513 Regexp also matches "\nobibliography". |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2514 |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2515 * textmodes/reftex-global.el (reftex-renumber-simple-labels): |
41e64655279b
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29797
diff
changeset
|
2516 Call `reftex-ensure-write-access' before doing anything. |
29777
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2517 (reftex-ensure-write-access): New function. |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2518 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2519 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl> |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2520 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2521 * progmodes/idlwave.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2522 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2523 * progmodes/idlw-shell.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2524 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2525 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2526 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2527 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2) |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2528 |
5d01f8465594
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
29776
diff
changeset
|
2529 |
29776 | 2530 2000-06-20 Dave Love <fx@gnu.org> |
2531 | |
2532 * faces.el (frame-background-mode): Use set-default, not set, in | |
2533 setter. | |
2534 (frame-update-faces, frame-update-face-colors): Define with | |
2535 defalias. | |
2536 | |
2537 * enriched.el (enriched-decode-foreground) | |
2538 (enriched-decode-background): Don't use internal-find-face. | |
2539 | |
2540 * apropos.el: Doc fixes. | |
2541 | |
2542 * cus-edit.el (customize-changed-options): Check arg. | |
2543 (customize-version-lessp): Don't require decimal point. | |
2544 | |
2545 * custom.el (defcustom, defgroup): Doc fix. | |
2546 | |
2547 * newcomment.el (comment) <defgroup>: Add :version. | |
2548 (comment-multi-line): Doc fix. | |
2549 | |
2550 * emulation/mlsupport.el (define-hooked-local-abbrev, | |
2551 define-hooked-global-abbrev): Fix, using define-abbrev. | |
2552 | |
29747 | 2553 2000-06-19 Gerd Moellmann <gerd@gnu.org> |
2554 | |
2555 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking | |
2556 the whole buffer. | |
2557 | |
29740 | 2558 2000-06-19 Dave Love <fx@gnu.org> |
2559 | |
2560 * menu-bar.el (menu-bar-options-save): New function. | |
2561 (menu-bar-options-menu): Use it. | |
2562 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>: | |
2563 Simplify. | |
2564 | |
29731
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
2565 2000-06-19 Andreas Schwab <schwab@suse.de> |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
2566 |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
2567 * progmodes/etags.el (tags-query-replace): Put new parameters |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
2568 START and END at the end, for backward compatibility. |
8ca3c3db1482
*** empty log message ***
Andreas Schwab <schwab@suse.de>
parents:
29720
diff
changeset
|
2569 |
29720 | 2570 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
2571 | |
2572 * international/codepage.el: | |
2573 (cp-coding-system-for-codepage-1): Delete special codes for | |
2574 generating xxx-dos coding system because now a CCL based coding | |
2575 system can handle EOL conversion by default. | |
2576 | |
2577 * international/mule.el (make-coding-system): Generate subsidiary | |
2578 coding systems for EOL handling variants even for a CCL based | |
2579 coding system. | |
2580 | |
29718 | 2581 2000-06-19 Kenichi Handa <handa@etl.go.jp> |
2582 | |
2583 * international/isearch-x.el (isearch-minibuffer-input-method) | |
2584 (isearch-minibuffer-input-method-function): These variables | |
2585 deleted. | |
2586 (isearch-with-input-method): Don't use the above variables. | |
2587 (isearch-process-search-multibyte-characters): Likewise. Call | |
2588 read-string with the arg INHERIT-INPUT-METHOD t. | |
2589 | |
29707
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
2590 2000-06-17 Stefan Monnier <monnier@cs.yale.edu> |
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
2591 |
29710
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2592 * font-lock.el (font-lock-after-fontify-buffer) |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2593 (font-lock-after-unfontify-buffer): No need to call back to jit-lock. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2594 |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2595 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2596 Use consistent make-local-variable style for font-lock-fontified. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2597 (jit-lock-fontify-buffer): |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2598 Don't bother checking for font-lock-mode and jit-lock-mode. |
684342d36151
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29707
diff
changeset
|
2599 |
29707
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
2600 * time.el: Remove trailing ^M that prevent CVS-merging. |
a70985b2a88f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29705
diff
changeset
|
2601 |
29712 | 2602 2000-06-16 Gerd Moellmann <gerd@gnu.org> |
2603 | |
2604 * Makefile.in (distclean): New target. | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2605 |
29705
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
2606 2000-06-16 Stefan Monnier <monnier@cs.yale.edu> |
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
2607 |
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
2608 * Makefile.in (srcdir): Define for update-subdirs. |
c09fad42c6c2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29696
diff
changeset
|
2609 |
29696 | 2610 2000-06-16 Gerd Moellmann <gerd@gnu.org> |
2611 | |
2612 * find-lisp.el: New file. | |
2613 | |
29694 | 2614 2000-06-16 Andrew Innes <andrewi@gnu.org> |
2615 | |
2616 * time.el (display-time-mail-function): New variable, to allow | |
2617 external packages to indicate when new mail is available. | |
2618 (display-time-update): Use it. | |
2619 | |
29689 | 2620 2000-06-16 Kenichi Handa <handa@etl.go.jp> |
2621 | |
29691 | 2622 * international/mule.el (mule-version): Change version name to |
2623 SAKAKI. AOI has already been used by Meadow. | |
2624 | |
29689 | 2625 * international/quail.el (quail-show-guidance-buf): To find the |
2626 bottom window (but minibuffer), pay attention to the height of | |
2627 minibuffer. | |
2628 | |
29670 | 2629 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il> |
2630 | |
29682 | 2631 * arc-mode.el (archive-mode-map): Use the new menu-item format for |
2632 menu-bar menus. Add help strings. Don't remove the Edit menu | |
2633 from the menu bar, as the menu bar has enough space now. | |
2634 | |
29680 | 2635 * Makefile.in (SHELL): Make sure /bin/sh is used. |
2636 | |
29670 | 2637 * woman.el (woman-man-buffer): Fix bold and underlined CJK |
2638 characters, which use series of two ^H characters instead of one. | |
2639 | |
29667 | 2640 2000-06-15 Gerd Moellmann <gerd@gnu.org> |
2641 | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2642 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table) |
29686 | 2643 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2644 functions. |
29686 | 2645 (Info-find-node-2): Try a case-sensitive search first, then |
2646 do a case-insensitive search. | |
2647 | |
2648 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English | |
2649 tutorials. | |
2650 | |
29676 | 2651 * complete.el (PC-env-vars-alist): New variable. |
2652 (PC-complete-as-file-name): New function. | |
2653 (partial-completion-mode): Initialize PC-env-vars-alist from | |
2654 process-environment. | |
2655 (PC-do-completion): Handle completion of env vars. | |
2656 | |
2657 * info.el (Info-set-mode-line): Show file name in mode line, | |
2658 use `*Info*' instead of `Info:'. | |
2659 | |
29667 | 2660 * startup.el (command-line-1): Change copyright messages to year |
2661 2000. | |
2662 | |
29665 | 2663 2000-06-15 Dave Love <fx@gnu.org> |
2664 | |
2665 * net/goto-addr.el (goto-address-fontify): Use keymap property, | |
2666 not local-map. | |
2667 | |
29658 | 2668 2000-06-15 Kenichi Handa <handa@etl.go.jp> |
2669 | |
2670 * international/mule.el (set-buffer-file-coding-system): Almost | |
2671 rewritten to handle `undecided' as no-op. | |
2672 | |
29654 | 2673 2000-06-14 Gerd Moellmann <gerd@gnu.org> |
2674 | |
29667 | 2675 * Makefile.in: New file. |
29657 | 2676 |
2677 * Makefile: Removed. | |
2678 | |
29654 | 2679 * net/goto-addr.el (goto-address): Don't bind C-c RET locally. |
2680 (goto-address-highlight-keymap): Bind C-c RET. | |
2681 | |
29640 | 2682 2000-06-14 Kenichi Handa <handa@etl.go.jp> |
2683 | |
29649 | 2684 * mail/sendmail.el (sendmail-send-it): The temporary buffer |
2685 inherits buffer-file-coding-system of the current buffer. | |
29647 | 2686 |
29645 | 2687 * tar-mode.el (tar-extract): For goto-char, use (point-min), not |
2688 0. Give correct argument to set-auto-coding-function. | |
2689 (tar-expunge): For goto-char, use (point-min), not 0. | |
2690 (tar-clear-modification-flags): For goto-char, use (point-min), not 1. | |
2691 (tar-subfile-save-buffer): Likewize. | |
2692 | |
29640 | 2693 * international/mule.el |
2694 (after-insert-file-set-buffer-file-coding-system): Call | |
2695 set-buffer-file-coding-system with the arg FORCE t. | |
2696 | |
29633 | 2697 2000-06-13 Gerd Moellmann <gerd@gnu.org> |
2698 | |
2699 * mail/sendmail.el (mail-specify-envelope-from): Initialize to | |
2700 nil. Contemporary sendmails issue an X-Authentication-Warning if | |
29676 | 2701 the sender is set with `-f'. |
29633 | 2702 |
29622 | 2703 2000-06-13 Dave Love <fx@gnu.org> |
2704 | |
29630 | 2705 * help.el (describe-function-1): Kluge around cases of functions |
2706 fset to subrs whose doc doesn't match their symbol-name. | |
2707 | |
29627 | 2708 * image.el (insert-image): Default STRING to a space. |
29625 | 2709 |
29622 | 2710 * info.el Doc fixes. |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2711 (Info-build-node-completions): Match Ref tags. |
29622 | 2712 |
29612 | 2713 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il> |
2714 | |
29615 | 2715 * frame.el (display-multi-frame-p, display-multi-font-p): New |
2716 defaliases for display-graphic-p. | |
2717 | |
29612 | 2718 * hl-line.el: Fixed a typo in commentary. |
2719 | |
29609 | 2720 2000-06-13 Kenichi Handa <handa@etl.go.jp> |
2721 | |
2722 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo | |
2723 fixed. | |
2724 | |
29608 | 2725 2000-06-12 Dave Love <fx@gnu.org> |
2726 | |
2727 * image.el (insert-image): Save a little consing. | |
2728 | |
29598 | 2729 2000-06-12 Kenichi Handa <handa@etl.go.jp> |
2730 | |
2731 * language/tibet-util.el: Convert all tibetan-1-column characters | |
2732 to the corresponding tibetan characters. | |
2733 (tibetan-add-components): Delete code for the special treatment of | |
2734 'a chung. | |
2735 | |
2736 * language/tibetan.el (tibetan-composable-pattern): Fix previous | |
2737 change. | |
2738 (tibetan-vowel-transcription-alist): More rules added. | |
2739 (tibetan-composite-vowel-alist): New variable. | |
2740 (tibetan-precomposition-rule-alist): More rules added. | |
2741 | |
29578
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2742 2000-06-12 Stefan Monnier <monnier@cs.yale.edu> |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2743 |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2744 * startup.el (command-line): Only call menu-bar-mode if interactive. |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2745 |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2746 * thingatpt.el (toplevel symbol-properties): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2747 * textmodes/makeinfo.el (makeinfo-compile): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2748 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets): |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2749 * progmodes/hideif.el (hif-compress-define-list) |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2750 (hide-ifdef-use-define-alist): |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2751 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry) |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2752 (ange-ftp-vms-add-file-entry): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2753 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2754 * man.el (Man-build-man-command): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2755 * mail/rnewspost.el (news-reply-header-hook): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2756 * info.el (Info-insert-dir): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2757 * emulation/mlconvert.el (backward-word, forward-word, setq): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2758 * emacs-lisp/gulp.el (gulp-send-requests): |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2759 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1) |
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2760 (byte-optimize-inline-handler, byte-optimize-form-code-walker) |
29593
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2761 (byte-optimize-apply, end of file): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2762 * emacs-lisp/advice.el (ad-advice-class-completion-table) |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2763 (ad-make-freeze-definition): |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2764 * startup.el (command-line, command-line-1): Don't quote lambdas. |
f1e8c1d079fd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29578
diff
changeset
|
2765 |
29578
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2766 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2767 (cvs-cleanup-removed): New function. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2768 (cvs-cleanup-functions): New var. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2769 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2770 some flexibility in specifying additional entries to auto-cleanup. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2771 (cvs-quickdir): New function. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2772 (cvs-mode-insert): Use cvs-fileinfo-from-entries. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2773 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2774 (cvs-mode-find-file): Check that we are on a filename or dirname |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2775 when invoked through a mouse-click. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2776 (cvs-full-path): Remove. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2777 (cvs-dired-action): Re-introduced. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2778 (cvs-dired-noselect): Use it. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2779 (vc-post-command-functions): use this new hook if available. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2780 |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2781 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2782 (cvs-status-map): Don't inherit from cvs-mode-map anymore. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2783 (cvs-filename-map, cvs-dirname-map): Remove. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2784 (cvs-default-action): Remove. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2785 (cvs-add-face): Use `keymap' rather than `local-map' property, and only |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2786 if the arg is really a keymap. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2787 (cvs-fileinfo-pp): Don't use any special map for file and dir names. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2788 Don't hardcode the mapping from state (aka type) to face, but check |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2789 the var cvs-fi-<type>-face instead. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2790 (cvs-fileinfo-from-entries): New function. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2791 |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2792 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks): |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2793 Docstring fix. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2794 (cvs-find-file-and-jump): Change default to be safer. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2795 (cvs-mode-diff-map): Define it as a function as well. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2796 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2797 Bind mouse-2 in this global map rather than with text-properties. |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2798 |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2799 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2800 file to resolve the ambiguity between C(conflict) and C(need-merge). |
cf89b9b2ef40
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29574
diff
changeset
|
2801 |
29574 | 2802 2000-06-12 Kenichi Handa <handa@etl.go.jp> |
2803 | |
2804 * international/mule.el (set-buffer-file-coding-system): If | |
2805 CODING-SYSTEM is nil, set buffer-file-coding-system to nil | |
2806 unconditionally. | |
2807 | |
29568 | 2808 2000-06-12 Dave Love <fx@gnu.org> |
2809 | |
2810 * wid-edit.el (widget-specify-button): Really suppress the face if | |
2811 required. | |
2812 | |
29556 | 2813 2000-06-11 Gerd Moellmann <gerd@gnu.org> |
2814 | |
2815 * term/x-win.el (x-colors): Add colors from recent rgb.txt. | |
2816 | |
29553
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2817 2000-06-11 Stefan Monnier <monnier@cs.yale.edu> |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2818 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2819 * imenu.el (imenu-generic-expression): Docstring fix. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2820 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2821 * composite.el (composition-function-table): Move the `put' |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2822 below the autoload cookie so we can load the file before loaddefs. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2823 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2824 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2825 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2826 * emacs-lisp/autoload.el (make-autoload): Use `cond'. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2827 Handle easy-mmode-define-global-mode. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2828 For complex macros like define-minor-mode that can generate |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2829 several autoload entries, try to autoload entries in the |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2830 macroexpanded code. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2831 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2832 * emacs-lisp/easy-mmode.el (define-minor-mode): |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2833 If KEYMAP is a symbol, just use it. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2834 Use byte-compile-current-file and load-file-name to infer the |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2835 proper :require to pass to defcustom. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2836 Wrap the hook var into `progn' so as not to autoload it. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2837 Add a :autoload-end cookie. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2838 Be more careful about the evaluation of KEYMAP. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2839 (easy-mmode-define-global-mode): Add a :autoload-end cookie. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2840 (define-derived-mode): Move define-abbrev-table outside of defvar. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2841 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2842 2000-06-10 Stefan Monnier <monnier@cs.yale.edu> |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2843 |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2844 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch). |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2845 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2846 (backup-compiled-files): Ignore errors during `tar'. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2847 (bootstrap): Make autoloads before elc files. |
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2848 |
29542 | 2849 2000-06-10 Kenichi Handa <handa@etl.go.jp> |
2850 | |
2851 * international/mule.el (set-buffer-file-coding-system): If one of | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
2852 undecided-XXX is specified, change only EOL conversion. |
29542 | 2853 |
2854 * international/mule-conf.el (unix): New alias for the coding | |
2855 system undecided-unix. | |
2856 | |
29528 | 2857 2000-06-09 Dave Love <fx@gnu.org> |
2858 | |
29535 | 2859 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region. |
2860 | |
29553
5669b381362e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29542
diff
changeset
|
2861 * progmodes/executable.el: Byte compile dynamic. |
29528 | 2862 (executable-insert): Change custom type. |
2863 (executable-find): Add autoload cookie. | |
29531 | 2864 (executable-make-buffer-file-executable-if-script-p): New |
2865 function. After Noah Friedman. | |
29528 | 2866 |
2867 * files.el (after-save-hook): Customize, with | |
29531 | 2868 executable-make-buffer-file-executable-if-script-p as an option. |
29528 | 2869 |
29518 | 2870 2000-06-09 Kenichi Handa <handa@etl.go.jp> |
2871 | |
29522 | 2872 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font |
2873 "tib24p-mule.bdf" for Tibetan. | |
2874 | |
29520 | 2875 * composite.el (decompose-composite-char): Declare it as obsolete. |
2876 | |
29541 | 2877 * man.el (Man-fontify-manpage): Pay attention to underline and |
2878 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX). | |
29518 | 2879 |
29517 | 2880 2000-06-08 Gerd Moellmann <gerd@gnu.org> |
2881 | |
2882 * thingatpt.el (forward-thing): Use functionp instead of fboundp. | |
2883 Set maintainer to FSF since author isn't reachable. | |
2884 | |
29508 | 2885 2000-06-08 Dave Love <fx@gnu.org> |
2886 | |
2887 * international/mule-cmds.el (select-safe-coding-system): If | |
2888 DEFAULT-CODING-SYSTEM is not specified, also check the most | |
2889 preferred coding-system if buffer-file-coding-system is | |
2890 `undecided'. From Handa. | |
2891 | |
29503 | 2892 2000-06-08 Kenichi Handa <handa@etl.go.jp> |
2893 | |
2894 * international/mule.el | |
2895 (after-insert-file-set-buffer-file-coding-system): If the buffer | |
2896 size is greater than INSERTED, judget that we are not visiting. | |
2897 | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2898 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org> |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2899 |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2900 * whitespace.el (defgroup whitespace): Comment out `:version'. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2901 XEmacs 20.4 has problems defining the group with this present. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2902 We'll have this commented out till get resolve the problem. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2903 |
29498 | 2904 2000-06-07 Gerd Moellmann <gerd@gnu.org> |
2905 | |
2906 * align.el: Update from author. | |
2907 | |
2908 2000-06-07 Jari Aalto <jari.aalto@poboxes.com> | |
2909 | |
2910 * apropos.el (apropos-mode-hook): New user variable. | |
2911 (apropos-mode): Run apropos-mode-hook. | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2912 |
29498 | 2913 2000-06-07 David Ponce <david@dponce.com> |
2914 | |
2915 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files | |
2916 commands. Require `wid-edit' at run-time. | |
2917 | |
2918 2000-06-07 David Ponce <david@dponce.com> | |
2919 | |
2920 * recentf.el: Added some "Commentary". | |
2921 (recentf-open-more-files, recentf-edit-list): Minor changes to | |
2922 move the point at the top of the file list. This behaviour is | |
2923 consistent with the menu one when the list contains a lot of | |
2924 files. | |
2925 (recentf-cleanup): Now displays the number of items removed from | |
2926 the list. | |
2927 (recentf-relative-filter) New menu filter to show filenames | |
2928 relative to `default-directory'. | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2929 |
29498 | 2930 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
2931 | |
2932 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size | |
2933 with/without giving an error if PostScript printer doesn't have this | |
2934 kind of page size. Zebra Stripe continues or restarts on next page. | |
2935 Manual/automatic paper feeding. Switch or not the header. | |
2936 (ps-print-version): New version number (5.2.2). | |
2937 (ps-windows-system): Include emx as a Windows system. | |
2938 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face) | |
2939 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces) | |
2940 (ps-background-text): Code fix. | |
2941 (ps-error-handler-message, ps-user-defined-prologue) | |
2942 (ps-print-prologue-header, ps-printer-name) | |
2943 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color) | |
2944 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg) | |
2945 (ps-use-face-background): Customization fix. | |
2946 (ps-n-up-database): Data fix. | |
2947 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed) | |
2948 (ps-switch-header): New vars. | |
2949 (ps-xemacs-color-name, ps-face-foreground-name) | |
2950 (ps-face-background-name, ps-boolean-constant): New funs. | |
2951 | |
29491 | 2952 2000-06-07 Dave Love <fx@gnu.org> |
2953 | |
2954 * allout.el: New version from Manheimer. | |
2955 | |
29483 | 2956 2000-06-07 Kenichi Handa <handa@etl.go.jp> |
2957 | |
2958 * textmodes/fill.el (fill-find-break-point): Check the validity of | |
2959 charset. | |
2960 | |
29476
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2961 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2962 |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2963 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list) |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2964 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames): |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2965 Call display-color-p and display-mouse-p instead of looking at |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2966 window-system. |
0797cad76554
Applied this patch from Eli Zaretskii. Pretty much taking on faith
Karl Fogel <kfogel@red-bean.com>
parents:
29471
diff
changeset
|
2967 |
29471 | 2968 2000-06-06 Dave Love <fx@gnu.org> |
2969 | |
2970 * image.el (find-image): Doc fix. Return nil if image not found. | |
2971 (put-image, insert-image): Make STRING arg optional. | |
2972 | |
29455 | 2973 2000-06-06 Kenichi Handa <handa@etl.go.jp> |
2974 | |
2975 * language/vietnamese.el: Remove eval-when-compile. | |
2976 (viet-viscii-nonascii-translation-table): Define it as a | |
2977 translation table made from viet-viscii-decode-table. | |
2978 (viet-viscii-encode-table): Define it as a translation table made | |
2979 from the reverse map of above. | |
2980 (viet-vscii-nonascii-translation-table): Define it as a | |
2981 translation table made from viet-vscii-decode-table. | |
2982 (viet-vscii-encode-table): Define it as a translation table made | |
2983 from the reverse map of above. | |
2984 (ccl-decode-viscii): Use translate-character. | |
2985 (ccl-encode-viscii, ccl-encode-viscii-font) | |
2986 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font): | |
2987 Likewize. | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
2988 |
29455 | 2989 * language/cyrillic.el: Remove eval-when-compile. |
2990 (cyrillic-koi8-r-nonascii-translation-table): Define it as a | |
2991 translation table made from cyrillic-koi8-r-decode-table. | |
2992 (cyrillic-koi8-r-encode-table): Define it as a translation table | |
2993 made from the reverse map of above. | |
2994 (ccl-decode-koi8): Use translate-character. | |
2995 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize | |
2996 (cyrillic-alternativnyj-nonascii-translation-table): Define it as | |
2997 a translation table made from cyrillic-alternativnyj-decode-table. | |
2998 (cyrillic-alternativnyj-encode-table): Define it as a translation | |
2999 table made from the reverse map of above. | |
3000 (ccl-decode-alternativnyj): Use translate-character. | |
3001 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font): | |
3002 Likewize | |
3003 | |
3004 * international/mule-diag.el (non-iso-charset-alist): Specify | |
3005 translation table symbol instead of translation table itself. | |
3006 (list-block-of-chars): CHARSET may be a translation table symbol. | |
3007 | |
3008 * international/mule.el (make-coding-system): If CODING-SYSTEM | |
3009 already exists, override it. | |
3010 | |
3011 * international/fontset.el: Use family `proportional' for Tibetan | |
3012 fonts. | |
3013 | |
3014 * international/ccl.el (ccl-compile-translate-character): Don't | |
3015 check if Rrr has property translation-table. | |
3016 (ccl-compile-map-multiple): Modified to avoid compiler warning. | |
3017 | |
29447 | 3018 2000-06-05 Gerd Moellmann <gerd@gnu.org> |
3019 | |
3020 * info.el: Bind case-fold-search to t when searching in case | |
3021 a user sets it to nil in a hook. | |
3022 | |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3023 2000-06-05 Stefan Monnier <monnier@cs.yale.edu> |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3024 |
29426
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3025 * autoarg.el (autoarg-mode, autoarg-kp-mode): |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3026 * hl-line.el (hl-line-mode): Use the new :global key argument. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3027 |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3028 * tar-mode.el (tar-header-block-recompute-checksum): Remove. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3029 (tar-clip-time-string): Prepend a space. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3030 (tar-grind-file-mode): Construct a string rather than modifying one. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3031 (tar-header-block-summarize): Fix docstring. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3032 Use `format' rather than an error-prone set of copy-loops. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3033 |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3034 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re) |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3035 (diff-goto-source, diff-unified->context, diff-context->unified) |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3036 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3037 understand the format output by the `-p' argument to diff. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3038 |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
3039 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list) |
29426
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3040 (sh-re-done): Use defconst. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3041 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3042 (sh-help-string-for-variable, sh-guess-basic-offset): |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3043 Don't quote lambdas. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3044 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3045 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use. |
454b4967e36d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29421
diff
changeset
|
3046 |
29421
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
3047 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
3048 (mh-letter-mode): Derive from text-mode. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
3049 This implicitly means that it now calls kill-all-local-variables. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
3050 Also remove the Emacs-18 compatibility code. |
7ec7a354fdfd
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29417
diff
changeset
|
3051 |
29417
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3052 * emacs-lisp/autoload.el (make-autoload): Simplify docstring. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3053 Make use of symbol-property doc-string-elt. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3054 Use memq rather than a sequence of eq. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3055 (doc-string-elt): Fix the wrong or missing previously unused values. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3056 (autoload-print-form): New function extracted from |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3057 generate-file-autoloads to allow recursion when handling progn |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3058 so that defvar's and defun's docstrings are properly printed. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3059 (generate-file-autoloads): Use it. |
6b062917309c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29415
diff
changeset
|
3060 |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3061 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3062 Use find-file-hooks in the minor-mode function. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3063 Be careful not to loop indefinitely in the post-command-hook function. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3064 |
29412
ecd388a0937d
2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29407
diff
changeset
|
3065 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu> |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
3066 |
29447 | 3067 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on |
29412
ecd388a0937d
2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29407
diff
changeset
|
3068 tty's. |
29447 | 3069 * ediff-diff.el (ediff-exec-process): Use --binary for fine |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3070 differences whenever appropriate. |
29447 | 3071 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members. |
3072 * viper.el (find-file, find-file-other-window): Get viper to do | |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
3073 wildcards. |
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
3074 |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3075 2000-06-04 Stefan Monnier <monnier@cs.yale.edu> |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3076 |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3077 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3078 (jit-lock-fontify-buffer): New function for JIT refontification. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3079 (jit-lock-mode): Fix docstring. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3080 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3081 Remove jit-lock-after-change from the _local_ hook. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3082 (jit-lock-function-1): Fix docstring. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3083 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3084 * info.el (Info-on-current-buffer): Initialize info. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3085 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3086 * newcomment.el (comment-indent): Ignore comment-indent-hook. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3087 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3088 * progmodes/tcl.el (tcl-indent-for-comment): |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3089 Ignore comment-indent-hook. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3090 |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3091 * emacs-lisp/easy-mmode.el: Require CL during compilation. |
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3092 (easy-mmode-define-toggle): Remove (inline into define-minor-mode). |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3093 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3094 and improve to use the lighter to guess the capitalization. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3095 (define-minor-mode): Inline code from easy-mmode-define-toggle. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3096 Add keyword arguments to specify global-ness or the custom group. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3097 Add local-map and help-echo properties to the lighter. |
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3098 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors. |
29415
bf26ee36792e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29412
diff
changeset
|
3099 (easy-mmode-define-global-mode): New macro. |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3100 |
29403 | 3101 2000-06-02 Dave Love <fx@gnu.org> |
3102 | |
3103 * wid-edit.el: byte-compile-dynamic since we typically don't use | |
3104 all the widgets. Don't require cl or widget. Remove | |
3105 eval-and-compile. Don't autoload finder-commentary. Doc fixes. | |
3106 (widget-read-event): Removed. Callers changed to use read-event. | |
3107 (widget-button-release-event-p): Renamed from | |
3108 button-release-event-p. | |
3109 (widget-field-add-space, widget-field-use-before-change): | |
3110 Uncustomize. | |
3111 (widget-specify-field): Use keymap property, not local-map. | |
3112 (widget-specify-button): Obey :suppress-face. | |
3113 (widget-specify-insert): Use modern backquote syntax. | |
3114 (widget-image-directory): Renamed from widget-glyph-directory. | |
3115 (widget-image-enable): Renamed from widget-glyph-enable. | |
3116 (widget-image-find): Replaces widget-glyph-find. | |
3117 (widget-button-pressed-face): Move defvar. | |
3118 (widget-image-insert): Replaces widget-glyph-insert. | |
3119 (widget-convert): Use keywordp. | |
3120 (widget-leave-text, widget-children-value-delete): Use mapc. | |
3121 (widget-keymap): Remove XEmacs stuff. | |
29407
4b6a4b83cce0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29403
diff
changeset
|
3122 (widget-field-keymap, widget-text-keymap): Define all inside defvar. |
29403 | 3123 (widget-button-click): Don't set point at the click, but re-centre |
3124 if we scroll out of window. Rewritten for images v. glyphs &c. | |
3125 (widget-tabable-at): Use POS arg, not point. | |
3126 (widget-beginning-of-line, widget-end-of-line) | |
3127 (widget-item-value-create, widget-sublist, widget-princ-to-string) | |
3128 (widget-sexp-prompt-value, widget-echo-help): Simplify. | |
3129 (widget-default-create): Use widget-image-insert; some rewriting. | |
3130 (widget-visibility-value-create) | |
3131 (widget-push-button-value-create, widget-toggle-value-create): Use | |
3132 widget-image-insert. | |
3133 (checkbox): Create on and off images dynamically. | |
3134 (documentation-link): Change :help-echo. | |
3135 (widget-documentation-link-echo-help): Remove. | |
3136 | |
29400
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3137 2000-06-02 Stefan Monnier <monnier@cs.yale.edu> |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3138 |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3139 * log-edit.el (log-edit-done): Thinko in the "same comment" detection. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3140 |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3141 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3142 (easy-mmode-define-toggle, define-minor-mode): Use it. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3143 (easy-mmode-define-keymap): Docstring fix. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3144 (define-derived-mode): Default PARENT to fundamental-mode. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3145 Add the derived-mode-parent symbol-property. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3146 (easy-mmode-derived-mode-p): New function. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3147 |
29383 | 3148 2000-06-02 Dave Love <fx@gnu.org> |
3149 | |
29392 | 3150 * files.el (convert-standard-filename): Doc fix. |
3151 (normal-backup-enable-predicate): New function. | |
3152 (backup-enable-predicate): Use it to replace the lambda form. | |
3153 | |
3154 * calendar/todo-mode.el: [This needs more work on the outline | |
3155 stuff.] Doc fixes. | |
3156 (todo) <defgroup>: Add :version. | |
3157 (todo-add-category): Don't use pushnew. | |
3158 (todo-cmd-raise): Fix typo. | |
3159 (todo-top-priorities): Change temp buffer name. | |
3160 (todo-category-alist): Avoid redundant lambda. | |
29400
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3161 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3162 Use outline-next-heading. |
29392 | 3163 |
29383 | 3164 * autoarg.el: Rewritten to use define-minor-mode. |
3165 (autoarg-kp-digits, autoarg-kp-mode-map): New variable. | |
3166 (autoarg-kp-mode, autoarg-kp-digit-argument): New command. | |
3167 | |
29376 | 3168 2000-06-02 Kenichi Handa <handa@etl.go.jp> |
3169 | |
3170 * isearch.el (isearch-other-meta-char): Fix previous change. | |
3171 | |
29374
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
3172 2000-06-01 Stefan Monnier <monnier@cs.yale.edu> |
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
3173 |
29400
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3174 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3175 (log-edit-done): Only add the comment to the ring if it's different |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3176 from the last comment entered. |
166ee351f476
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29392
diff
changeset
|
3177 |
29374
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
3178 * isearch.el (isearch-highlight): Turn internal-find-face into facep. |
8583675a6f96
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29372
diff
changeset
|
3179 |
29372 | 3180 2000-06-01 Dave Love <fx@gnu.org> |
3181 | |
3182 * hl-line.el: Rewritten using define-minor-mode. | |
3183 | |
3184 * help.el (describe-function-1): Distinguish special form from | |
3185 builtin function. Sanity-check presence of arglist for builtins. | |
3186 | |
29356 | 3187 2000-06-01 Kenichi Handa <handa@etl.go.jp> |
3188 | |
29365 | 3189 * international/characters.el: Fix syntax/category setting of |
3190 Tibetan characters. | |
3191 | |
3192 * language/tibet-util.el (tibetan-add-components): Fixes for new | |
3193 encoding of Tibetan characters. | |
3194 (tibetan-decompose-precomposition-alist): New variable. | |
3195 (tibetan-decompose-region): Convert precomposed characters to | |
3196 non-precomposed characters. | |
3197 (tibetan-decompose-string): Likewise. | |
3198 (tibetan-composition-function): Fix args to | |
3199 thibetan-compose-string. | |
3200 | |
3201 * language/tibetan.el (tibetan-composable-pattern): More | |
3202 characters included. | |
3203 (tibetan-consonant-transcription-alist): Rule for "R" added. | |
3204 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and | |
3205 "+R" added. | |
3206 (tibetan-base-to-subjoined-alist): Rule for "RA" added. | |
3207 | |
29359 | 3208 * language/lao-util.el (lao-composition-function): Fix args to |
3209 compose-string. | |
3210 | |
3211 * language/thai-util.el (thai-composition-function): Fix args to | |
3212 compose-string. | |
3213 | |
29356 | 3214 * isearch.el (isearch-update): Set disable-point-adjustment to t |
29357 | 3215 to prevent the point moving to the end of a composition when a |
3216 part of a composition is searched. | |
29356 | 3217 (isearch-other-meta-char): If the key invoking this command can be |
3218 mapped by function-key-map to a printing char, call | |
3219 isearch-process-search-char directly. | |
3220 | |
29355
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3221 2000-06-01 Stefan Monnier <monnier@cs.yale.edu> |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3222 |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3223 * emacs-lisp/bytecomp.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3224 * frame.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3225 * international/mule-cmds.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3226 * international/mule-util.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3227 * international/mule.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3228 * mouse.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3229 * subr.el: |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3230 * faces.el: Update calls to make-obsolete with a WHEN argument. |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3231 |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3232 * byte-run.el (make-obsolete, make-obsolete-variable): |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3233 Add an optional WHEN argument and change the format of the |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
3234 symbol-property information. |
29355
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3235 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda. |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3236 (byte-compile-obsolete, byte-compile-variable-ref): Understand the |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3237 new obsolete-symbol-property format and print WHEN if it is provided. |
d4b5dd203f46
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29347
diff
changeset
|
3238 |
29347 | 3239 2000-05-31 Dave Love <fx@gnu.org> |
3240 | |
3241 * loadhist.el (loadhist-hook-functions): Remove | |
3242 before-change-function, after-change-function. | |
3243 (unload-feature): Deal with symbols which are both bound and | |
3244 fbound. | |
3245 | |
3246 * mouse.el (mouse-save-then-kill-delete-region): Don't bind | |
3247 before-change-function, after-change-function. | |
3248 | |
3249 * simple.el (newline): Don't bind before-change-function, | |
3250 after-change-function. | |
3251 | |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3252 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org> |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3253 |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3254 * whitespace.el (whitespace-rescan-timer-time): Update interval |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3255 set to 600 seconds (10 minutes) instead of 60 seconds since |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3256 a large number of whitespace buffers causes emacs to `freeze' |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3257 for a considerable amount of time. |
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3258 |
29499
a293ec8516e0
Update whitespace.el - comment out the :version string, since it
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29498
diff
changeset
|
3259 * whitespace.el: Updated email address |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3260 |
29330 | 3261 2000-05-31 Dave Love <fx@gnu.org> |
3262 | |
3263 * add-log.el (change-log-font-lock-keywords) <function>: Add | |
3264 pattern for function of change. | |
3265 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate | |
3266 acknowledgements patterns. | |
3267 | |
29328 | 3268 2000-05-31 Kenichi Handa <handa@etl.go.jp> |
3269 | |
3270 * isearch.el (isearch-printing-char): If keyboard coding system is | |
3271 being used, call isearch-process-search-multibyte-characters. | |
3272 | |
3273 * international/isearch-x.el: Mostly rewritten. | |
3274 | |
3275 * international/quail.el (quail-start-conversion): Don't include | |
3276 unhandled events in the returned events, but set them in | |
3277 unread-command-events. Exit if all inputs are deleted. | |
3278 | |
29324 | 3279 2000-05-30 Jason Rumney <jasonr@gnu.org> |
3280 | |
3281 * w32-fns.el (w32-charset-info-alist): Add each charset separately. | |
3282 | |
3283 * term/w32-win.el: Doc changes to reduce diffs with x-win.el. | |
3284 Reenable code to create initial fontsets. | |
3285 Use set-fontset-font in place of put-charset-property. | |
3286 | |
29302 | 3287 2000-05-30 Gerd Moellmann <gerd@gnu.org> |
3288 | |
29307 | 3289 * progmodes/perl-mode.el (perl-indent-line): When looking for a |
3290 label, ensure that the first colon isn't followed by another. | |
3291 | |
3292 * paths.el (Info-default-directory-list): Doc fix. | |
3293 | |
29304 | 3294 * net/net-utils.el (finger-X.500-host-regexps): New user-option. |
3295 (finger): If HOST matches a regexp from finger-X.500-host-regexps, | |
3296 send a query containing USER only, not USER@HOST. | |
3297 | |
29302 | 3298 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg |
3299 and rmail-msgend to compute the restriction at the end, instead of | |
3300 computing it. | |
3301 | |
29292 | 3302 2000-05-29 Gerd Moellmann <gerd@gnu.org> |
3303 | |
29295 | 3304 * dabbrev.el (dabbrev-expand): Don't display messages in the |
3305 echo area if the minibuffer window is active. | |
3306 | |
29292 | 3307 * jit-lock.el (jit-lock-mode): Add after change function to |
3308 local hook. | |
3309 | |
3310 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com> | |
3311 | |
3312 * antlr-mode.el: New commands: hide/unhide actions, | |
3313 upcase/downcase literals. | |
3314 (antlr-tiny-action-length): New user option. | |
3315 (antlr-hide-actions): New command. Suggested by | |
3316 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>. | |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3317 (antlr-mode-map): New binding [C-c C-v]. |
29292 | 3318 (antlr-mode-menu): New entries. |
3319 (antlr-downcase-literals): New command. | |
3320 (antlr-upcase-literals): Ditto. | |
3321 | |
3322 * antlr-mode.el: Minor changes: indendation, mode-name. | |
3323 (antlr-indent-line): Indent cpp directive at column 0. | |
3324 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/". | |
3325 | |
3326 * antlr-mode.el: XEmacs bug workaround, XEmacs hint. | |
3327 (antlr-font-lock-additional-keywords): Workaround for intentional | |
3328 bug in XEmacs version of font-lock. | |
3329 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could | |
3330 be used by a smarter version of `buffers-menu-grouping-function'. | |
3331 | |
3332 2000-05-29 Gerd Moellmann <gerd@gnu.org> | |
3333 | |
3334 * tmm.el (tmm-prompt): Recognize menu item definitions of the for | |
3335 `(menu-item ...)' when looking for the position of DEFAULT-ITEM. | |
3336 | |
29266 | 3337 2000-05-29 Kenichi Handa <handa@etl.go.jp> |
3338 | |
3339 * international/encoded-kb.el | |
3340 (encoded-kbd-iso2022-designation-map): Pay attention to that | |
3341 charset-iso-final-char return -1 for eight-bit-control and | |
3342 eight-bit-graphic. | |
3343 | |
29261 | 3344 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> |
3345 | |
3346 * speedbar.el (speedbar-use-images, speedbar-update-flag) | |
3347 (speedbar-easymenu-definition-base): Use display-graphic-p where | |
3348 available, instead of window-system. | |
3349 | |
29259 | 3350 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il> |
3351 | |
3352 * international/codepage.el (cp-coding-system-for-codepage-1): Add | |
3353 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN | |
3354 coding systems. | |
3355 | |
29248 | 3356 2000-05-26 Dave Love <fx@gnu.org> |
3357 | |
29255 | 3358 * disp-table.el (standard-display-underline): Don't use |
3359 internal-find-face. | |
3360 | |
29248 | 3361 * mail/reporter.el: Maintainer change. Doc fixes. |
3362 (reporter-version): Deleted. | |
3363 | |
3364 * emacs-lisp/elp.el: Maintainer change. | |
3365 (elp-help-address, elp-submit-bug-report, elp-version): Deleted. | |
3366 | |
29244
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
3367 2000-05-26 Stefan Monnier <monnier@cs.yale.edu> |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
3368 |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
3369 * add-log.el (add-change-log-entry): Merge the current entry with the |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
3370 previous one if the previous one is empty. |
c0069fc0ba7c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29242
diff
changeset
|
3371 |
29240 | 3372 2000-05-26 Dave Love <fx@gnu.org> |
3373 | |
29242 | 3374 * loadhist.el (unload-feature): Fix interactive spec [from |
3375 lijnzaad@ebi.ac.uk]. | |
3376 | |
29240 | 3377 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use |
3378 subr-arity to check primitives. | |
3379 (byte-compile-flush-pending, byte-compile-file-form-progn) | |
3380 (byte-compile-normal-call, byte-compile-list, byte-compile-concat) | |
3381 (byte-compile-insert, byte-compile-funcall): Use mapc instead of | |
3382 mapcar. | |
3383 | |
29226 | 3384 2000-05-26 Kenichi Handa <handa@etl.go.jp> |
3385 | |
29235 | 3386 * international/fontset.el: Set family names of non-latin charsets |
3387 in default fontset to "*". | |
3388 | |
29230 | 3389 * international/mule-diag.el (print-fontset): Combine family part |
3390 and registry part of the fontname by "-*-" instead of "-". | |
3391 | |
29226 | 3392 * international/mule-cmds.el (encode-coding-char): Make strings |
3393 multibyte before calling encode-coding-string. | |
3394 | |
29220
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3395 2000-05-25 Stefan Monnier <monnier@cs.yale.edu> |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3396 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3397 * derived.el: Fix keywords. |
29224
c4ed562f1556
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29220
diff
changeset
|
3398 (define-derived-mode): Only define if needed. |
29220
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3399 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3400 * simple.el (fill-comment, comment-column, comment-start) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3401 (comment-start-skip, comment-end, comment-indent-function) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3402 (block-comment-start, block-comment-end, indent-for-comment) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3403 (set-comment-column, kill-comment, comment-padding, comment-region) |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3404 (comment-multi-line, indent-new-comment-line): Remove. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3405 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3406 * bindings.el (esc-map): Change ; to comment-dwim and use the new |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3407 function names for comment operations. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3408 |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3409 * newcomment.el: Add abundant autoload cookies. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3410 (comment-style): Don't depend on runtime data at compile-time. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3411 (comment-indent-hook): Remove. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3412 (comment-indent): Check if comment-indent-hook is bound. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3413 (comment-region): Docstring fix. |
47dec47aba85
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29214
diff
changeset
|
3414 |
29214 | 3415 2000-05-25 Dave Love <fx@gnu.org> |
3416 | |
3417 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete | |
3418 byte-code-function-p. | |
3419 | |
3420 * mail/rmailsum.el: Add provide. | |
3421 | |
3422 * net/goto-addr.el (goto-address-fontify): Add help-echo property. | |
3423 | |
3424 * smerge-mode.el (smerge-diff-switches): Don't use list* in | |
3425 defcustom. | |
3426 | |
29206
6e9f065ce572
2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29205
diff
changeset
|
3427 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu> |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3428 |
29206
6e9f065ce572
2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29205
diff
changeset
|
3429 * ediff-diff.el (ediff-exec-process): delete --binary option from |
6e9f065ce572
2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29205
diff
changeset
|
3430 non-buffer ediff jobs. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3431 |
29205 | 3432 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
3433 | |
3434 * hilit-chg.el (highlight-changes-mode): Ask about color or | |
3435 grayscale support, not about window-system. | |
3436 | |
3437 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not | |
3438 window-system. | |
3439 (ffap-highlight): Always default to t. | |
3440 | |
3441 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call | |
3442 display-popup-menus-p instead of looking at window-system. | |
3443 | |
3444 * disp-table.el (standard-display-g1, standard-display-graphic): | |
3445 Only refuse to use string glyphs on X and MS-Windows. | |
3446 | |
3447 * avoid.el: Remove window-system from commentary, suggest to use | |
3448 display-*-p instead. | |
3449 | |
3450 * apropos.el (apropos-print): Use display-mouse-p instead of | |
3451 window-system. | |
3452 | |
29190 | 3453 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
3454 | |
3455 * international/codepage.el (cp-decoding-vector-for-codepage): | |
3456 Fill up unsupported characters with their own codes. From Kenichi | |
3457 Handa. | |
3458 | |
29188 | 3459 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
3460 | |
3461 * international/mule-diag.el (describe-char-after): Use | |
3462 display-graphic-p instead of window-system, so that this function | |
3463 works on MS-DOS. | |
3464 | |
29181 | 3465 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il> |
3466 | |
3467 * international/codepage.el (cp-make-coding-systems-for-codepage): | |
3468 Remove the eight-bit-graphic and eight-bit-control charsets from | |
3469 the list of charsets which we convert into `?'. | |
3470 | |
29169 | 3471 2000-05-25 Kenichi Handa <handa@etl.go.jp> |
3472 | |
3473 * international/mule-conf.el: Specify CHARSET-ID explicitely for | |
3474 private charsets. | |
3475 (mule-unicode-0100-24ff, japanese-jisx0213-1, | |
3476 japanese-jisx0213-2): New charsets. | |
3477 | |
3478 * international/fontset.el: Setup default fontset for new charsets. | |
3479 | |
29166 | 3480 2000-05-24 Dave Love <fx@gnu.org> |
3481 | |
3482 * info.el (Info-find-node-2): Restructure [following "Vadim | |
3483 S. Solomin" <sovs@uic.nnov.ru>]. | |
3484 | |
3485 * icomplete.el: Fix header for Finder. | |
3486 | |
3487 2000-05-24 Eric M. Ludlam <zappo@ultranet.com> | |
3488 | |
3489 * rmailout.el (rmail-output-to-rmail-file): Added optional param | |
3490 STAY. | |
3491 | |
3492 * rmail.el (rmail-automatic-folder-directives): New user variable. | |
3493 (rmail-show-message): Add call to `rmail-auto-file' during | |
3494 display. | |
3495 (rmail-auto-file): New function. | |
3496 | |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
3497 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu> |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3498 |
29193 | 3499 * ediff-diff.el (ediff-forward-word): Take syntactic word class into |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
3500 account. |
29193 | 3501 (ediff-test-utility,ediff-diff-mandatory-option) |
3502 (ediff-reset-diff-options): Utilities for proper initialization of | |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
3503 ediff-diff-options and ediff-diff3-options on Windows. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3504 |
29193 | 3505 * ediff-init.el (ediff-merge-filename-prefix): New customizable |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
3506 variable. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3507 |
29193 | 3508 * ediff-mult.el (ediff-filegroup-action): Use |
29165
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
3509 ediff-merge-filename-prefix. |
641e43bad886
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29163
diff
changeset
|
3510 |
29163
ea19f6424132
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29159
diff
changeset
|
3511 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu> |
ea19f6424132
2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
29159
diff
changeset
|
3512 |
29193 | 3513 * viper-ex.el (ex-write): Set selective display to nil. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3514 |
29159 | 3515 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il> |
3516 | |
3517 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just | |
3518 aliases for hebrew-iso-8bit. | |
3519 | |
29148 | 3520 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il> |
3521 | |
3522 * woman.el: New version from Francis J. Wright | |
3523 <F.J.Wright@Maths.QMW.ac.uk>. | |
3524 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file | |
3525 names in environment variables regardless of the path separator. | |
3526 (woman-topic-all-completions-1): Don't call file-name-directory-p | |
3527 on all files, since woman-file-regexp already filters out any | |
3528 directories. | |
3529 | |
29140 | 3530 2000-05-24 Kenichi Handa <handa@etl.go.jp> |
3531 | |
29144 | 3532 * international/quail.el (quail-start-translation): Don't change |
3533 modified-p of the current buffer. | |
3534 (quail-start-conversion): Likewise. | |
3535 | |
3536 * international/kkc.el (kkc-region): Don't change modified-p of | |
3537 the current buffer. | |
3538 | |
29142 | 3539 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to |
3540 conform to RFC1468. | |
3541 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554. | |
29140 | 3542 |
29138 | 3543 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com> |
3544 | |
3545 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix. | |
3546 (speedbar-insert-button): Invisible text property fix. | |
3547 (speedbar-directory-plus): Renamed from speedbar-directory-+ | |
3548 (speedbar-directory-minus): Renamed from speedbar-directory-- | |
3549 (speedbar-page-plus): Renamed from speedbar-file-+ | |
3550 (speedbar-page-minus): Renamed from speedbar-file-- | |
3551 (speedbar-page): Renamed from speedbar-file- | |
3552 (speedbar-tag): Renamed from speedbar-tag- | |
3553 (speedbar-tag-plus): Renamed from speedbar-tag-+ | |
3554 (speedbar-tag-minus): Renamed from speedbar-tag-- | |
3555 (speedbar-expand-image-button-alist): Use above renames. | |
3556 | |
3557 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm | |
3558 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm | |
3559 * sb-pg-plus.xpm: Renamed from sb-file+.xpm | |
3560 * sb-pg-minus.xpm: Renamed from sb-file-.xpm | |
3561 * sb-pg.xpm: Renamed from sb-file.xpm | |
3562 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm | |
3563 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm | |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3564 |
29128 | 3565 2000-05-24 Kenichi Handa <handa@etl.go.jp> |
3566 | |
3567 * international/quail.el (quail-show-guidance-buf): Set | |
3568 current-input-method of the guidance buffer to the name of the | |
3569 curren input method. | |
3570 | |
29158
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3571 2000-05-23 Stefan Monnier <monnier@cs.yale.edu> |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3572 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3573 * progmodes/compile.el (compile-internal): Style typo. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3574 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3575 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode): |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3576 quote vars and functions in the docstring. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3577 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3578 * newcomment.el (comment-make-extra-lines): Don't use `assert'. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3579 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3580 * completion.el (dynamic-completion-mode, dynamic-completion-mode): |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3581 Don't quote lambdas. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3582 |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3583 * ffap.el (ffap-highlight): Use facep rather than internal-find-face. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3584 |
29116 | 3585 2000-05-23 Gerd Moellmann <gerd@gnu.org> |
3586 | |
29127 | 3587 * startup.el (command-line): Determine source file of compiled |
3588 user init file differently. Warn if compiled user init file | |
3589 is older than its source file. | |
3590 | |
29116 | 3591 * ffap.el (ffap-url-regexp): Add `https'. |
29333
189f70e66cab
Update whitespace.el with a more tolerable timer scan time.
Rajesh Vaidheeswarran <rv@gnu.org>
parents:
29330
diff
changeset
|
3592 |
29112 | 3593 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il> |
3594 | |
3595 * files.el (make-backup-file-name-1): Replace slashes with `!' | |
3596 rather than `|' (which is not allowed on Windows). Replace the | |
3597 drive letters with a string "drive_X". | |
3598 | |
29110 | 3599 2000-05-23 Gerd Moellmann <gerd@gnu.org> |
3600 | |
3601 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'. | |
3602 | |
3603 * files.el (interpreter-mode-alist): Add `bash2'. | |
3604 | |
29091 | 3605 2000-05-22 Dave Love <fx@gnu.org> |
3606 | |
3607 * loadhist.el (feature-symbols, file-provides, file-requires): Use | |
3608 mapc. | |
3609 (feature-file): Avoid calling symbol-name. Doc fix. | |
3610 (file-set-intersect, file-dependents): Use dolist, not mapcar. | |
3611 (loadhist-hook-functions): Add mouse-position-function. | |
3612 (unload-feature): Change uses of mapcar. | |
3613 | |
3614 * files.el (parse-colon-path): Doc fix. | |
3615 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars. | |
3616 (set-auto-mode): Use mapc. | |
3617 | |
3618 * complete.el (PC-look-for-include-file): Use :alnum: character | |
3619 class. | |
3620 (partial-completion-mode): Add autoload cookie. | |
3621 | |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3622 2000-05-22 Sam Steingold <sds@gnu.org> |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3623 |
29102 | 3624 * info.el (Info-fontify-node): Fixed the call to |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3625 `add-text-properties' (bug introduced on 2000-05-18). |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3626 |
29082 | 3627 2000-05-22 Dave Love <fx@gnu.org> |
3628 | |
3629 * bindings.el: Remove debug-ignored-errors set in other files. | |
3630 | |
3631 * progmodes/etags.el: Add to debug-ignored-errors. | |
3632 (visit-tags-table-buffer): Clear out buffers holding old tables | |
3633 when making a new list. | |
3634 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use | |
3635 mapc. | |
3636 | |
3637 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't | |
3638 quote keywords. | |
3639 (cmpl-string-case-type): Use character classes. | |
3640 | |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3641 * comint.el: |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3642 * textmodes/ispell.el: |
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3643 * imenu.el: |
29082 | 3644 * mail/mh-e.el: |
3645 * progmodes/compile.el: Add to debug-ignored-errors. | |
3646 | |
3647 * dabbrev.el: Add to debug-ignored-errors. | |
3648 (dabbrev-completion): Use mapc. | |
3649 | |
29075 | 3650 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il> |
3651 | |
3652 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk) | |
3653 (woman-mapcan, woman-parse-man.conf) | |
3654 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font) | |
3655 (woman-reset-emulation, woman-select-symbol-fonts): New functions. | |
3656 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin | |
3657 path syntax better. | |
3658 (woman-man.conf-path, woman-use-own-frame): New defcustoms. | |
3659 (woman-manpath): Call woman-parse-man.conf. | |
3660 (woman-emulation): New defcustom, defaults to nroff. | |
3661 (woman-font-support): New defconst. | |
3662 (woman-use-symbol-font): New defcustom. | |
3663 (woman-menu): Add new menu items: "Colored/BW", "Advanced", | |
3664 "Emulation". | |
3665 Many functions: Doc fix. | |
3666 | |
29072 | 3667 2000-05-22 Kenichi Handa <handa@etl.go.jp> |
3668 | |
3669 * international/quail.el (quail-simple-translation-keymap): Map | |
3670 128..255 to quail-self-insert-command. | |
3671 (quail-keyboard-layout-alist): Add definition for "pc102-de". | |
3672 | |
29067
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
3673 2000-05-22 Stefan Monnier <monnier@cs.yale.edu> |
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
3674 |
29158
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3675 * help.el (help-manyarg-func-alist): Typo. |
76184e58accb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29148
diff
changeset
|
3676 |
29070
0199b9a52c3f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29067
diff
changeset
|
3677 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and |
0199b9a52c3f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29067
diff
changeset
|
3678 intervals which makes it heaps simpler. |
0199b9a52c3f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29067
diff
changeset
|
3679 |
29067
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
3680 * newcomment.el (comment-region-internal): Go back to BEG after quoting |
27f615da1df9
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29063
diff
changeset
|
3681 the nested comment markers. |
29063
594a655b83cf
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29061
diff
changeset
|
3682 |
594a655b83cf
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29061
diff
changeset
|
3683 * subr.el (remove-hook): Don't turn the hook's value into a list. |
594a655b83cf
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29061
diff
changeset
|
3684 |
29059 | 3685 2000-05-21 Dave Love <fx@gnu.org> |
3686 | |
29061 | 3687 * edmacro.el (edmacro-parse-keys): Return vector if any elements |
3688 are invalid characters. | |
3689 | |
29059 | 3690 * international/mule-util.el (detect-coding-with-priority): Use |
3691 mapc. Remove redundant lambda. | |
3692 | |
3693 * international/mule-diag.el (list-non-iso-charset-chars) | |
3694 (describe-fontset): Remove redundant lambda. | |
3695 | |
3696 * emulation/crisp.el (brief-mode): New alias. | |
3697 | |
3698 * emacs-lisp/ring.el (ring-elements): New function. | |
3699 | |
3700 * emacs-lisp/easymenu.el (easy-menu-create-menu) | |
3701 (easy-menu-do-add-item): Use keywordp. | |
3702 | |
3703 * emacs-lisp/byte-opt.el: Update side-effect free function lists. | |
3704 | |
3705 * replace.el: Doc and error message fixes. | |
3706 (replace-highlight): Use facep, not internal-find-face. | |
3707 | |
29038
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3708 2000-05-20 Stefan Monnier <monnier@cs.yale.edu> |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3709 |
29045
7235e6a14c62
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29043
diff
changeset
|
3710 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda. |
7235e6a14c62
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29043
diff
changeset
|
3711 |
29043
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3712 * log-edit.el (log-edit-done): Cleanup trailing empty lines. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3713 (log-edit-insert-changelog): Drop `:' as well. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3714 |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3715 * log-view.el: Fix file description. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3716 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3717 available. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3718 (log-view-font-lock-keywords): Only use cvs-filename-face if present. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3719 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present. |
a5d03117ad26
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29040
diff
changeset
|
3720 |
29040
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3721 * emacs-lisp/easy-mmode.el: Update copyright and commentary. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3722 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3723 Print a status message if the toggle is called interactively. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3724 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE) |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3725 for global minor modes and use `defcustom' for them. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3726 Use add-minor-mode. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3727 (easy-mmode-define-derived-mode): Remove. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3728 (define-derived-mode): Fancier default docstring. |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3729 (easy-mmode-define-navigation): Signal an error rather than (ding). |
a0ca583126cb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29038
diff
changeset
|
3730 |
29038
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3731 * newcomment.el (comment-styles): New `box-multi'. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3732 (comment-normalize-vars): Better default for comment-continue to |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3733 avoid whitespace-only continuations. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3734 (comment-search-forward): Always move even in the no-syntax case. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3735 (comment-padright): Only obey N if it's only obeyed for padleft. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3736 (comment-make-extra-lines): Better handling of empty continuations. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3737 Use `=' for the filler if comment-start has only one character. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3738 (uncomment-region): Try handling the special `=' filler. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3739 (comment-region): Allow LINES even if MULTI is nil. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3740 (comment-box): Choose box style based on comment-style. |
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3741 |
29029 | 3742 2000-05-20 Kenichi Handa <handa@etl.go.jp> |
3743 | |
29038
9e9fab0248d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29029
diff
changeset
|
3744 * international/ccl.el (ccl-compile-write-string): Make STR unibyte. |
29029 | 3745 (ccl-compile-write-repeat): If ARG is string, make it unibyte. |
3746 | |
29028 | 3747 2000-05-20 Kenichi HANDA <handa@etl.go.jp> |
3748 | |
3749 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region | |
3750 and insert, not subst-char-in-region. | |
3751 | |
3752 * international/mule-diag.el (list-character-sets-1): Handle | |
3753 charsets eight-bit-control and eight-bit-graphic. | |
3754 (list-iso-charset-chars): Likewise. | |
3755 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit | |
3756 charactes as is. Use indent-to to align characters. | |
3757 | |
3758 * international/mule-cmds.el (find-multibyte-characters): Never | |
3759 exclude charsets eight-bit-control and eight-bit-graphic. | |
3760 | |
29015
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3761 2000-05-19 Stefan Monnier <monnier@cs.yale.edu> |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3762 |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3763 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception): |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3764 Don't quote lambdas. |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3765 |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3766 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add. |
ec2827214bf3
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28993
diff
changeset
|
3767 |
28993 | 3768 2000-05-19 Gerd Moellmann <gerd@gnu.org> |
3769 | |
3770 * gud.el (gud-jdb-directories): Doc fix. | |
3771 | |
28989
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
3772 2000-05-19 Stefan Monnier <monnier@cs.yale.edu> |
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
3773 |
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
3774 * newcomment.el: New file. |
c16412bbfa3c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28988
diff
changeset
|
3775 |
28988 | 3776 2000-05-19 Gerd Moellmann <gerd@gnu.org> |
3777 | |
28993 | 3778 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'. |
28988 | 3779 |
28982 | 3780 2000-05-18 Andreas Schwab <schwab@suse.de> |
3781 | |
3782 * dired.el (dired-between-files): Also skip lines beginning with | |
3783 `used'. | |
3784 | |
28978 | 3785 2000-05-18 Gerd Moellmann <gerd@gnu.org> |
3786 | |
3787 * msb.el (msb-menu-cond): Add choice `user'. | |
3788 | |
28981 | 3789 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
3790 |
28981 | 3791 * ps-print.el: Compatibility, customization and doc fix. |
3792 (ps-printer-name-option): Replace defconst by defvar. | |
3793 (ps-postscript-code-directory): XEmacs compatibility. | |
3794 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code | |
3795 fix. | |
3796 (ps-user-defined-prologue, ps-print-prologue-header) | |
3797 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs | |
3798 compatibility and code fix. | |
3799 (ps-print-background-image, ps-print-background-text): | |
3800 Customization fix. | |
3801 (ps-line-number-start, ps-n-up-on): New vars. | |
3802 | |
28978 | 3803 2000-05-18 Espen Skoglund <esk@ira.uka.de> |
3804 | |
3805 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed | |
3806 the indent-comment function to just return the appropriate indent. | |
3807 | |
28975 | 3808 2000-05-18 Eric M. Ludlam <zappo@ultranet.com> |
3809 | |
3810 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm, | |
3811 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm, | |
3812 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files | |
3813 | |
28969 | 3814 2000-05-18 Dave Love <fx@gnu.org> |
3815 | |
3816 * info.el (Info-fontify-node): Add intangible property as well as | |
3817 invisible. | |
3818 | |
3819 * calendar/appt.el (appt-make-list): Match all lines of entry. | |
3820 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de> | |
3821 | |
28965 | 3822 2000-05-18 Kenichi Handa <handa@etl.go.jp> |
3823 | |
3824 * international/mule-diag.el (describe-char-after): Call | |
3825 internal-char-font, not char-font. If internal-char-font returns | |
3826 nil, display "-- none --". | |
3827 | |
28959 | 3828 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il> |
3829 | |
3830 * image.el (image-type-available-p): Don't reference image-types | |
3831 if it isn't bound. | |
3832 | |
28957
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
3833 2000-05-17 Stefan Monnier <monnier@cs.yale.edu> |
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
3834 |
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
3835 * autoarg.el (autoarg-mode): Typo in the :set argument. |
71d552e41a3d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28954
diff
changeset
|
3836 |
28954 | 3837 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il> |
3838 | |
3839 * startup.el (command-line-1): Don't signal an error if the | |
3840 directory for auto-save-list files does not yet exist. | |
3841 | |
28950 | 3842 2000-05-17 Kenichi Handa <handa@etl.go.jp> |
3843 | |
3844 * international/mule-conf.el (arabic-iso8859-6): Fix typo. | |
3845 | |
28948
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
3846 2000-05-16 Stefan Monnier <monnier@cs.yale.edu> |
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
3847 |
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
3848 * subr.el (remove-hook): `setq' hook-value, not `set'. |
39632cb551a0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28943
diff
changeset
|
3849 |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
3850 2000-05-16 Sam Steingold <sds@gnu.org> |
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
3851 |
28981 | 3852 * info.el (debug-ignored-errors): More errors to ignore. |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
3853 |
28942 | 3854 2000-05-16 Dave Love <fx@gnu.org> |
3855 | |
3856 * cus-edit.el: Don't require cl or easymenu. | |
3857 (custom-variable-prompt): Test standard-value property, not | |
3858 user-variable-p. | |
3859 | |
28940
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
3860 2000-05-16 Sam Steingold <sds@gnu.org> |
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
3861 |
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
3862 * subr.el (add-hook): `setq' hook-value, not `set'. |
2a91228f7aa3
(add-hook): setq hook-value, not set
Sam Steingold <sds@gnu.org>
parents:
28939
diff
changeset
|
3863 |
28939 | 3864 2000-05-16 Gerd Moellmann <gerd@gnu.org> |
3865 | |
3866 * startup.el (command-line-1): Mention the FAQ in the startup | |
3867 message. | |
3868 | |
3869 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'. | |
3870 | |
3871 * progmodes/compile.el (compilation-parse-errors): Collect | |
3872 `nomessage' regexps last. | |
3873 | |
3874 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp. | |
3875 | |
3876 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp' | |
3877 to the function name. | |
3878 | |
28926 | 3879 2000-05-15 Dave Love <fx@gnu.org> |
3880 | |
3881 * speedbar.el (speedbar-recenter): Typo. | |
3882 (speedbar-expand-line): Make arg optional. | |
3883 (speedbar-mode): Avoid a compiler warning. | |
3884 | |
28924 | 3885 2000-05-15 Gerd Moellmann <gerd@gnu.org> |
3886 | |
3887 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that | |
3888 user-specified option string is empty. | |
3889 | |
3890 * mouse.el (mouse-yank-at-click): Doc fix. | |
3891 | |
28921 | 3892 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il> |
3893 | |
3894 * term/internal.el (IT-character-translations): More updates of | |
3895 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC | |
3896 documents. | |
3897 | |
28919 | 3898 2000-05-15 Gerd Moellmann <gerd@gnu.org> |
3899 | |
3900 * env.el (getenv): New function, interactively callable. | |
3901 (setenv, getenv): Remove autoload cookies. | |
3902 | |
3903 * loadup.el: Load `env'. | |
3904 | |
3905 * progmodes/f90.el: Change author's mail address. | |
3906 | |
28908 | 3907 2000-05-14 Dave Love <fx@gnu.org> |
3908 | |
28911 | 3909 * mail/rmail.el (rmail-show-message-hook): Customize and offer |
3910 goto-addr as an option. | |
3911 | |
3912 * help.el (help-xref-stack): Doc fix. | |
3913 (help-xref-following): New variable. | |
3914 (help-make-xrefs): Use it. | |
3915 (help-xref-go-back): Use position information from stack element. | |
3916 (help-follow): Make position in stack element a pair. Use | |
3917 help-xref-following. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
3918 |
28911 | 3919 * autoarg.el: New file. |
3920 | |
3921 * faces.el: Declare more functions obsolete. | |
3922 | |
28908 | 3923 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el |
3924 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el | |
3925 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el | |
3926 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el: | |
3927 Remove all the setup-...-environment functions. | |
3928 | |
28903 | 3929 2000-05-13 Eric M. Ludlam <zappo@ultranet.com> |
3930 | |
28919 | 3931 * speedbar.el: Updated the commentary section. xemacs20p now uses |
3932 >= when detecting. Require `defimage' safely. | |
28903 | 3933 (speedbar-easymenu-definition-base): Add toggle for images. |
3934 (speedbar-easymenu-definition-special): Add flush cache & expand. | |
3935 (speedbar-visiting-tag-hook): Set new defaults. Added options. | |
3936 (speedbar-reconfigure-keymaps-hook): New variable. | |
3937 (speedbar-frame-parameters): Updated documentation. | |
3938 (speedbar-use-imenu-flag): Updated custom tag | |
3939 (speedbar-dynamic-tags-function-list): New variable. | |
3940 (speedbar-tag-hierarchy-method): Updated doc & custom. | |
28919 | 3941 (speedbar-indentation-width, speedbar-indentation-width) New |
3942 variables. | |
3943 (speedbar-hide-button-brackets-flag): Customizable. | |
28903 | 3944 (speedbar-vc-indicator): Doc update. |
3945 (speedbar-ignored-path-expressions): Updated default value. | |
3946 (speedbar-supported-extension-expressions): Updated default value. | |
3947 (speedbar-syntax-table): Remove {} paren status. | |
28919 | 3948 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act |
3949 as "+". Added overlay aliases. | |
3950 (speedbar-mode): Use `speedbar-mode-line-update' instead of | |
3951 `force-mode-line-update'. | |
3952 (speedbar-mode, speedbar-quick-mouse, speedbar-click) | |
3953 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of | |
3954 `mouse-set-point' | |
28903 | 3955 (speedbar-reconfigure-keymaps): Run configure keymap hooks. |
28919 | 3956 (speedbar-item-info-tag-helper): Revamped to handle a wider range |
3957 of arbitrary text, and new helper functions. | |
3958 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in | |
3959 filename finder. | |
28903 | 3960 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'. |
3961 (speedbar-directory-buttons): Update path search/expansion. | |
3962 (speedbar-make-tag-line): Pay attention to | |
28919 | 3963 `speedbar-indentation-width'. Use more care w/ invisible |
3964 properties. | |
28903 | 3965 (speedbar-change-expand-button-char): Call |
3966 `speedbar-insert-image-button-maybe'. | |
3967 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced). | |
28919 | 3968 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy) |
3969 (speedbar-trim-words-tag-hierarchy) | |
3970 (speedbar-simple-group-tag-hierarchy): New functions | |
28903 | 3971 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks. |
28919 | 3972 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New |
3973 functions. | |
28903 | 3974 (speedbar-mouse-set-point): New function |
3975 (speedbar-power-click): Updated documentation. | |
28919 | 3976 (speedbar-line-token, speedbar-goto-this-file): Handle more types |
3977 of tag prefix text. | |
3978 (speedbar-expand-line, speedbar-contract-line): Make more robust | |
3979 to strange text. | |
3980 (speedbar-expand-line): Takes universal argument to flush the | |
3981 cache. | |
28903 | 3982 (speedbar-flush-expand-line): New function. |
3983 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn. | |
3984 Use new generator insertion method. | |
3985 (speedbar-fetch-dynamic-tags): New function. | |
3986 (speedbar-fetch-dynamic-imenu): Removed code now handled in | |
3987 `speedbar-fetch-dynamic-imenu'. | |
3988 (speedbar-fetch-dynamic-etags): Fix current buffer problem. | |
3989 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and | |
3990 "Revert Buffer" menu items. | |
3991 (speedbar-buffer-buttons-engine): Be smarter when creating a | |
3992 filename tag (for expansion purposes.). | |
28919 | 3993 (speedbar-highlight-one-tag-line, |
3994 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top) | |
3995 (speedbar-recenter): New functions. | |
28903 | 3996 (defimage-speedbar): Image loading abstraction. |
28919 | 3997 (speedbar-directory-+, speedbar-directory--, speedbar-file-+) |
3998 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+) | |
3999 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v) | |
4000 (speedbar-tag-type, speedbar-tag-mail): New images. | |
28903 | 4001 (speedbar-expand-image-button-alist): New variable. |
4002 (speedbar-insert-image-button-maybe): Insert an image over some | |
4003 buttons. | |
4004 | |
28894 | 4005 2000-05-13 Kenichi Handa <handa@etl.go.jp> |
4006 | |
4007 * international/mule-cmds.el (encode-coding-char): An ASCII | |
4008 character is always encodable. | |
4009 | |
4010 * international/mule-conf.el: Add more information in descriptions | |
4011 of character sets. | |
4012 | |
28965 | 4013 * international/mule-diag.el (describe-char-after): New function. |
28894 | 4014 (describe-font-internal): Adjusted for the change of font-info. |
4015 (describe-font): Likewise. | |
4016 (print-fontset): Rewritten for the new fontset implementation. | |
4017 (describe-fontset): Include fontset alias names in completion. | |
4018 (list-fontsets): Adjusted for the change of print-fontset. | |
4019 | |
28895 | 4020 * simple.el (what-cursor-position): If DETAIL is non-nil, call |
4021 describe-char-after instead of displaying the detail in the echo | |
4022 area. | |
28965 | 4023 (syntax-code-table): Format changed. |
4024 (string-to-syntax): Adjusted for the above change. | |
29085
602b7988fdb1
(Info-fontify-node): fixed the call to add-text-properties
Sam Steingold <sds@gnu.org>
parents:
29082
diff
changeset
|
4025 |
28905
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
4026 2000-05-12 Stefan Monnier <monnier@cs.yale.edu> |
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
4027 |
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
4028 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode. |
e96880caf4e5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28903
diff
changeset
|
4029 |
28890 | 4030 2000-05-12 Dave Love <fx@gnu.org> |
4031 | |
4032 * calendar/todo-mode.el: Remove some compatibility stuff and CL | |
4033 dependence. Use line-{beginning,end}-position, not | |
4034 point-at{b,e}ol. Some doc fixes. | |
4035 (todo-position): New function. Fix callers of position to use it. | |
4036 (todo-save-top-priorities, todo-print): Use with-temp-buffer. | |
4037 | |
28885 | 4038 2000-05-12 Gerd Moellmann <gerd@gnu.org> |
4039 | |
4040 * time.el (display-time-mail-icon): Use `:ascent center'. | |
4041 | |
28893 | 4042 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for |
4043 handling FTP security extensions. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4044 |
28882 | 4045 2000-05-11 Dave Love <fx@gnu.org> |
4046 | |
28888 | 4047 * calendar/todo-mode.el: New file. |
28882 | 4048 |
28870 | 4049 2000-05-11 Gerd Moellmann <gerd@gnu.org> |
4050 | |
28881 | 4051 * comint.el (comint-read-input-ring): Move reference to |
4052 comint-input-ring-size outside of the save-excursion. It was | |
4053 causing the default value to be the only one ever seen. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4054 |
28875 | 4055 * font-lock.el: Update copyright. Remove Simon Marshall's email |
4056 address on request from him. | |
4057 | |
28870 | 4058 * subr.el (substitute-key-definition): Add comment describing |
4059 the meaning of PREFIX. | |
4060 | |
28865
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4061 2000-05-10 Stefan Monnier <monnier@cs.yale.edu> |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4062 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4063 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4064 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4065 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed.. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4066 (add-minor-mode): Don't make the variable buffer-local and add a |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4067 reference to define-minor-mode in the docstring. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4068 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4069 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4070 HEADER/FOOTER and fix bug with trailing empty directory. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4071 (cvs-append-to-ignore): Use vc-editable-p if available. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4072 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4073 (vc-do-command): Tweak advice to handle the new VC. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4074 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4075 * log-view.el (log-view-goto-rev): New function for the new VC. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4076 (log-view-minor-wrap): Use mark-active. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4077 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4078 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4079 (log-edit-changelog-full-paragraphs): New var. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4080 (log-edit-insert-changelog): Remove a lonely leading `* file'. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4081 (log-edit-narrow-changelog, log-edit-changelog-paragraph) |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4082 (log-edit-changelog-subparagraph, log-edit-changelog-entry) |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4083 (log-edit-changelog-ours-p, log-edit-changelog-entries) |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4084 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries): |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4085 Replace the `cvs' prefix with `log-edit'. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4086 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4087 * iswitchb.el (iswitchb-completion-help): Unquote lambda. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4088 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4089 * diff-mode.el (diff-font-lock-keywords): Recognize comments. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4090 (diff-font-lock-defaults): Explicitly turn off multiline. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4091 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4092 (diff-ediff-patch): Fix call to ediff-patch-file. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4093 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs): |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4094 Handle comments. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4095 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4096 * frame.el (automatic-hscrolling): Typo. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4097 |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4098 * cvs-status.el (cvs-status-minor-wrap): Use mark-active. |
5743b3652f72
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28848
diff
changeset
|
4099 |
28845 | 4100 2000-05-09 Sam Steingold <sds@goems.com> |
4101 | |
4102 * apropos.el (apropos-print): use `describe-face' instead of | |
4103 `customize-face-other-window'. | |
4104 | |
28842 | 4105 2000-05-09 Dave Love <fx@gnu.org> |
4106 | |
4107 Changes mostly following Richard Sharman <rsharman@wave.home.com>. | |
4108 | |
4109 * help.el (describe-variable): Have customize button pop the | |
4110 help-xref stack when invoked. | |
4111 (help-xref-symbol-regexp): Add `face'. | |
4112 (help-make-xrefs): Check for quoted face names and adapt regexp | |
4113 submatch numbers to cope. | |
4114 (help-xref-interned): Maybe insert face doc too. Separate | |
4115 sections with a line of hyphens. | |
4116 | |
28848 | 4117 * faces.el: Some doc fixes. Declare some functions obsolete. |
28842 | 4118 (describe-face): Add customize button. Return the help |
4119 text. Fix prompt. | |
4120 | |
28839 | 4121 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il> |
4122 | |
4123 * term/internal.el (IT-character-translations): Fix last change. | |
4124 | |
28833 | 4125 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il> |
4126 | |
4127 * woman.el: New file | |
4128 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>). | |
4129 | |
28829 | 4130 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il> |
4131 | |
28831 | 4132 * term/internal.el (IT-character-translations): Update ASCII |
4133 simulations for greek-iso8859-7, add latin-iso8859-14 and | |
4134 latin-iso8859-15. | |
4135 | |
28829 | 4136 * international/mule-cmds.el (set-language-info-alist): Call |
4137 define-prefix-command with 3 arguments, to make the map suitable | |
4138 for a menu. | |
4139 | |
28827 | 4140 2000-05-07 Dave Love <fx@gnu.org> |
4141 | |
31242 | 4142 * time.el: Small doc fixes from Pavel Jan,Am(Bk ml. |
28827 | 4143 |
28825 | 4144 2000-05-05 Dave Love <fx@gnu.org> |
4145 | |
4146 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg | |
4147 list in doc string. Don't quote keyword symbols. | |
4148 * emacs-lisp/cl.el: Likewise | |
4149 * emacs-lisp/cl-seq.el: Likewise | |
4150 | |
28823 | 4151 2000-05-05 Gerd Moellmann <gerd@gnu.org> |
4152 | |
4153 * abbrev.el (abbrev-mode): Make ARG optional. | |
4154 | |
28812 | 4155 2000-05-04 Gerd Moellmann <gerd@gnu.org> |
4156 | |
28817 | 4157 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'. |
4158 | |
4159 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'. | |
4160 | |
28812 | 4161 * subr.el (substitute-key-definition): Clarify documentation. |
4162 | |
4163 2000-05-04 Milan Zamazal <pdm@freesoft.cz> | |
4164 | |
4165 * glasses.el (glasses-convert-to-unreadable): Use | |
4166 `glasses-separator' instead of the hard-wired "_". | |
4167 (glasses-mode): Call `glasses-make-unreadable' only in a single | |
4168 place. | |
4169 | |
28808 | 4170 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il> |
4171 | |
4172 * term/internal.el (cjk-codepages-alist): Add associations for | |
4173 Chinese and Korean codepages. Remove FIXME comment. | |
4174 | |
28806 | 4175 2000-05-03 Dave Love <fx@gnu.org> |
4176 | |
4177 * time.el (display-time-mail-face, display-time-use-mail-icon): | |
4178 New option. | |
4179 (display-time-mail-icon): New variable. | |
4180 (display-time-string-forms): Use the above. Fix the local-map. | |
4181 | |
28795 | 4182 2000-05-03 Gerd Moellmann <gerd@gnu.org> |
4183 | |
28805 | 4184 * replace.el (query-replace-map): Add binding for `E'. |
4185 (query-replace-help): Extend help text. | |
4186 (perform-replace): Allow editing the replacement string. | |
4187 | |
4188 * make-mode.el (makefile-mode-abbrev-table): New variable. | |
4189 (makefile-mode): Set local abbrev table to | |
4190 makefile-mode-abbrev-table. | |
4191 (makefile-font-lock-keywords): Fontify includes and conditionals. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4192 |
28795 | 4193 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't |
4194 set TOGGLE's value. | |
4195 | |
28805 | 4196 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from |
4197 mail-interactive-insert-alias. | |
4198 (mail-abbrev-complete-alias): New command. | |
4199 (mail-mode-map): Bind it to `M-TAB'. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4200 |
28790 | 4201 2000-05-03 Kenichi Handa <handa@etl.go.jp> |
4202 | |
4203 * language/lao-util.el (lao-compose-region): New function. | |
4204 | |
28782 | 4205 2000-05-02 Gerd Moellmann <gerd@gnu.org> |
4206 | |
28789 | 4207 * files.el (recover-session): Make directories as necessary |
4208 if they don't exist yet. | |
4209 | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4210 * calendar/cal-french.el |
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4211 (french-calendar-multibyte-special-days-array) |
28782 | 4212 (french-calendar-special-days-array): Change French text. |
4213 (calendar-french-date-string): Change output. | |
4214 (calendar-goto-french-date): Likewise. | |
4215 | |
4216 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk> | |
4217 | |
4218 * wid-edit.el (widget-default-active): Obey `:always-active'. | |
4219 (widget-documentation-string-value-create): Set `:always-active'. | |
4220 | |
28778 | 4221 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il> |
4222 | |
4223 * startup.el (auto-save-list-file-prefix): For ms-dos, set the | |
4224 default prefix to `~/_emacs.d/auto-save.list/_s'. | |
4225 (normal-top-level): Create the directory for auto-save files, if | |
4226 it doesn't already exist (in the ms-dos case only). | |
4227 | |
28775 | 4228 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il> |
4229 | |
4230 * international/mule-cmds.el (set-language-environment): Don't | |
4231 concat an integer (dos-codepage), use format instead. | |
4232 | |
28772 | 4233 2000-05-02 Dave Love <fx@gnu.org> |
4234 | |
4235 * help.el (help-xref-on-pp): Check for constant symbols. | |
4236 | |
28764 | 4237 2000-04-29 Gerd Moellmann <gerd@gnu.org> |
4238 | |
4239 * startup.el (normal-top-level): Put a condition-case around | |
4240 the code loading subdirs.el. | |
4241 | |
4242 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4243 |
28764 | 4244 * ps-print.el: Upside-down and face background color printing, |
4245 line number step, doc fix. | |
4246 (ps-print-version): New version number (5.2). | |
4247 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job) | |
4248 (ps-face-attribute-list, ps-plot-with-face): Code fix. | |
4249 (ps-spool-config): Var fix. | |
4250 (ps-printer-name-option): Const fix. | |
4251 (ps-print-upside-down, ps-use-face-background) | |
4252 (ps-line-number-step): New vars. | |
4253 (ps-window-system, ps-lp-system): New consts. | |
4254 (ps-face-background): New fun. | |
4255 | |
28759 | 4256 2000-04-28 Richard Stallman <rms@gnu.org> |
4257 | |
4258 * files.el (make-auto-save-file-name): | |
4259 Apply auto-save-file-name-transforms to visited file name | |
4260 before generating auto save file name. | |
4261 (auto-save-file-name-transforms): New variable. | |
4262 | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4263 * files.el (backup-enable-predicate): |
28759 | 4264 Correctly test for a file under a temporary directory. |
4265 | |
28751 | 4266 2000-04-28 Gerd Moellmann <gerd@gnu.org> |
4267 | |
4268 * subr.el (add-minor-mode): Rewritten. | |
4269 | |
28749 | 4270 2000-04-28 Kenichi Handa <handa@etl.go.jp> |
4271 | |
4272 * mail/sendmail.el (sendmail-send-it): Set | |
4273 buffer-file-coding-system to the selected coding system for MIME | |
4274 header. | |
4275 | |
28748 | 4276 2000-04-27 Gerd Moellmann <gerd@gnu.org> |
4277 | |
4278 * dired.el (dired-move-to-filename-regexp): Allow format where | |
4279 YYYY is followed by two spaces. | |
4280 | |
4281 * progmodes/etags.el (etags-tags-completion-table): Add a `:' | |
4282 in the second character class of the regexp. | |
4283 | |
4284 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in | |
4285 mh-etc, too. | |
4286 | |
4287 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert | |
4288 nil. | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4289 |
28748 | 4290 * subr.el (add-minor-mode): Use `set' instead of `setq'. |
4291 | |
4292 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN | |
4293 argument. | |
4294 | |
4295 2000-04-27 Sen Nagata <sen@eccosys.com> | |
28943
36fd90774cf7
(debug-ignored-errors): more errors to ignore.
Sam Steingold <sds@gnu.org>
parents:
28942
diff
changeset
|
4296 |
28748 | 4297 * emacs-lisp/crm.el (crm-completion-table): New variable. |
4298 (crm-collection-fn, crm-test-completion) | |
4299 (completing-read-multiple): Use it. | |
4300 | |
28736 | 4301 2000-04-27 Dave Love <fx@gnu.org> |
4302 | |
4303 * help.el (locate-library): Use mapc. | |
4304 (help-manyarg-func-alist): Add call-process-region. | |
4305 | |
28724 | 4306 2000-04-26 Gerd Moellmann <gerd@gnu.org> |
4307 | |
28729 | 4308 * subr.el (add-minor-mode): Make argument MAP optional. |
4309 | |
28724 | 4310 * desktop.el (desktop-save): Save list of minor modes. |
4311 (desktop-create-buffer): Restore minor modes. | |
4312 (desktop-minor-mode-table): New user-option. | |
4313 | |
4314 * subr.el (add-minor-mode): New function. | |
4315 | |
4316 * image.el (find-image): New function. | |
4317 (defimage): Rewritten to find image at load time. | |
4318 | |
4319 * startup.el (normal-top-level-add-to-load-path): Handle | |
4320 case that the default directory is not in load-path. | |
4321 | |
4322 * help.el: Old patch from Stefan Monnier. | |
4323 (help-xref-on-pp): New function. | |
4324 (describe-variable): Use it to display xrefs in a symbol's value. | |
4325 | |
28717
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
4326 2000-04-26 Stefan Monnier <monnier@cs.yale.edu> |
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
4327 |
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
4328 * cus-edit.el (custom-face): Fix parenthesis. |
228d0bc8e997
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28715
diff
changeset
|
4329 |
28713 | 4330 2000-04-26 Kenichi Handa <handa@etl.go.jp> |
4331 | |
28715 | 4332 * mail/rmail.el (rmail-expunge): When there are no deleted |
4333 messages, do nothing. | |
28713 | 4334 |
28712 | 4335 2000-04-26 Dave Love <fx@gnu.org> |
4336 | |
4337 * international/mule-cmds.el (locale-translation-file-name): | |
4338 Defvar to nil. | |
4339 (set-locale-environment): Set it here (at runtime). | |
4340 | |
28710 | 4341 2000-04-25 Gerd Moellmann <gerd@gnu.org> |
4342 | |
4343 * replace.el (perform-replace): Add parameters START and END. Use | |
4344 them instead of the check for a region in Transient Mark mode. | |
4345 (query-replace-read-args): Return two more list elements for the | |
4346 start and end of the region in Transient Mark mode. | |
4347 (query-replace, query-replace-regexp, query-replace-regexp-eval) | |
4348 (map-query-replace-regexp, replace-string, replace-regexp): Add | |
4349 optional last arguments START and END and pass them to | |
4350 perform-replace. | |
4351 | |
4352 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a | |
4353 form with additional arguments for perform-replace. | |
4354 | |
4355 * progmodes/etags.el (tags-query-replace): Add parameters START | |
4356 and END. Construct a form with additional arguments for | |
4357 perform-replace. | |
4358 | |
4359 * simple.el (shell-command): Set default directory for "*Shell | |
4360 Command Output" buffer. | |
4361 | |
4362 * language/european.el (iso-latin-4): Fix typo. | |
4363 | |
4364 * emacs-lisp/crm.el: New file. | |
4365 | |
28701 | 4366 2000-04-24 Dave Love <fx@gnu.org> |
4367 | |
4368 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current) | |
4369 (Custom-reset-saved, Custom-reset-standard) | |
4370 (custom-group-value-create, custom-group-set, custom-group-save) | |
4371 (custom-group-reset-current, custom-group-reset-saved) | |
4372 (custom-group-reset-standard): Use mapc. | |
4373 (custom-buffer-create-internal): Disable undo when creating items. | |
4374 Use mapc. | |
4375 (custom-face): Avoid redundant lambda. | |
4376 | |
28699 | 4377 2000-04-24 Gerd Moellmann <gerd@gnu.org> |
4378 | |
4379 * startup.el (auto-save-list-file-prefix): Set default to | |
4380 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS. | |
4381 | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4382 2000-04-24 Sam Steingold <sds@gnu.org> |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4383 |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4384 * time-stamp.el (time-stamp-string-preprocess): Always convert |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4385 `field-result' to a string. |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4386 |
28695 | 4387 2000-04-24 Gerd Moellmann <gerd@gnu.org> |
4388 | |
4389 * frame.el (scrolling): New group. | |
4390 (automatic-hscrolling): New user-option. | |
4391 | |
4392 * startup.el (command-line-x-option-alist): Add `-lsp' and | |
4393 `--line-spacing'. | |
4394 | |
28668 | 4395 2000-04-19 Dave Love <fx@gnu.org> |
4396 | |
4397 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition. | |
4398 (cl-mapc): Rename from mapc. Fix the funcall. | |
4399 | |
28653 | 4400 2000-04-19 Gerd Moellmann <gerd@gnu.org> |
4401 | |
28660 | 4402 * simple.el (clone-indirect-buffer-other-window): New command. |
4403 (clone-indirect-buffer): Add optional arg NORECROD. | |
4404 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window. | |
4405 | |
28658 | 4406 * help.el (resize-temp-buffer-window): Use count-screen-lines. |
4407 | |
4408 * window.el (count-screen-lines): New function. | |
4409 (shrink-window-if-larger-than-buffer): Use count-screen-lines | |
4410 instead of window-buffer-height. | |
4411 | |
4412 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set | |
4413 non-existing variable comint-input-sentinel. | |
4414 (inferior-lisp-args-to-list): Removed. | |
4415 (inferior-lisp): Use split-string instead of | |
4416 inferior-lisp-args-to-list. | |
4417 | |
4418 * hexl.el (hexl-insert-hex-string): New command. | |
4419 | |
28653 | 4420 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name |
4421 instead of concat. | |
4422 | |
28634 | 4423 2000-04-18 Gerd Moellmann <gerd@gnu.org> |
4424 | |
4425 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline | |
4426 at the start of an existing but empty folder. | |
4427 | |
4428 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
4429 | |
4430 * ps-mule.el: Customization fix, doc fix. | |
4431 (ps-multibyte-buffer): Customization fix. | |
4432 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
4433 2000-04-17 Richard M. Stallman <rms@gnu.org> |
28627
1f6ba3e73fe9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28626
diff
changeset
|
4434 |
1f6ba3e73fe9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28626
diff
changeset
|
4435 * subr.el (read-passwd): Use read-char-exclusive. |
1f6ba3e73fe9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28626
diff
changeset
|
4436 |
28626 | 4437 2000-04-17 Gerd Moellmann <gerd@gnu.org> |
4438 | |
4439 * textmodes/texinfo.el (texinfo-insert-@email) | |
4440 (texinfo-insert-@emph, texinfo-insert-@quotation) | |
4441 (texinfo-insert-@strong, texinfo-insert-@url): New functions. | |
4442 (texinfo-mode-map): Add key bindings for them. | |
4443 | |
4444 * files.el (basic-save-buffer-2): Use a template with `$' | |
4445 instead of `#' for VMS. | |
4446 | |
4447 * simple.el (clone-indirect-buffer): New function. | |
4448 | |
28621 | 4449 2000-04-16 Stephen Eglen <stephen@gnu.org> |
4450 | |
4451 * iswitchb.el (iswitchb-case): New function. If the user input | |
4452 contains any upper-case characters, the search is made | |
4453 case-sensitive. | |
4454 | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4455 2000-04-17 Stefan Monnier <monnier@cs.yale.edu> |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4456 |
28621 | 4457 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as |
4458 comment-end. | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4459 (texinfo-font-lock-syntactic-keywords): New var. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4460 (texinfo-font-lock-keywords): Remove comment regexp. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4461 (texinfo-insert-block): New function. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4462 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block. |
28621 | 4463 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip |
4464 and font-lock-defaults. Use regexp-opt for outline-regexp. | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4465 (texinfo-environments): New var. |
28621 | 4466 (texinfo-environment-regexp): Use regexp-opt and |
4467 texinfo-environments. | |
4468 | |
4469 * textmodes/ispell.el (ispell-menu-map-needed): Check that | |
4470 ispell-process is bound since this might be eval'd before ispell | |
4471 is loaded. | |
4472 (ispell-message): Use a tiny bit less magic and a bit more hard | |
4473 data to figure out what kind of sc-cite-regexp to use. | |
28618
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4474 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4475 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4476 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4477 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries) |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4478 (insert-cyclic-diary-entry): Unquote the lambda. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4479 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4480 * gud.el (gud-jdb-build-source-files-list): Fix typo. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4481 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4482 * files.el (backup-enable-predicate): Unquote the lambda. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4483 |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4484 * cus-edit.el (custom-face, face): Unquote the lambda. |
001842bbe0e4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28602
diff
changeset
|
4485 |
28602 | 4486 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
4487 | |
4488 * ps-print.el: Check for line-beginning-position definition. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4489 |
28602 | 4490 * ps-print.el: Fix counting lines in a region. |
4491 (ps-print-version): New version number (5.1.5). | |
4492 (ps-spool-without-faces, ps-spool-with-faces): Adjust code. | |
4493 (ps-printing-region): Fun code fix. | |
4494 | |
28600 | 4495 2000-04-15 Gerd Moellmann <gerd@gnu.org> |
4496 | |
4497 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p | |
4498 to file-directory-p. | |
4499 | |
28591 | 4500 2000-04-14 Gerd Moellmann <gerd@gnu.org> |
4501 | |
4502 * gud.el (gud-jdb-build-source-files-list): Check that directory | |
4503 exists before calling directory-files. | |
4504 | |
28578 | 4505 2000-04-13 Dave Love <fx@gnu.org> |
4506 | |
4507 * emacs-lisp/trace.el: Change maintainer. Use new backquote | |
4508 syntax. | |
4509 | |
4510 * emacs-lisp/cl-specs.el: Remove when, unless. | |
4511 | |
4512 * emacs-lisp/cl-extra.el: Don't quote keywords. | |
4513 (cl-old-mapc): New variable. | |
4514 (mapc): Use it. | |
4515 (cl-map-intervals): Use with-current-buffer. Don't check for | |
4516 next-property-change. | |
4517 (cl-map-overlays): Use with-current-buffer. | |
4518 (cl-expt): Remove. | |
4519 (copy-tree, remprop): Define unconditionally. | |
4520 | |
4521 * emacs-lisp/cl-compat.el (keywordp): Remove. | |
4522 | |
4523 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers | |
4524 to use keywordp. | |
4525 (edebug-spec): Enable keywordp. | |
4526 | |
4527 * cus-edit.el (custom-sort-items): Avoid symbol-name with new | |
4528 string-lessp. | |
4529 | |
4530 * cus-start.el: Use keywordp. | |
4531 | |
28577 | 4532 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
4533 | |
4534 * diary-lib.el (include-other-diary-files): Fix the fix of | |
4535 2000-02-18 by doing a save-excursion. | |
4536 | |
4537 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
4538 | |
4539 * ps-print.el: Customization fix, doc fix. | |
4540 (ps-print-version): New version number (5.1.4). | |
4541 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node) | |
4542 (ps-print-preprint): Adjust code. | |
4543 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue) | |
4544 (ps-print-prologue-header, ps-print-control-characters) | |
4545 (ps-spool-config): Customization fix. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4546 |
28564 | 4547 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il> |
4548 | |
4549 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and | |
4550 converted to the new menu-item format, names silightly changed, | |
4551 help strings added. | |
4552 | |
4553 Support for spelling without async subprocesses: | |
4554 | |
4555 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer) | |
4556 (ispell-session-buffer): New variables. | |
4557 (ispell-start-process, ispell-process-status, | |
4558 ispell-accept-output, ispell-send-string): New functions, for | |
4559 Ispell invocation when async subprocesses aren't supported. | |
4560 (ispell-word, ispell-pdict-save, ispell-command-loop, | |
4561 ispell-process-line, ispell-buffer-local-parsing): Replace calls | |
4562 to process-send-string with calls to ispell-send-string, and | |
4563 accept-process-output with ispell-accept-output. | |
4564 (ispell-init-process): Call ispell-process-status instead of | |
4565 process-status with. | |
4566 (ispell-init-process): Call ispell-start-process. Call | |
4567 ispell-accept-output and ispell-send-string. Don't call | |
4568 process-kill-without-query and kill-process if they are unbound. | |
4569 (ispell-async-processp): New function. | |
4570 | |
28560 | 4571 2000-04-12 Dave Love <fx@gnu.org> |
4572 | |
4573 * info.el: Add debug-ignored-errors. | |
4574 (Info-mode-menu): Add some items. | |
4575 (Info-directory): Add autoload cookie. | |
4576 | |
4577 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible. | |
4578 Modify `truncate-lines'. Make `describe-language-environment' | |
4579 always visible and add help. Modify `describe-key' help. Invoke | |
4580 Info-directory from `info'. New entry `emacs-manual'. | |
4581 | |
28542 | 4582 2000-04-10 Gerd Moellmann <gerd@gnu.org> |
4583 | |
28549 | 4584 * progmodes/ebrowse.el (ebrowse-tree-mode): Use |
4585 propertized-buffer-identification. | |
4586 (ebrowse-update-member-buffer-mode-line): Likewise. | |
4587 (ebrowse--mode-strings): Removed. | |
4588 (ebrowse--mode-line-props): Removed. | |
4589 | |
28542 | 4590 * files.el (auto-mode-alist): Add `EBROWSE'. |
4591 | |
4592 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white | |
4593 space before testing for end of buffer. | |
4594 (ebrowse-load): Removed. | |
4595 (ebrowse-revert-tree-buffer-from-file): Rewritten. | |
4596 (ebrowse-create-tree-buffer): Rewritten. | |
4597 (ebrowse-tree-mode): Read tree from buffer. | |
4598 | |
4599 * progmodes/ebrowse-ffh.el: Removed. | |
4600 | |
28535 | 4601 2000-04-10 Kenichi Handa <handa@etl.go.jp> |
4602 | |
4603 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug. | |
4604 | |
28534 | 4605 2000-04-10 Gerd Moellmann <gerd@gnu.org> |
4606 | |
4607 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)' | |
4608 at the wrong place. | |
4609 | |
28783 | 4610 2000-04-09 Dave Love <fx@gnu.org> |
4611 | |
4612 * files.el (backup-enable-predicate): Use | |
4613 temporary-file-directory, small-temporary-file-directory. | |
4614 (make-backup-file-name-function, backup-directory-alist): New | |
4615 variables. | |
4616 (make-backup-file-name-1): New function. | |
4617 (make-backup-file-name): Use it. | |
4618 (find-backup-file-name): Likewise. Use format for clarity, not | |
4619 concat. | |
4620 (file-newest-backup): Use make-backup-file-name. | |
4621 | |
28523 | 4622 2000-04-09 Gerd Moellmann <gerd@gnu.org> |
4623 | |
28530 | 4624 * progmodes/ebrowse-ffh.el: New file. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4625 |
28530 | 4626 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved |
4627 to ebrowse-ffh.el. | |
4628 (ebrowse-load): Add autoload. | |
4629 | |
4630 * finder.el (finder-commentary): Add autoload cookie. | |
4631 | |
28523 | 4632 * mail/rfc2368.el: Correct author's email address. |
4633 | |
4634 * progmodes/ebrowse.el: New file. | |
4635 | |
4636 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu | |
4637 item help string. | |
4638 (easy-menu-do-add-item): Ditto. | |
4639 (easy-menu-define): Extend doc string. | |
4640 | |
4641 * jit-lock.el (with-buffer-unmodified): Use | |
4642 restore-buffer-modified-p. | |
4643 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified. | |
4644 (jit-lock-function, jit-lock-stealth-fontify): Don't use | |
4645 with-buffer-unmodified. | |
4646 | |
28517 | 4647 2000-04-08 Dave Love <fx@gnu.org> |
4648 | |
4649 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop, | |
4650 unless, when. | |
4651 | |
28510
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
4652 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp> |
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
4653 |
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
4654 * viper-util.el (viper-put-on-search-overlay): New subroutine. |
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
4655 (viper-flash-search-pattern): No operation when using Emacs |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4656 doesn't support face. |
28510
6fb7a3864791
2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
28506
diff
changeset
|
4657 Use `viper-put-on-search-overlay'. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4658 |
28506 | 4659 2000-04-04 Gerd Moellmann <gerd@gnu.org> |
4660 | |
4661 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r | |
4662 like C-r. | |
4663 | |
4664 * progmodes/make-mode.el: Some doc fixes. | |
4665 (makefile-mode-abbrev-table): New variable. | |
4666 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table. | |
4667 (makefile-font-lock-keywords): Fontify includes and conditionals. | |
4668 (toplevel): Require `dabbrev' and `add-log' when compiling. | |
4669 | |
4670 * replace.el (perform-replace): Don't move forward one char | |
4671 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want | |
4672 to do that because it leaves point 1 position after the last | |
4673 replacement, after everything has been replaced. | |
4674 | |
4675 * jit-lock.el (with-buffer-unmodified): New macro. | |
4676 (with-buffer-prepared-for-font-lock): Don't preserve buffer's | |
4677 modified state. | |
4678 (jit-lock-function-1): Extracted from jit-lock-function; not | |
4679 preserving buffer's modified state. | |
4680 (jit-lock-function, jit-lock-stealth-fontify): Call | |
4681 jit-lock-function-1. | |
4682 | |
4683 * mail/rfc2368.el: Remove supernumerary copyright line. | |
4684 | |
28499 | 4685 2000-04-04 Milan Zamazal <pdm@freesoft.cz> |
4686 | |
4687 * glasses.el: Provide facilities for inserting space before left | |
4688 parentheses and uncapitalization of identifiers. | |
4689 (glasses-mode): Try to remove old overlays in all cases. | |
4690 | |
28485 | 4691 2000-04-03 Gerd Moellmann <gerd@gnu.org> |
4692 | |
28496 | 4693 * progmodes/compile.el (compile-internal): Display the compilation |
4694 buffer in a different frame, if it's already displayed there. | |
4695 | |
28494 | 4696 * mail/rfc2368.el: New file. |
4697 | |
28492 | 4698 * simple.el (sendmail-user-agent-compose): Recognize a `body' |
4699 header and insert its value as mail body. | |
4700 | |
4701 * subr.el (member-ignore-case): New function. | |
4702 | |
4703 * dabbrev.el (dabbrev-ignored-regexps): New user-option. | |
4704 (dabbrev--find-expansion): Ignore buffers matching a regexp | |
4705 from dabbrev-ignored-regexps. | |
4706 | |
28485 | 4707 * jka-compr.el (jka-compr-compression-info-list): Add `.z' |
4708 to extensions handled by gzip. | |
4709 | |
28492 | 4710 2000-04-03 Richard M. Stallman <rms@gnu.org> |
4711 | |
4712 * files.el (insert-directory): List the total free space | |
4713 along with the used space. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4714 |
28492 | 4715 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix |
4716 line is followed by one that matches CITATION-REGEXP, end the | |
4717 paragraph. | |
4718 | |
4719 2000-04-03 Markus Rost <rost@delysid.gnu.org> | |
4720 | |
4721 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option. | |
4722 (rmail-make-basic-summary-line): Use that option. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4723 |
28474 | 4724 2000-04-03 Kenichi Handa <handa@etl.go.jp> |
4725 | |
4726 * international/mule-cmds.el (encoded-string-description): | |
4727 Rewritten. Try pretty description for ISO 2022 escape sequences | |
28476 | 4728 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters |
4729 for hexadecimal format. | |
28474 | 4730 |
28468 | 4731 2000-04-01 Dave Love <fx@gnu.org> |
4732 | |
4733 * cpp.el: Change customization group to `c' from `C'. | |
4734 | |
4735 * vcursor.el (vcursor-move): Use display-color-p. | |
4736 | |
4737 * international/mule-util.el: Provide mule-utils. | |
4738 (string-to-sequence): Simplify and speed up. | |
4739 | |
4740 * international/mule.el (make-coding-system): Purecopy doc-string. | |
4741 | |
4742 * international/mule-cmds.el: Various menu changes. | |
4743 (describe-specified-language-support): Handle `Default'. | |
4744 (set-language-info): Purecopy `info'. | |
4745 | |
28462 | 4746 2000-03-31 Andrew Innes <andrewi@gnu.org> |
4747 | |
4748 * vc.el (vc-backend-diff): Return the correct status if we had to | |
4749 retry the rcsdiff command without the --brief option. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4750 |
28445 | 4751 2000-03-31 Dave Love <fx@gnu.org> |
4752 | |
28452 | 4753 * help.el (help-manyarg-func-alist): Correct several omissions. |
4754 | |
28450 | 4755 * add-log.el: Don't require cl, fortran. |
4756 (add-log-current-defun-function): Doc fix. | |
4757 (change-log-version-number-regexp-list): Remove SCCS part. Doc | |
4758 fix. | |
4759 (change-log-version-rcs): Function deleted. | |
4760 (change-log-version-number-search): Doc fix. Use | |
4761 vc-workfile-version. Avoid CL dolist. | |
4762 (add-change-log-entry): Just call add-log-current-defun to get | |
4763 defun. Simplify somewhat. | |
4764 (change-log-get-method-definition-1): Likewise. | |
4765 (add-log-current-defun): Return nil if calling | |
4766 add-log-current-defun-function does so. Move Fortran stuff to | |
4767 fortran.el. Return string without properties. | |
4768 | |
28445 | 4769 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper: |
4770 and :alpha: char classes. | |
4771 | |
4772 * mail/supercite.el: Defvar curline when compiling. | |
4773 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp) | |
4774 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:] | |
4775 rather than a-zA-Z0-9 to allow non-ASCII characters. | |
4776 | |
28444 | 4777 2000-03-31 Gerd Moellmann <gerd@gnu.org> |
4778 | |
4779 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format. | |
4780 | |
4781 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): | |
4782 Re-enable new code. | |
4783 | |
4784 * lpr.el (print-region-1): Use -d to specify printer name for | |
4785 systems `usg-unix-v*, `dgux', `hpux', `irix'. | |
4786 | |
4787 2000-03-31 Dave Love <fx@gnu.org> | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4788 |
28444 | 4789 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look |
4790 for function definition in symbol's function value slot first | |
4791 instead of first consulting byte-compile-function-environment. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4792 |
28435 | 4793 2000-03-31 Kenichi Handa <handa@etl.go.jp> |
4794 | |
4795 * language/european.el ("Polish"): New language environment. | |
4796 (setup-polish-environment): New function. | |
4797 | |
28424 | 4798 2000-03-30 Gerd Moellmann <gerd@gnu.org> |
4799 | |
4800 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload): | |
4801 Disable new code. | |
4802 | |
4803 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug | |
4804 trying to `load' the symbol of an autoload instead of the file | |
4805 recorded in the autoload. Fix error messages. | |
4806 | |
28429 | 4807 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
4808 | |
4809 * ps-print.el: PostScript programming fix for ghostview, doc fix. | |
4810 (ps-print-version): New version number (5.1.3). | |
4811 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup) | |
4812 (ps-insert-file, ps-output-boolean, ps-plot-with-face) | |
4813 (ps-generate-postscript-with-faces): Code fix. | |
4814 (ps-color-values): XEmacs compatibility. | |
4815 (ps-print-background-image, ps-print-background-text, ps-printer-name) | |
4816 (ps-default-fg, ps-default-bg): Adjust customization. | |
4817 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var. | |
4818 (ps-color-scale): Renaming old ps-color-value fun. | |
4819 (ps-print-headers): Replace ps-print-header group to avoid conflict | |
4820 with ps-print-header variable. | |
4821 (ps-print-miscellany): New group. | |
4822 (ps-format-color, ps-rgb-color): New funs. | |
4823 (ps-default-foreground): New var. | |
4824 (ps-printer-name-option): New const. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4825 |
28416 | 4826 2000-03-30 Peter Breton <pbreton@ne.mediaone.net> |
4827 | |
28421
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
4828 * net/net-utils.el: |
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
4829 (network-connection-host, network-connection-service): New variables |
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
4830 (network-connection-mode): New mode, derived from comint-mode |
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
4831 (network-connection-mode-setup): New function, saves host and |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4832 service information in local variables. |
28421
a8dd4622faa4
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
28416
diff
changeset
|
4833 |
28416 | 4834 * lisp/locate.el: |
4835 (locate-word-at-point): Added this function | |
4836 (locate): Default to using locate-word-at-point as input | |
4837 Run dired-mode-hook | |
4838 | |
28405 | 4839 2000-03-29 Dave Love <fx@gnu.org> |
4840 | |
4841 * calendar/appt.el: Doc fixes. | |
4842 (appt-check): Convert min-to-app to a string before passing to | |
4843 appt-disp-window-function or concat. | |
4844 (appt-delete-window): Remove test for frame-root-window. | |
4845 (appt-select-lowest-window, appt-convert-time): Simplify. | |
4846 | |
4847 * emacs-lisp/bytecomp.el: Doc fixes. | |
4848 (byte-compile-file-form-autoload): Update | |
4849 byte-compile-function-environment. | |
4850 | |
28403 | 4851 2000-03-29 Andreas Schwab <schwab@suse.de> |
4852 | |
4853 * emacs-lisp/autoload.el: Also print defsubst doc string | |
4854 specially. | |
4855 | |
4856 * dired.el (dired-insert-directory): If dired-free-space-program | |
4857 failed just delete its output. | |
4858 | |
28395 | 4859 2000-03-29 Dave Love <fx@gnu.org> |
4860 | |
4861 * international/iso-cvt.el: Move provide to end. Doc fixes. | |
4862 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables. | |
4863 (iso-iso2sgml, iso-sgml2iso): New functions. | |
4864 (iso-cvt-define-menu): Fix some entries and use backquote for | |
4865 clarity. | |
4866 | |
4867 * format.el (format-alist): Use iso-cvt functions for SGML/HTML. | |
4868 | |
28377 | 4869 2000-03-28 Gerd Moellmann <gerd@gnu.org> |
4870 | |
4871 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter | |
4872 ISO-DATE. If non-nil, return date in ISO 8601 format. | |
4873 | |
28337
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4874 2000-03-26 Stefan Monnier <monnier@cs.yale.edu> |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4875 |
28341
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
4876 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
4877 if it ever becomes used. |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
4878 (log-edit-mode-hook): Default to vc-log-mode-hook. |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
4879 (log-edit-mode): Fix the docstring. |
f89c8f185c0d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28337
diff
changeset
|
4880 |
28337
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4881 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4882 the code. |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4883 |
28326 | 4884 2000-03-26 Dave Love <fx@gnu.org> |
4885 | |
28331 | 4886 * net/browse-url.el (browse-url): Re-fix case of |
4887 browse-url-browser-function being an alist. | |
4888 (browse-url): Add :link to defgroup. | |
4889 | |
28326 | 4890 * files.el: Doc fixes. |
4891 (file-truename): Include `[' in wildcard characters. | |
4892 (automount-dir-prefix): Customize. | |
4893 (find-file-wildcards): Add :version. | |
4894 (find-file-noselect): Simplify a mapcar call. | |
4895 | |
4896 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist | |
4897 compatible with inf-lisp version. | |
4898 (eval-defun-1): Fix custom-declare-variable case. | |
4899 | |
28337
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4900 2000-03-25 Stefan Monnier <monnier@cs.yale.edu> |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4901 |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4902 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'. |
080ef35e195d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28331
diff
changeset
|
4903 |
28303 | 4904 2000-03-24 Gerd Moellmann <gerd@gnu.org> |
4905 | |
28308 | 4906 * Makefile (COMPILE_FIRST): New macro. |
4907 (compile-files): Compile files from COMPILE_FIRST first. | |
4908 | |
4909 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new | |
4910 code. | |
4911 | |
28303 | 4912 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp |
4913 matching open parenthesis in column 0 to defun-prompt-regexp | |
4914 only if open-paren-in-column-0-is-defun-start is set. | |
4915 | |
4916 * sun-curs.el: Require CL at compile-time only. | |
4917 | |
4918 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)' | |
4919 instead of copy-list which is a function from CL. | |
4920 (msb--choose-menu, msb--mode-menu-cond) | |
4921 (msb--create-buffer-menu-2): Use dolist instead of mapc. | |
4922 (msb--init-file-alist): Use mapcar instead of mapcan. | |
4923 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix | |
4924 `(' in column 0 in doc string. | |
4925 (msb--add-separators): Use mapcar instead of mapcan. | |
4926 | |
4927 * cus-dep.el: Require CL at compile-time only. | |
4928 | |
28296
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4929 2000-03-24 Stefan Monnier <monnier@cs.yale.edu> |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4930 |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4931 * emacs-lisp/bytecomp.el (byte-compile-warning-types) |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4932 (byte-compile-warnings): New warning `noruntime'. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4933 (byte-compile-constants, byte-compile-variables): Fix docstring. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4934 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4935 execute `eval-whenc-compile's body. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4936 (byte-compile-unresolved-functions): Fix docstring. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4937 (byte-compile-eval): New function. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4938 (byte-compile-callargs-warn): Check if the function will be available |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4939 at runtime (via property `byte-compile-noruntime'). |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4940 (byte-compile-print-syms): New function. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4941 (byte-compile-warn-about-unresolved-functions): Also warn about |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4942 `noruntime' functions (and use `byte-compile-print-syms'). |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4943 (byte-compile-file): Capitalize the message. |
0fa8223bb981
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28292
diff
changeset
|
4944 |
28292 | 4945 2000-03-24 Gerd Moellmann <gerd@gnu.org> |
4946 | |
4947 * mail/rmail.el (rmail-confirm-expunge): New user-option. | |
4948 (rmail-expunge): Ask for confirmation depending on the setting | |
4949 of rmail-confirm-expunge. | |
4950 | |
4951 2000-03-23 Gerd Moellmann <gerd@gnu.org> | |
4952 | |
4953 * Makefile (bootstrap-clean): If $(emacs) exists, build | |
4954 loaddefs.el first. A loaddefs.el that's not up-to-date might | |
4955 cause a bootstrap failure because things don't autoload as | |
4956 expected. | |
4957 | |
28289 | 4958 2000-03-23 Dave Love <fx@gnu.org> |
4959 | |
4960 * net/browse-url.el: Restore previous use of | |
4961 browse-url-maybe-new-window. | |
4962 | |
28287 | 4963 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
4964 | |
4965 * ps-print.el: Skip banner page fix. | |
4966 (ps-print-version): New version number (5.1.2). | |
4967 (ps-begin-file, ps-end-file, ps-generate): Code fix. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4968 |
28287 | 4969 2000-03-23 Dave Pearson <davep@davep.org> |
4970 | |
4971 * net/quickurl.el Changed the type of parameter passed to the | |
4972 function defined by `quickurl-format-function'. Before only the | |
4973 text of the URL was passed. Now the whole URL structure is passed | |
4974 and the function is responsible for extracting the parts it | |
4975 requires. Changed the default of `quickurl-format-function' | |
4976 accordingly. | |
4977 (quickurl-insert): Changed the `funcall' of | |
4978 `quickurl-format-function' to match the above change. | |
4979 (quickurl-list-insert): Changed the `url' case so that it makes | |
4980 use of `quickurl-format-function', previous to this the format was | |
4981 hard wired. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
4982 |
28283 | 4983 2000-03-22 Gerd Moellmann <gerd@gnu.org> |
4984 | |
4985 * startup.el: Change some spellings for the X Window System. | |
4986 | |
28278
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
4987 2000-03-22 Stefan Monnier <monnier@cs.yale.edu> |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
4988 |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
4989 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
4990 up the code and the regexp and make sure the cursor is temporarily |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
4991 moved to the suspicious line while querying the user. |
85db5c5cde20
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28276
diff
changeset
|
4992 |
28276 | 4993 2000-03-22 Jason Rumney <jasonr@gnu.org> |
4994 | |
4995 * w32-fns.el (w32-charset-info-alist): Initialize. | |
4996 | |
28267 | 4997 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
4998 | |
4999 * ps-print.el: N-up last page fix. | |
5000 (ps-print-version): New version number (5.1.1). | |
5001 (ps-end-file, ps-end-job, ps-generate): Code fix. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5002 |
28252
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5003 2000-03-21 Stefan Monnier <monnier@cs.yale.edu> |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5004 |
28260
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5005 * files.el (find-file-run-dired): Update docstring. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5006 (find-directory-functions): New hook. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5007 (find-file-noselect): Run find-directory-functions rather than |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5008 calling dired directly. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5009 |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5010 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu. |
bc3a3319185f
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28257
diff
changeset
|
5011 |
28257
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5012 * pcvs.el: Add a minimal leading commentary. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5013 (cvs-make-cvs-buffer): Change the header part by removing the startup |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5014 message and adding a `Module' entry. Also replace the FOOTER and |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5015 HEADER special fileinfos with the new support in ewoc for updating |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5016 its own footer and header. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5017 (cvs-update-header): Update to use the header/footer of the ewoc. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5018 (cvs-mode): Use define-derived-mode and set truncate-lines to t. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5019 (cvs-is-within-p): New function. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5020 (cvs-mode-run): Take advantage of `save-some-buffers's new ability |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5021 to only examine some subset of the buffers. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5022 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5023 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5024 `format' instead of our own ad-hoc functions. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5025 Remove HEADER and FOOTER cases, now handled in the EWOC. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5026 (cvs-fileinfo<): Remove HEADER and FOOTER cases. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5027 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5028 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5029 output to avoid scaring the user. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5030 (cvs-parse-table): Catch message for non-up-to-date commits. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5031 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5032 * pcvs-defs.el (cvs-startup-message): Remove. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5033 (cvs-global-menu): New autoloaded menu. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5034 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5035 * pcvs-util.el (cvs-string-fill): Remove. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5036 |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5037 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5038 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5039 PP part of it and also make it work for footers and headers. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5040 (ewoc-create): Drop POS and BUFFER arguments. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5041 Use the DLL's dummy node to store the end-of-footer position. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5042 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5043 (ewoc-refresh): Remove unused `header' variable. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5044 (ewoc-(get|set)-hf): New functions. |
1f09d55c62d2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28252
diff
changeset
|
5045 |
28252
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5046 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5047 log-view-*-(message|file) and use easy-mmode-define-navigation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5048 (log-view-message-re): Match SCCS format as well. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5049 And match the revision line rather than the dashed separator line. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5050 (log-view-mode): Use the new define-derived-mode. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5051 (log-view-current-tag): Fill in with an actual implementation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5052 |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5053 * cvs-status.el (cvs-status-(prev|next)): Rename from |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5054 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5055 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5056 to let the output "breathe" a little more (more readable). |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5057 (cvs-status-mode): Use the new define-derived-mode. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5058 |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5059 * smerge-mode.el (smerge-auto-leave): New function and variable. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5060 (smerge-basic-map): Rename from smerge-basic-keymap. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5061 Change the bindings for smerge-diff-*. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5062 (smerge-*-map): Use easy-mmode-defmap. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5063 (smerge-(next|prev)): Use easy-mmode-define-navigation. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5064 (smerge-keep-*): Use smerge-auto-leave. |
58835ebb9f63
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28247
diff
changeset
|
5065 |
28246 | 5066 2000-03-21 Jason Rumney <jasonr@gnu.org> |
5067 | |
5068 * cus-edit.el (custom-button-face): Use 3D look for w32. | |
5069 (custom-button-pressed-face): Likewise. | |
5070 | |
28244 | 5071 2000-03-21 Gerd Moellmann <gerd@gnu.org> |
5072 | |
5073 * progmodes/etags.el (tags-case-fold-search): New user-option. | |
5074 (tags-loop-eval): New function. Bind case-fold-search around eval | |
5075 depending on the value of tags-case-fold-search. | |
5076 (tags-loop-continue): Use tags-loop-eval. | |
5077 (find-tag-in-order): Bind case-fold-search depending on the value | |
5078 of tags-case-fold-search. | |
5079 | |
28236
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5080 2000-03-21 Stefan Monnier <monnier@cs.yale.edu> |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5081 |
28247
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5082 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5083 (diff-end-of-hunk): Return the end position for use in |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5084 `easy-mmode-define-navigation'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5085 (diff-recenter): Remove. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5086 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5087 of `easy-mmode-define-navigation'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5088 (diff-kill-*): Rename `diff-*-kill' (for consistency with the |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5089 previous renaming) and fix to use new names. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5090 (diff-merge-strings): Use \n as separator: simpler, faster. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5091 (diff-mode): Use `define-derived-mode'. |
57c889c9cedb
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28246
diff
changeset
|
5092 |
28236
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5093 * derived.el (define-derived-mode): Don't autoload anymore. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5094 Prefer the macro-only version provided by easy-mmode.el. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5095 |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5096 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5097 `easy-mmode-define-derived-mode'. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5098 Use `combine-run-hooks'. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5099 (easy-mmode-define-navigation): New macro. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5100 |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5101 * subr.el (combine-run-hooks): New function. |
ad471f641f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28233
diff
changeset
|
5102 |
28233 | 5103 2000-03-21 Kenichi HANDA <handa@etl.go.jp> |
5104 | |
5105 * term/x-win.el: Fontsets related initialization is simplified. | |
5106 | |
5107 * international/mule-diag.el (describe-font): Don't refer to | |
5108 global-fontset-alist, instead call font-list. | |
5109 (describe-fontset, list-fontsets, mule-diag): Likewise. | |
5110 (print-fontset): Adjusted for the change of fontset | |
5111 implementation. | |
5112 | |
5113 * international/fontset.el (x-charset-registries): Variable | |
5114 removed, instead the corresponding data is stored in the default | |
5115 fontset. | |
5116 (register-alternate-fontnames): Function removed. | |
5117 (resolved-ascii-font): Variable removed. | |
5118 (x-compose-font-name): Ignore the second argument REDOCE. | |
5119 (x-complement-fontset-spec): Complement only an ASCII font and | |
5120 element for those charsets than can use that ASCII font. | |
5121 (generate-fontset-menu): Don't refer to global-fontset-alist, | |
5122 instead call fontset-list. | |
5123 (uninstantiated-fontset-alist): Variable removed. | |
5124 (x-style-funcs-alist): Likewise. | |
5125 (fontset-default-styles): Likewise. | |
5126 (x-modify-font-name): Function removed. | |
5127 (create-fontset-from-fontset-spec): Ignore the argument | |
5128 STYLE-VARIANT. | |
5129 (create-fontset-from-ascii-font): Docsting adjusted for the above | |
5130 change. | |
5131 (instantiate-fontset, resolve-fontset-name): Functions removed. | |
5132 (fontset-list): Now implemented by C code. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5133 |
28233 | 5134 * faces.el (read-face-font): Fix TABLE arg to completing-read. |
5135 (describe-face): Include `font' attribute in the description. | |
5136 | |
28219 | 5137 2000-03-21 Kenichi Handa <handa@etl.go.jp> |
5138 | |
5139 * international/quail.el (quail-set-keyboard-layout): Typo fixed. | |
5140 | |
28209 | 5141 2000-03-20 Gerd Moellmann <gerd@gnu.org> |
5142 | |
28212 | 5143 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el, |
5144 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el, | |
5145 zone-mode.el, snmp-mode.el: Moved to net subdirectory. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5146 |
28209 | 5147 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment |
5148 about behavior of set-buffer-modified-p wrt redisplay. | |
5149 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
5150 2000-03-19 Richard M. Stallman <rms@gnu.org> |
28197
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
5151 |
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
5152 * view.el (view-mode-disable): Kill local binding of view-read-only. |
aaa6448240eb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28194
diff
changeset
|
5153 |
28194 | 5154 2000-03-18 Gerd Moellmann <gerd@gnu.org> |
5155 | |
5156 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE | |
5157 is a string, convert it to a syntax cell using string-to-syntax. | |
5158 | |
5159 * simple.el (syntax-code-table, syntax-flag-table): New variables. | |
5160 (string-to-syntax): New function. | |
5161 | |
5162 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option. | |
5163 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set, | |
28209 | 5164 try to use passive ftp mode. |
28194 | 5165 |
28189 | 5166 2000-03-17 Gerd Moellmann <gerd@gnu.org> |
5167 | |
28209 | 5168 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'. |
28189 | 5169 |
5170 * simple.el (append-to-buffer): Update point of windows after | |
5171 insertion. | |
5172 | |
5173 * abbrev.el (inverse-add-abbrev): Identify word by first moving | |
5174 forward then moving backward. Reindent. | |
5175 | |
5176 * frame.el (other-frame): Call x-focus-frame only if | |
5177 focus-follows-mouse is off. | |
5178 | |
28185 | 5179 2000-03-17 Dave Love <fx@gnu.org> |
5180 | |
5181 * pcvs-util.el (cvs-strings->string): Rename | |
5182 replace-regexps-in-string. | |
5183 | |
28179
5bcc6166bde4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28174
diff
changeset
|
5184 2000-03-17 Stefan Monnier <monnier@cs.yale.edu> |
5bcc6166bde4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28174
diff
changeset
|
5185 |
28181
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
5186 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the |
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
5187 regexp for labels cannot span several lines. |
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
5188 |
20032164c359
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28179
diff
changeset
|
5189 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless |
28189 | 5190 `(setq :<key> ':<key>)' to the macro expansion. |
28179
5bcc6166bde4
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28174
diff
changeset
|
5191 |
28174 | 5192 2000-03-16 Dave Love <fx@gnu.org> |
5193 | |
5194 * progmodes/f90.el (f90): Put custom group under `languages', not | |
5195 `fortran'. | |
5196 (f90-mode-hook): Customize. | |
5197 (f90-mode): Set add-log-current-defun-function. | |
5198 (f90-current-defun): New function. | |
5199 | |
28169 | 5200 2000-03-16 Gerd Moellmann <gerd@gnu.org> |
5201 | |
28173 | 5202 * cus-edit.el (custom-variable-tag-face): Handle case that |
5203 default face's height is not a number. | |
5204 (custom-face-tag-face, custom-group-tag-face-1) | |
5205 (custom-group-tag-face): Ditto. | |
5206 (custom-group-tag-face-1): Add :group. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5207 |
28169 | 5208 * info.el (Info-fontify-maximum-menu-size): Increase to 100000. |
5209 | |
28161 | 5210 2000-03-15 Gerd Moellmann <gerd@gnu.org> |
5211 | |
5212 * pcvs-defs.el (toplevel): Remove autoload cookie for form | |
5213 requiring easymenu. | |
5214 | |
28155 | 5215 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
5216 | |
5217 * ps-print.el: PostScript user-defined prologue, PostScript error | |
5218 handler, doc fix. | |
5219 (ps-print-version): New version number (5.1). | |
5220 (ps-user-defined-prologue, ps-error-handler-message) | |
5221 (ps-print-prologue-0, ps-error-handler-alist): New vars. | |
5222 (ps-setup, ps-begin-file, ps-begin-job): Code fix. | |
5223 (ps-insert-string): New function. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5224 |
28150 | 5225 2000-03-15 Kenichi Handa <handa@etl.go.jp> |
5226 | |
5227 * international/ccl.el (ccl-compile-expression): Don't generate | |
28151 | 5228 invalid self-assignment code. |
28150 | 5229 |
28149 | 5230 2000-03-14 Dave Love <fx@gnu.org> |
5231 | |
5232 * subr.el (replace-regexp-in-string): Renamed from | |
5233 replace-regexps-in-string. Doc fix. | |
5234 | |
28131 | 5235 2000-03-12 Dave Love <fx@gnu.org> |
5236 | |
5237 * cus-edit.el: Doc fixes. | |
5238 (customize-set-variable, customize-save-variable): Rename args for | |
5239 doc. | |
5240 (custom-variable-tag-face, custom-face-tag-face) | |
5241 (custom-group-tag-face-1, custom-group-tag-face): Modify from | |
5242 style which user identify as hyperlink. | |
5243 (hook): Don't add undefined functions to the hook. | |
5244 (debug-ignored-errors): Transfer message from bindings.el. | |
5245 | |
28120 | 5246 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
5247 | |
5248 * recentf.el (recentf-keep-non-readable-files-p): Remove | |
5249 double/nested definition. | |
5250 | |
28114 | 5251 2000-03-12 Dave Love <fx@gnu.org> |
5252 | |
5253 * facemenu.el (facemenu-get-face): Use display-color-p. | |
5254 * enriched.el (enriched-decode-foreground): Likewise. | |
5255 (enriched-decode-background): Likewise. | |
5256 * isearch.el (isearch-highlight): Likewise. | |
5257 * info-look.el (info-lookup): Likewise. | |
5258 * simple.el (completion-setup-function): Likewise. | |
5259 | |
5260 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to | |
5261 :options. | |
5262 | |
5263 * bindings.el (mode-line-format): Fix line-number and | |
5264 column-number items. Add help-echo for the background. | |
5265 (mode-line-mule-info): Modify help-echo. | |
5266 | |
5267 * avoid.el (mouse-avoidance-mode): Add autoload cookie to | |
5268 defcustom. | |
5269 | |
5270 * files.el (load-file): Allow completion to .elc. | |
5271 | |
5272 * man.el: Doc fixes. | |
5273 (Man-init-defvars): Use display-color-p to set fontification. | |
5274 | |
5275 * play/hanoi.el (hanoi-internal): Don't use oddp. | |
5276 | |
28109 | 5277 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
5278 | |
5279 * arc-mode.el (archive-zip-update): Add `-P' for pkzip. | |
5280 | |
5281 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment. | |
5282 | |
28098 | 5283 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de> |
5284 | |
5285 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'. | |
5286 Fix comment. | |
5287 | |
28088
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5288 2000-03-10 Stefan Monnier <monnier@cs.yale.edu> |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5289 |
28089
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5290 * font-lock.el (font-lock-keywords): Fix the doc now that |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5291 regexp-opt-depth is unnecessary. |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5292 (save-buffer-state): Set an edebug spec. |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5293 (font-lock-fontify-anchored-keywords): Properly handle the case when |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5294 the matcher goes past the limit. |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5295 |
28088
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5296 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el, |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5297 pcvs-parse.el, pcvs-util.el, pcvs.el: New files. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5298 |
28089
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5299 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el, |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5300 dll.el and cookie.el (from Elib) with heavy renaming and other |
1899d4c422fc
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28088
diff
changeset
|
5301 massaging. |
28088
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5302 |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5303 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax): |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5304 Autoload the functions used. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5305 (easy-mmode-define-syntax): Fix CL typo. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5306 (easy-mmode-define-derived-mode): Improve the docstring generation. |
b442dfc3cef0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28085
diff
changeset
|
5307 |
28084 | 5308 2000-03-10 Gerd Moellmann <gerd@gnu.org> |
5309 | |
5310 * textmodes/texinfo.el (texinfo-version): Variable and function | |
5311 removed. | |
5312 | |
28082
49fa1828784a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28080
diff
changeset
|
5313 2000-03-09 Stefan Monnier <monnier@cs.yale.edu> |
49fa1828784a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28080
diff
changeset
|
5314 |
28114 | 5315 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to |
5316 allow more flexibility. | |
5317 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New | |
5318 fns. | |
5319 (easy-mmode-defmap, easy-mmode-defsyntax) | |
5320 (easy-mmode-define-derived-mode): New macros. | |
28082
49fa1828784a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28080
diff
changeset
|
5321 |
28085 | 5322 2000-03-09 Didier Verna <didier@xemacs.org> |
28080 | 5323 |
5324 * rect.el (replace-rectangle): New function. | |
5325 | |
5326 2000-03-09 Dave Love <fx@gnu.org> | |
5327 | |
5328 * progmodes/fortran.el (fortran-comment-line-start): Define as | |
5329 "C". | |
5330 (fortran-comment-line-start-skip): Don't match cpp stuff. | |
5331 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff. | |
5332 (fortran-mode-map): Remove over-eager custom-menu-create for now. | |
5333 (fortran-mode): Don't set fortran-comment-line-start-skip, | |
5334 fortran-comment-line-start here. Set comment-start, | |
5335 add-log-current-defun. | |
5336 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff. | |
5337 (fortran-current-defun): New function. | |
5338 | |
28073 | 5339 2000-03-09 Gerd Moellmann <gerd@gnu.org> |
5340 | |
28077 | 5341 * emacs-lisp/re-builder.el: New file. |
5342 | |
28076 | 5343 * mouse.el (mouse-drag-region): Don't run up-event handler |
5344 if hscroll has changed. | |
5345 | |
28073 | 5346 * octave-mod.el (octave-font-lock-keywords): To font-lock the |
5347 builtin operators, use `font-lock-builtin-face' for Emacs and | |
5348 `font-lock-preprocessor-face' otherwise. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5349 |
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5350 * font-lock.el (lisp-font-lock-keywords-1): Highlight |
28073 | 5351 `(defun (setf foo)' differently. |
5352 | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5353 2000-03-08 Stefan Monnier <monnier@cs.yale.edu> |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5354 |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5355 * emacs-lisp/regexp-opt.el: Update copyright and leading comment. |
28073 | 5356 (regexp-opt): Update comment and adapt the code the new meaning of |
5357 the `paren' argument of regex-opt-group for shy-groups. | |
5358 (regexp-opt-depth): Handle shy groups as well as backslashed | |
5359 backslashes. | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5360 (regexp-opt-group): Turn the leading comment into a docstring. |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5361 Allow `paren' to be a string (the string to use to open a group). |
28073 | 5362 Remove open-presuf and close-presuf. Instead of checking for `all |
5363 one-char' and then later on check for `several one-char', handle | |
5364 both cases close together. Also apply a more generic algorithm | |
5365 for suffixes (the mirror image of the algorithm used for | |
5366 prefixes). Use shy-groups. Use nreverse rather than reverse. | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5367 (regexp-opt-try-suffix): Removed. |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5368 |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5369 * cmuscheme.el (inferior-scheme-mode-map): Define it independently |
28073 | 5370 from comint-mode-map, so we can just inherit from it. Also, move |
5371 the initialization into the `defvar' since there's no docstring | |
5372 anyway and it's fairly short. | |
5373 (inferior-scheme-mode): Define it as derived-mode: the code is | |
5374 shorter and this way we inherit from comint-mode-map rather than | |
5375 copying it. | |
5376 | |
5377 * subr.el (replace-regexps-in-string): Properly handle the case | |
5378 where we match an empty string. | |
5379 | |
5380 * comint.el (comint-exec-1): Add the current-dir to the exec-path | |
5381 when the command has a directory component (such as "./testml"). | |
28068
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5382 Also fix a typo in the comment. |
36b889aba7a2
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
5383 |
28046 | 5384 2000-03-08 Gerd Moellmann <gerd@gnu.org> |
5385 | |
28051 | 5386 * Makefile (compile-files): Compile files one by one because |
5387 that's the only way to ensure a clean compilation environment for | |
5388 each individual file. | |
5389 | |
28046 | 5390 * frame.el (other-frame): Call x-focus-frame. |
5391 | |
28040 | 5392 2000-03-07 Dave Love <fx@gnu.org> |
5393 | |
28043 | 5394 * recentf.el (recentf-keep-non-readable-files-p): Add :set, |
5395 :require to defcustom. | |
5396 | |
28040 | 5397 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads |
5398 lists. | |
5399 | |
5400 * files.el (auto-mode-alist): Add configure.in. | |
5401 | |
5402 * progmodes/autoconf.el: New file. | |
5403 | |
28034 | 5404 2000-03-07 Gerd Moellmann <gerd@gnu.org> |
5405 | |
5406 * mail/mh-e.el: Change maintainer to `none'. | |
5407 | |
5408 * recentf.el (recentf-keep-non-readable-files-p): Quote args | |
5409 to remove-hook and add-hook. | |
5410 | |
5411 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
5412 | |
28035 | 5413 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use |
28034 | 5414 it as the default. |
28035 | 5415 (mail-send): Test mail-send-nonascii also for the new `mime' value. |
5416 (sendmail-send-it): Conditionally add MIME headers specifying the | |
28034 | 5417 used character set. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5418 |
28024 | 5419 2000-03-07 Dave Love <fx@gnu.org> |
5420 | |
5421 * winner.el: Fix keywords, autoload cookies. Split | |
5422 eval-when-compile form to avoid compilation failure. | |
5423 | |
28017 | 5424 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp> |
5425 | |
5426 * international/mule.el: Modify comment about coding system | |
5427 property `coding-category'. | |
5428 (make-coding-system): New argument EOL-TYPE. Pay attention to | |
5429 coding-category property of PROPERTIES. | |
5430 | |
5431 * international/mule-conf.el (coding-category-utf-8, | |
5432 coding-category-utf-16-be, coding-category-utf-16-le): New coding | |
5433 categories. Include them in the argument for set-coding-priority. | |
5434 | |
5435 * international/mule-cmds.el (reset-language-environment): Include | |
5436 coding-category-utf-8, coding-category-utf-16-be, and | |
5437 coding-category-utf-16-le in the argument for set-coding-priority. | |
5438 (reset-language-environment): Initialize coding-category-utf-8, | |
5439 coding-category-utf-16-be, and coding-category-utf-16-le to nil. | |
5440 | |
28014 | 5441 2000-03-06 Karl Fogel <kfogel@red-bean.com> |
5442 | |
5443 * bookmark.el (bookmark-file-or-variation-thereof): New func, for | |
5444 code abstracted out of `bookmark-jump-noselect'. Now tries info | |
5445 extensions as well as compression extensions. | |
5446 (bookmark-jump-noselect): Use above new func. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5447 |
27976 | 5448 2000-03-03 Gerd Moellmann <gerd@gnu.org> |
5449 | |
5450 * strokes.el: Change maintainer's mail address. | |
5451 | |
27972 | 5452 2000-03-03 Kenichi Handa <handa@etl.go.jp> |
5453 | |
5454 * international/mule-diag.el (list-character-sets): Make help-echo | |
5455 string by substitute-command-keys. | |
5456 (list-character-sets): Likewise. | |
5457 (sort-listed-character-sets): Call help-setup-xref. | |
5458 | |
27965 | 5459 2000-03-02 Gerd Moellmann <gerd@gnu.org> |
5460 | |
5461 * time.el (display-time-mail-file): Add `none' to the list of | |
5462 choices. | |
5463 | |
27954 | 5464 2000-03-01 Dave Love <fx@gnu.org> |
5465 | |
27959 | 5466 * help.el (help-xref-go-back): Don't try to set position. |
5467 | |
27954 | 5468 * international/mule-diag.el (list-character-sets): Call |
5469 help-setup-xref. Add help-echo to xrefs. | |
5470 (list-character-sets-1): Add help-echo to xrefs. | |
5471 | |
27949 | 5472 2000-03-02 Gerd Moellmann <gerd@gnu.org> |
5473 | |
5474 * frame.el (blink-cursor-mode): Switch cursor on when turning | |
5475 the mode off. | |
5476 | |
5477 * add-log.el (add-log-current-defun): Add support for | |
5478 Autoconf mode. | |
5479 | |
5480 * mail/rmail.el (rmail-quit-hook): New variable. | |
5481 | |
27931 | 5482 2000-03-01 Dave Love <fx@gnu.org> |
5483 | |
27935 | 5484 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |. |
5485 | |
27931 | 5486 * help.el (help-xref-button): Add help-echo arg. |
5487 (describe-function-1, describe-variable, help-make-xrefs): Use it. | |
5488 | |
5489 * faces.el (list-faces-display): Supply help-echo with | |
5490 help-make-xrefs. | |
5491 | |
5492 * facemenu.el (list-text-properties-at): Set help-xref-stack to | |
5493 nil. | |
5494 | |
27919 | 5495 2000-03-01 Gerd Moellmann <gerd@gnu.org> |
5496 | |
27927 | 5497 * image.el (defimage): Look for image files in load-path. |
5498 | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5499 * frame.el (busy-cursor-delay-seconds): Change type to |
27919 | 5500 `number'. |
5501 | |
27927 | 5502 2000-03-01 David Ponce <david.ponce@wanadoo.fr> |
5503 | |
5504 * recentf.el (recentf): Added version tag to the defgroup of | |
5505 recentf. | |
5506 | |
5507 2000-03-01 David Ponce <david.ponce@wanadoo.fr> | |
5508 | |
5509 * recentf.el (recentf-cleanup): Changed to remove excluded file | |
5510 too. | |
5511 (recentf-edit-list-action): `recentf-edit-list' checkbox widget | |
5512 action to select/unselect a file. | |
5513 (recentf-edit-list): Code cleanup and improvement. | |
5514 (recentf-open-more-files-action): `recentf-open-more-files' button | |
5515 widget action to open a file. | |
5516 (recentf-open-more-files): No more use standard completion but | |
5517 widgets. | |
5518 (recentf-more-collection): Deleted. | |
5519 (recentf-more-history): Deleted. | |
5520 (recentf-setup-more-completion): Deleted. | |
5521 | |
5522 2000-03-01 David Ponce <david.ponce@wanadoo.fr> | |
5523 | |
5524 * recentf.el (recentf-mode): No more needs that Emacs is running | |
5525 under a window-system. | |
5526 | |
5527 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
5528 | |
5529 * recentf.el (recentf-edit-list): New command to edit the recent | |
5530 list which allow the user to remove files. | |
5531 (recentf-edit-selected-items): New global variable, used by | |
5532 `recentf-edit-list' to hold the list of files to be removed from | |
5533 the recent list. | |
5534 (recentf-make-menu-items): Updated to display a "Edit list..." | |
5535 menu item. Minor code cleanup. | |
5536 | |
5537 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
5538 | |
5539 * recentf.el (recentf-open-more-files): New command to open files | |
5540 that are not displayed in the menu. | |
5541 (recentf-more-collection): New global variable holding the set of | |
5542 permissible completions used by `recentf-open-more-files'. | |
5543 (recentf-more-history): New global variable holding the history list | |
5544 used by `recentf-open-more-files' completion. | |
5545 (recentf-setup-more-completion): New function to setup completion for | |
5546 `recentf-open-more-files'. | |
5547 (recentf-make-menu-items): Updated to display a "More..." menu item. | |
5548 | |
5549 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
5550 | |
5551 * recentf.el (recentf-menu-action): Doc fixed. | |
5552 | |
5553 1999-03-01 David Ponce <david.ponce@wanadoo.fr> | |
5554 | |
5555 * recentf.el (recentf-menu-filter): Doc updated. | |
5556 (recentf-update-menu-hook): Allow menu filters to force menu update. | |
5557 (recentf-make-menu-items): New menu filter handling. | |
5558 (recentf-make-menu-item): New helper function. | |
5559 (recentf-menu-elements): New menu handling function. | |
5560 (recentf-sort-ascending): Updated to new menu filter handling. | |
5561 (recentf-sort-descending): Updated to new menu filter handling. | |
5562 (recentf-sort-basenames-ascending): New menu filter function. | |
5563 (recentf-sort-basenames-descending): New menu filter function. | |
5564 (recentf-show-basenames): New menu filter function. | |
5565 (recentf-show-basenames-ascending): New menu filter function. | |
5566 (recentf-show-basenames-descending): New menu filter function. | |
5567 | |
27919 | 5568 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
5569 | |
5570 * diary-lib.el (list-diary-entries): Don't try to go forward at | |
5571 the end of the buffer. | |
5572 | |
27911 | 5573 2000-02-29 Kenichi Handa <handa@etl.go.jp> |
5574 | |
5575 * international/mule-diag.el (list-character-sets): Completely | |
5576 rewritten. | |
5577 (sort-listed-character-sets): New function. | |
5578 (list-character-sets-1): Completely rewritten. | |
5579 (list-character-sets-2): New function. | |
5580 (non-iso-charset-alist): New variable. | |
5581 (decode-codepage-char): New function. | |
5582 (charset-history): New variable. | |
5583 (read-charset) (list-block-of-chars) | |
5584 (list-iso-charset-chars) | |
5585 (list-non-iso-charset-chars) | |
5586 (list-charset-chars): New functions. | |
5587 (mule-diag): Call list-character-sets-2, not | |
5588 list-character-sets-2. | |
5589 (dump-charsets): Likewise. | |
5590 | |
27910 | 5591 2000-02-29 Gerd Moellmann <gerd@gnu.org> |
5592 | |
27919 | 5593 * dired-x.el (dired-filename-at-point): Add `@' to valid |
5594 file name characters. | |
5595 (dired-filename-at-point): Handle ange-ftp file names. | |
5596 | |
27910 | 5597 * frame.el (frame-notice-user-settings): Use assq-delete-all |
5598 instead of assoc-delete-all. | |
5599 (frame-notice-user-settings): Ditto. | |
5600 | |
5601 * subr.el (assq-delete-all): Renamed from assoc-delete-all. | |
5602 Don't copy alist. | |
5603 | |
27906 | 5604 2000-02-28 Eli Barzilay <eli@cs.cornell.edu> |
5605 | |
5606 * calculator.el (calculator-use-menu): New option. | |
5607 (calculator-initial-bindings): Changed some bindings to work as | |
5608 macros. | |
5609 (calculator-forced-input): Removed. | |
5610 (calculator-restart-other-mode): New variable. | |
5611 (calculator-mode-map): Set up menu. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5612 |
27906 | 5613 2000-02-28 Jari Aalto <jari.aalto@poboxes.com> |
5614 | |
5615 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc | |
5616 tags. | |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5617 |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5618 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu> |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5619 |
27899
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5620 * viper-cmd.el (viper-envelop-ESC-key): added the option to |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5621 translate all ESC key sequences. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5622 (viper-goto-mark-subr): restore markers for files for which |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5623 they were saved. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5624 * viper-init.el (viper-translate-all-ESC-keysequences): new variable. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5625 * viper-util.el (viper-set-replace-overlay-glyphs, |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5626 viper-set-replace-overlay): always check if the replacement |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5627 overlay is live. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5628 * viper.el (viper-vi-state-mode-list): added major modes. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5629 * ediff-wind.el: minor comment changes. |
42f9a58e0fc4
* viper-cmd.el (viper-envelop-ESC-key): added the option to
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
27898
diff
changeset
|
5630 * ediff.el: copyright notice date fix. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5631 |
27898 | 5632 2000-02-27 Jason Rumney <jasonr@gnu.org> |
5633 | |
5634 * faces.el (face-font-family-alternatives): Add arial to helv. | |
5635 (mode-line, header-line, tool-bar): Same default as x for w32. | |
5636 (fixed-pitch, variable-pitch): Remove wildcard as it prevents | |
5637 face-font-family-alternatives from working. | |
5638 * term/w32-win.el (mouse-set-font): Do not build fontset from | |
5639 chosen font. | |
5640 | |
27873 | 5641 2000-02-25 Sam Steingold <sds@goems.com> |
5642 | |
29797
3bf98b923af0
handle print-unreadable-object
Sam Steingold <sds@gnu.org>
parents:
29777
diff
changeset
|
5643 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block' |
27873 | 5644 properly. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
5645 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
5646 2000-02-25 Richard M. Stallman <rms@gnu.org> |
27873 | 5647 |
5648 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail. | |
5649 | |
27856 | 5650 2000-02-25 Gerd Moellmann <gerd@gnu.org> |
5651 | |
5652 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer | |
5653 writable. | |
5654 | |
27868 | 5655 * frame.el (busy-cursor-delay-seconds): New option. |
27866 | 5656 |
27847 | 5657 2000-02-24 Gerd Moellmann <gerd@gnu.org> |
5658 | |
5659 * frame.el (show-cursor-in-non-selected-windows): New option. | |
5660 | |
27845 | 5661 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
5662 | |
5663 * diary-lib.el (include-other-diary-files): Undo the selective | |
5664 display in any included file and don't kill it. | |
5665 | |
27841 | 5666 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il> |
5667 | |
5668 * dired.el (dired-mode-map): Don't remove "Edit" from the menu | |
5669 bar. Menu items converted to (menu-item format, help strings | |
5670 added. | |
5671 [downcase, upcase]: Don't enable on MS-DOS. | |
5672 [symlink, symlinks]: Don't show if make-symbolic-link is not | |
5673 bound. | |
5674 [chown, chgrp]: Don't show on MS-DOS and MS-Windows. | |
5675 | |
27825 | 5676 2000-02-23 Dave Love <fx@gnu.org> |
5677 | |
27838 | 5678 * simple.el (zap-to-char, kill-line, kill-region, kill-word) |
5679 (backward-kill-word): Revert addition of * to interactive spec -- | |
5680 it's a feature. | |
5681 | |
5682 * paragraphs.el: (kill-paragraph, backward-kill-paragraph) | |
5683 (backward-kill-sentence, kill-sentence): Likewise. | |
5684 | |
27835 | 5685 * gud.el (gud-jdb-build-class-source-alist): Prepend space to |
5686 scratch buffer name. | |
5687 (gud-format-command): Use int-to-string in ?l case. Simplify | |
5688 slightly. | |
5689 | |
5690 * term/w32-win.el (internal-face-interactive): Update prompt for | |
5691 new read-face-name. | |
5692 | |
5693 * mail/footnote.el (footnote): Add :version to defgroup. | |
5694 (footnote-section-tag-regexp): Customize. | |
5695 (footnote-start-tag, footnote-end-tag): New option. | |
5696 (footnote-latin-regexp): New variable. | |
5697 (Footnote-latin): New function. | |
5698 (footnote-style-alist): Add element for latin style. | |
5699 (footnote-style): Moved. | |
5700 (Footnote-goto-footnote): Use eq to test arg. | |
5701 | |
5702 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message. | |
5703 | |
27825 | 5704 * emacs-lisp/byte-opt.el: Change old backquote syntax. |
5705 (byte-compile-trueconstp): Include keywords. | |
5706 (byte-optimize-quote, byte-optimize-lapcode): Use | |
5707 byte-compile-const-symbol-p. | |
5708 (byte-optimize-char-before): New optimization. | |
5709 | |
5710 * emacs-lisp/bytecomp.el: Change old backquote syntax. | |
5711 (byte-compile-const-symbol-p): New function. | |
5712 (byte-compile-constp, byte-compile-out-toplevel) | |
5713 (byte-compile-form, byte-compile-form, byte-compile-variable-ref): | |
5714 Use it. | |
5715 | |
5716 * subr.el (define-key-after): Default AFTER to t. Doc fix. | |
5717 | |
27813 | 5718 2000-02-23 Kenichi Handa <handa@etl.go.jp> |
5719 | |
27815 | 5720 * international/encoded-kb.el: Be sure to update minor-mode-alist |
5721 and minor-mode-map-alist. | |
5722 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift | |
5723 codes SS2 and SS3 correctly. | |
5724 (encoded-kbd-self-insert-ccl): New function. | |
5725 (encoded-kbd-setup-keymap): New function. | |
5726 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap | |
5727 by calling encoded-kbd-setup-keymap. | |
5728 | |
27813 | 5729 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte |
5730 characters. | |
5731 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t | |
5732 locally. | |
5733 | |
27811 | 5734 2000-02-22 Dave Love <fx@gnu.org> |
5735 | |
5736 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table) | |
5737 (lisp-mode-map, lisp-interaction-mode-map): Define all inside | |
5738 defvar. | |
5739 (lisp-mode-syntax-table): Set up for #|...|# comments. | |
5740 (lisp-imenu-generic-expression): Purecopy strings. Use syntax | |
5741 classes. Match `defface'. | |
5742 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options. | |
5743 (eval-defun-1): Fix for defcustom. | |
5744 (lisp-indent-region): Doc fix. | |
5745 | |
5746 * subr.el (when, unless, split-string): Doc fix. | |
5747 (read-passwd): Move call of clear-this-command-keys to the right | |
5748 place. | |
5749 (replace-regexps-in-string): New function. | |
5750 | |
27807 | 5751 2000-02-22 Gerd Moellmann <gerd@gnu.org> |
5752 | |
5753 * help.el (describe-variable): Set syntax table to | |
5754 emacs-lisp-mode-syntax-table when moving forward over the | |
5755 symbol's name. | |
5756 | |
27805 | 5757 2000-02-22 Dave Love <fx@gnu.org> |
5758 | |
5759 * xt-mouse.el: Doc fixes. | |
5760 (xterm-mouse-position-function): New function, replacing advice of | |
5761 mouse-position. | |
5762 (xterm-mouse-mode): Use it. Don't turn on under a window system. | |
5763 | |
5764 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition. | |
5765 | |
27794 | 5766 2000-02-21 Gerd Moellmann <gerd@gnu.org> |
5767 | |
5768 * format.el (format-annotate-single-property-change): Handle | |
5769 properties.with dotted-list values. | |
5770 (format-proper-list-p): New function. | |
5771 | |
5772 * enriched.el (enriched-face-ans): Handle '(foreground-color | |
5773 . COLOR) and (background-color . COLOR). | |
5774 | |
27788 | 5775 2000-02-20 Dave Love <fx@gnu.org> |
5776 | |
5777 * textmodes/flyspell.el (flyspell-mouse-map): Change definition | |
5778 and assignments to it. | |
5779 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting | |
5780 current local map. | |
5781 (make-flyspell-overlay): Use it. | |
5782 (flyspell-correct-word/mouse-keymap): Change XEmacs test. | |
5783 | |
5784 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level. | |
5785 (lm-get-header-re): Defun, not defsubst. | |
5786 (lm-get-package-name): Defun, not defsubst. Simplify. | |
5787 (lm-version): Doc fix. Simplify. | |
5788 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary) | |
5789 (lm-crack-address, lm-last-modified-date, lm-commentary) | |
5790 (lm-verify, lm-synopsis): Simplify. | |
5791 (lm-report-bug): Require emacsbug. Use compose-mail. | |
5792 | |
27785 | 5793 2000-02-20 Gerd Moellmann <gerd@gnu.org> |
5794 | |
5795 * dired.el (dired-mode): Call propertized-buffer-identification | |
5796 to set mode-line-buffer-identification to something having | |
5797 the right text properties. | |
5798 | |
5799 * bindings.el (propertized-buffer-identification): New function. | |
5800 | |
27777 | 5801 2000-02-20 Dave Love <fx@gnu.org> |
5802 | |
5803 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and | |
5804 check for t-mouse too. | |
5805 | |
5806 * cus-start.el: Make echo-keystrokes `number'. | |
5807 | |
27776 | 5808 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il> |
5809 | |
5810 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]: | |
5811 Don't call ring-empty-p unless tags-location-ring is bound. | |
5812 From Noah Friedman <friedman@splode.com>. | |
5813 | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5814 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org> |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5815 |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5816 * progmodes/hideshow.el (hs-flag-region): No longer use |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5817 `intangible' overlay property. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5818 |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5819 (hs-toggle-hiding): New command. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5820 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5821 |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5822 (hs-minor-mode): Move call to `hs-grok-mode-type' early on. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5823 Fix omission bug: Run `hs-minor-mode-hook' for both activation |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5824 and deactivation. |
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5825 |
27757 | 5826 2000-02-18 Gerd Moellmann <gerd@gnu.org> |
5827 | |
5828 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs. | |
5829 | |
27749 | 5830 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
5831 | |
27754 | 5832 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix. |
5833 | |
27749 | 5834 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax |
5835 of `*' to handle `(* ... *)' comments. | |
5836 | |
27732 | 5837 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> |
5838 | |
27737 | 5839 * faces.el (list-faces-display): Use display-mouse-p instead of |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
5840 window-system. |
27737 | 5841 |
27732 | 5842 * menu-bar.el (global-map): Menu-bar items converted to the new |
5843 format (menu-item..., rearranged for better CUA compliance, and | |
5844 their names changed for better clarity. Help strings added. | |
5845 | |
5846 * international/mule-cmds.el (mule-menu-keymap) | |
5847 (describe-language-environment-map, set-coding-system-map) | |
5848 (setup-language-environment-map): Convert to new (menu-item... | |
5849 form, add help strings. Change names of menu items for better | |
5850 clarity. "Mule" menu-bar item removed (it's now in the "Options" | |
5851 submenu). | |
5852 | |
27729 | 5853 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
5854 | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5855 * dired-aux.el (dired-do-copy): Remove spurious character.`n' |
27729 | 5856 within the code. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5857 |
27717 | 5858 2000-02-16 Dave Love <fx@gnu.org> |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
5859 |
27717 | 5860 * faces.el: Don't require custom. Add more specific :groups to |
5861 various deffaces. | |
5862 (set-face-attribute): Purecopy args. | |
5863 (read-face-name): Default to name at point and use it in prompt. | |
5864 Remove colon from arg in all callers. | |
5865 (list-faces-display): Hyperlink to face descriptions and customize | |
5866 buffers. | |
5867 | |
27712 | 5868 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk> |
5869 | |
5870 * wid-edit.el (widget-match-inline): An atom never matches a | |
5871 list. | |
5872 | |
27707 | 5873 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> |
5874 | |
27713 | 5875 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path |
5876 at ':' characters by call to split-string. | |
27707 | 5877 |
5878 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
5879 | |
27713 | 5880 * textmodes/bibtex.el: Added RCS version identification. |
27707 | 5881 |
5882 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
5883 | |
27713 | 5884 * textmodes/bibtex.el: Some temporary comments removed. |
5885 (bibtex-field-name, bibtex-entry-type): Made the relationship | |
5886 explicit. | |
5887 (bibtex-field-const): Allow capital letters. | |
5888 (bibtex-start-of-string): Deleted because unused. | |
5889 | |
5890 * textmodes/bibtex.el: Unified some nomenclature. We no longer | |
5891 use the term 'reference' to describe a bibtex entry as a whole. | |
5892 Further, reference keys are no longer called 'labels'. | |
5893 (bibtex-keys): Renamed to bibtex-reference-keys. | |
5894 (bibtex-reformat-previous-labels): Renamed to | |
5895 bibtex-reformat-previous-reference-keys. | |
5896 (bibtex-reference-type): Renamed to bibtex-entry-type. | |
5897 (bibtex-reference-head): Renamed to bibtex-entry-head. | |
5898 (bibtex-reference-maybe-empty-head): Renamed to | |
5899 bibtex-entry-maybe-empty-head. | |
5900 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry. | |
5901 (bibtex-search-reference): Renamed to bibtex-search-entry. | |
5902 (bibtex-enclosing-reference-maybe-empty-head): Renamed to | |
5903 bibtex-enclosing-entry-maybe-empty-head. | |
5904 (bibtex-entry-field-alist, bibtex-entry-head, | |
5905 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry, | |
5906 bibtex-map-entries, bibtex-search-entry, | |
5907 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry, | |
5908 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode, | |
5909 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message, | |
5910 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer, | |
5911 bibtex-find-entry-location, bibtex-validate, bibtex-find-text, | |
5912 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat, | |
5913 bibtex-complete-key, bibtex-String) : Use the new nomenclature. | |
27707 | 5914 |
5915 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
5916 | |
27713 | 5917 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant |
5918 comment. | |
5919 (bibtex-format-field-delimiters): New function, functionality | |
5920 extracted from bibtex-format-entry. | |
5921 (bibtex-autokey-get-yearfield-digits): New function, functionality | |
5922 extracted from bibtex-autokey-get-yearfield. | |
5923 | |
5924 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex | |
5925 entries in order to avoid stack overflow in the regexp matcher if | |
5926 field contents become large. | |
5927 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield, | |
5928 bibtex-field-string-part-not-braced, | |
5929 bibtex-field-string-part-no-inner-braces, | |
5930 bibtex-field-string-part-1-inner-brace, | |
5931 bibtex-field-string-part-2-inner-braces, | |
5932 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced, | |
5933 bibtex-field-string-quoted, bibtex-field-string, | |
5934 bibtex-field-string-or-const, bibtex-field-text, bibtex-field, | |
5935 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix, | |
5936 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted | |
5937 as parsing is now performed by the following functions. | |
5938 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced, | |
5939 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted, | |
5940 bibtex-parse-field-string, bibtex-search-forward-field-string, | |
5941 bibtex-parse-association, bibtex-field-name-for-parsing, | |
5942 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field, | |
5943 bibtex-search-forward-field, bibtex-search-backward-field, | |
5944 bibtex-start-of-field, bibtex-end-of-field, | |
5945 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field, | |
5946 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field, | |
5947 bibtex-parse-string-prefix, bibtex-parse-string-postfix, | |
5948 bibtex-parse-string, bibtex-search-forward-string, | |
5949 bibtex-search-backward-string, bibtex-start-of-string, | |
5950 bibtex-end-of-string, bibtex-start-of-reference-key-in-string, | |
5951 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string, | |
5952 bibtex-end-of-text-in-string): New functions for the parsing of bibtex | |
5953 entries. Instead of reporting the results of the parsing by | |
5954 match-beginning or match-end, these functions return data structures | |
5955 that hold the corresponding positions. | |
5956 (bibtex-enclosing-field): Changed to also report field boundaries by | |
5957 return values rather than by match-beginning or match-end. The | |
5958 following functions have been adapted to use the new parsing | |
5959 functions. | |
5960 (bibtex-skip-to-valid-entry, bibtex-search-reference, | |
5961 bibtex-enclosing-field, bibtex-format-entry, | |
5962 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring, | |
5963 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode, | |
5964 bibtex-print-help-message, bibtex-end-of-entry, | |
5965 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field, | |
5966 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, | |
5967 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new | |
5968 method for parsing. | |
5969 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry, | |
5970 bibtex-map-entries, bibtex-flash-head, | |
5971 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry, | |
5972 bibtex-autokey-change, bibtex-autokey-get-namefield, | |
5973 bibtex-autokey-get-names, bibtex-autokey-get-titlestring, | |
5974 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode, | |
5975 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer, | |
5976 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, | |
5977 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in | |
5978 order to make the new binding of case-fold-search immediately | |
5979 visible. | |
27707 | 5980 |
5981 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
5982 | |
27713 | 5983 * textmodes/bibtex.el: Copyright notice is up to date. |
5984 Added constant 'bibtex-maintainer-salutation. | |
5985 | |
5986 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather | |
5987 than make-temp-name, use match-string-no-properties and eliminate | |
5988 a quadratic behavior when building bibtex-strings. | |
5989 | |
5990 * bibtex.el (bibtex-reference-key): Accept string entries whose | |
5991 reference key contains upper case letters. | |
27707 | 5992 |
5993 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
5994 | |
27713 | 5995 * bibtex.el (bibtex-reference-head): Allow entries to start with |
5996 a new line. | |
27707 | 5997 |
5998 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
5999 | |
27713 | 6000 * bibtex.el: Hiding of entry bodies is not longer provided by |
6001 bibtex.el directly. Instead the hideshow package can be used. | |
6002 Added a special bibtex entry to hs-special-modes-alist. | |
6003 (bibtex-hs-forward-sexp): Added for hideshow.el. | |
27729 | 6004 |
6005 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6006 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6007 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6008 at ':' characters by call to split-string. |
27729 | 6009 |
6010 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6011 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6012 * textmodes/bibtex.el: Added RCS version identification. |
27729 | 6013 |
6014 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6015 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6016 * textmodes/bibtex.el: Some temporary comments removed. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6017 (bibtex-field-name, bibtex-entry-type): Made the relationship |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6018 explicit. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6019 (bibtex-field-const): Allow capital letters. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6020 (bibtex-start-of-string): Deleted because unused. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6021 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6022 * textmodes/bibtex.el: Unified some nomenclature. We no longer |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6023 use the term 'reference' to describe a bibtex entry as a whole. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6024 Further, reference keys are no longer called 'labels'. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6025 (bibtex-keys): Renamed to bibtex-reference-keys. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6026 (bibtex-reformat-previous-labels): Renamed to |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6027 bibtex-reformat-previous-reference-keys. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6028 (bibtex-reference-type): Renamed to bibtex-entry-type. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6029 (bibtex-reference-head): Renamed to bibtex-entry-head. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6030 (bibtex-reference-maybe-empty-head): Renamed to |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6031 bibtex-entry-maybe-empty-head. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6032 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6033 (bibtex-search-reference): Renamed to bibtex-search-entry. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6034 (bibtex-enclosing-reference-maybe-empty-head): Renamed to |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6035 bibtex-enclosing-entry-maybe-empty-head. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6036 (bibtex-entry-field-alist, bibtex-entry-head, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6037 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6038 bibtex-map-entries, bibtex-search-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6039 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6040 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6041 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6042 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6043 bibtex-find-entry-location, bibtex-validate, bibtex-find-text, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6044 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6045 bibtex-complete-key, bibtex-String) : Use the new nomenclature. |
27707 | 6046 |
6047 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6048 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6049 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6050 comment. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6051 (bibtex-format-field-delimiters): New function, functionality |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6052 extracted from bibtex-format-entry. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6053 (bibtex-autokey-get-yearfield-digits): New function, functionality |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6054 extracted from bibtex-autokey-get-yearfield. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6055 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6056 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6057 entries in order to avoid stack overflow in the regexp matcher if |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6058 field contents become large. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6059 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6060 bibtex-field-string-part-not-braced, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6061 bibtex-field-string-part-no-inner-braces, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6062 bibtex-field-string-part-1-inner-brace, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6063 bibtex-field-string-part-2-inner-braces, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6064 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6065 bibtex-field-string-quoted, bibtex-field-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6066 bibtex-field-string-or-const, bibtex-field-text, bibtex-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6067 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6068 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6069 as parsing is now performed by the following functions. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6070 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6071 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6072 bibtex-parse-field-string, bibtex-search-forward-field-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6073 bibtex-parse-association, bibtex-field-name-for-parsing, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6074 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6075 bibtex-search-forward-field, bibtex-search-backward-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6076 bibtex-start-of-field, bibtex-end-of-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6077 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6078 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6079 bibtex-parse-string-prefix, bibtex-parse-string-postfix, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6080 bibtex-parse-string, bibtex-search-forward-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6081 bibtex-search-backward-string, bibtex-start-of-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6082 bibtex-end-of-string, bibtex-start-of-reference-key-in-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6083 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6084 bibtex-end-of-text-in-string): New functions for the parsing of bibtex |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6085 entries. Instead of reporting the results of the parsing by |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6086 match-beginning or match-end, these functions return data structures |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6087 that hold the corresponding positions. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6088 (bibtex-enclosing-field): Changed to also report field boundaries by |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6089 return values rather than by match-beginning or match-end. The |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6090 following functions have been adapted to use the new parsing |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6091 functions. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6092 (bibtex-skip-to-valid-entry, bibtex-search-reference, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6093 bibtex-enclosing-field, bibtex-format-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6094 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6095 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6096 bibtex-print-help-message, bibtex-end-of-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6097 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6098 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6099 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6100 method for parsing. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6101 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6102 bibtex-map-entries, bibtex-flash-head, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6103 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6104 bibtex-autokey-change, bibtex-autokey-get-namefield, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6105 bibtex-autokey-get-names, bibtex-autokey-get-titlestring, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6106 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6107 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6108 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters, |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6109 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6110 order to make the new binding of case-fold-search immediately |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6111 visible. |
27729 | 6112 |
6113 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6114 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6115 * textmodes/bibtex.el: Copyright notice is up to date. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6116 Added constant 'bibtex-maintainer-salutation. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6117 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6118 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6119 than make-temp-name, use match-string-no-properties and eliminate |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6120 a quadratic behavior when building bibtex-strings. |
28696
0c9cb5ad25fc
(time-stamp-string-preprocess): Always convert
Sam Steingold <sds@gnu.org>
parents:
28695
diff
changeset
|
6121 |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6122 * bibtex.el (bibtex-reference-key): Accept string entries whose |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6123 reference key contains upper case letters. |
27729 | 6124 |
6125 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6126 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6127 * bibtex.el (bibtex-reference-head): Allow entries to start with |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6128 a new line. |
27729 | 6129 |
6130 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6131 | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6132 * bibtex.el: Hiding of entry bodies is not longer provided by |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6133 bibtex.el directly. Instead the hideshow package can be used. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6134 Added a special bibtex entry to hs-special-modes-alist. |
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6135 (bibtex-hs-forward-sexp): Added for hideshow.el. |
27729 | 6136 |
6137 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6138 | |
27713 | 6139 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to |
27707 | 6140 proceedings entry type (for cross referencing). Thanks to Wagner |
6141 Toledo Correa for the suggestion. | |
6142 | |
27713 | 6143 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu. |
27707 | 6144 |
27690 | 6145 2000-02-14 Kenichi Handa <handa@etl.go.jp> |
6146 | |
6147 * international/characters.el: Setup case table for Vietnamese. | |
6148 | |
27687 | 6149 2000-02-12 Gerd Moellmann <gerd@gnu.org> |
6150 | |
6151 * uniquify.el (toplevel): Require CL at compile time. | |
6152 (uniquify-push): Removed. | |
6153 | |
6154 * shadowfile.el (shadow-when): Removed. | |
6155 | |
6156 * tempo.el (tempo-dolist, tempo-mapc): Removed. | |
6157 (tempo-process-and-insert-string): Use dolist instead of | |
6158 tempo-dolist. | |
6159 | |
6160 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from | |
6161 regexp for paragraph-start. | |
6162 | |
6163 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading | |
6164 commas as well. | |
6165 | |
27657 | 6166 2000-02-10 Dave Love <fx@gnu.org> |
6167 | |
6168 * wid-edit.el: (widgets) [defgroup]: Remove url link. | |
6169 (widget-color-choice-list, widget-color-history, widget-mouse-help): | |
6170 Deleted. | |
6171 (widget-specify-field, widget-specify-button): Don't use | |
6172 widget-mouse-help as help-echo property. | |
6173 (default): Use #'ignore for :validate and :mouse-down-action. | |
6174 (checkbox): Add help-echo. | |
6175 (widget-sexp-validate): Rewritten to clarify error messages. | |
6176 (character): Use char-valid-p in :match function. | |
6177 (widget-color-complete): Use facemenu-color-alist. | |
6178 (widget-color-action): Use facemenu-read-color. | |
6179 | |
6180 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't | |
6181 set up `caar' &c that we now have. | |
6182 | |
27713 | 6183 2000-02-09 Ray Blaak <blaak@gnu.org> |
6184 | |
6185 * delphi.el: Make resourcestring a declaration region, like const | |
6186 and var. | |
6187 | |
27652 | 6188 2000-02-09 Dave Love <fx@gnu.org> |
6189 | |
6190 * bindings.el (mode-line-input-method-map): New variable. | |
6191 (mode-line-mule-info): Use it; fix last change. | |
6192 (mode-line-mode-menu): Move definition. | |
6193 (mode-line-mouse-sensitive-p): Deleted. | |
6194 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p. | |
6195 (make-mode-line-mouse-sensitive): Deleted. Body moved to top | |
6196 level. | |
6197 | |
6198 * startup.el (command-line-1): Don't call | |
6199 make-mode-line-mouse-sensitive. | |
6200 | |
27644 | 6201 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> |
6202 | |
6203 * mail/rmail.el (rmail-retry-failure): Use | |
6204 rmail-beginning-of-message before rmail-toggle-header, because the | |
6205 former toggles headers. | |
6206 | |
27636
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6207 2000-02-06 Stefan Monnier <monnier@cs.yale.edu> |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6208 |
27637
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6209 * diff-mode.el (diff-kill-junk): New interactive function. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6210 (diff-reverse-direction): Use delete-and-extract-region. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6211 (diff-post-command-hook): Restrict the area so that the hook also works |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6212 outside of any diff hunk. This is necessary for the minor-mode. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6213 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6214 (diff-minor-mode): Setup the hooks for header-hunk rewriting. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
6215 |
27636
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6216 * font-lock.el (font-lock-keywords): Fix doc for multiline matches. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6217 (font-lock-add-keywords): Make it work even if font-lock-mode is nil, |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6218 so that it can be used more easily in <foo>-mode-hook. Also make sure |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6219 to avoid duplicate entries. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6220 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6221 (font-lock-remove-keywords): Just as was done for `add', allow it to |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6222 work even if font-lock-mode is nil. Also make sure we don't modify |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6223 any pre-existing list by forcing a copy-sequence. Finally rename |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6224 `major-mode' to `mode'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6225 (font-lock-fontify-syntactic-anchored-keywords) |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6226 (font-lock-fontify-anchored-keywords) |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6227 (font-lock-fontify-keywords-region): Use line-end-position. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6228 Don't make `font-lock-multiline' local (it's now done in |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6229 font-lock-set-defaults). |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6230 (font-lock-set-defaults): Make `font-lock-multiline' local. Also |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6231 move the `font-lock-fontified' creation to inside the `unless'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
6232 |
27634
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6233 2000-02-06 Andrew Innes <andrewi@gnu.org> |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6234 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6235 * term/w32-win.el (x-handle-args): Comment out call to message, |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6236 which occurs before window system is initialized. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6237 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6238 * makefile.nt: Add support for recompiling lisp code. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
6239 |
27610 | 6240 2000-02-04 Dave Love <fx@gnu.org> |
6241 | |
27617 | 6242 * bindings.el (mode-line-mule-info): Fix/extend last change. |
6243 | |
27610 | 6244 * completion.el: Replace completion-dolist with dolist. |
6245 | |
6246 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, | |
6247 dotimes. | |
6248 | |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6249 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl> |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6250 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6251 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6252 environment names before they go into the section regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6253 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6254 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6255 char class in regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6256 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6257 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6258 `case-fold-search' to nil. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6259 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6260 * progmodes/idlwave.el (idlwave-template): Respect |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6261 `idlwave-abbrev-change-case'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6262 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6263 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6264 idlwave-while): respect `idlwave-reserved-word-upcase'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6265 (idlwave-rw-case): New function. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6266 (idlwave-statement-match): Fixed problem with assignment regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6267 (idlwave-font-lock-keywords): Improved regexp for keyword |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6268 parameters. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6269 (idlwave-surround): New argument LENGTH to support padding of |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6270 operators longer than 1 char. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6271 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6272 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6273 idlwave-shell-expression-overlay. Implemented printing of |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6274 expressions on higher levels of the calling stack. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6275 (idlwave-shell-display-level-in-calling-stack): Restore stack |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6276 level. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6277 (idlwave-retrieve-expression-from-level): New function. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6278 (idlwave-shell-last-calling-stack): Variable removed. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6279 (idlwave-shell-reset): Argument action reversed (`visible' to |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6280 `hidden'). Also remove stop-line overlay. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6281 (idlwave-shell-calling-stack-routine): New variable. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6282 (idlwave-shell-parse-stack-and-display): Messages now display |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6283 negative level numbers. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6284 (idlwave-shell-mode): Set `modeline-format'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6285 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6286 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6287 21. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6288 (idlwave-shell-print-expression-function): New option. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6289 |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6290 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6291 idlwave-toolbar-remove-everywhere): Keybindings prefix is now |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6292 `tool-bar' instead of `toolbar'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
6293 |
27590 | 6294 2000-02-02 Dave Love <fx@gnu.org> |
6295 | |
6296 * emacs-lisp/cl.el: Use bytecomp-load-hook, not | |
6297 emacs-lisp-mode-hook. Don't check for defalias being defined. | |
6298 | |
6299 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash) | |
6300 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use | |
6301 the new builtins directly. | |
6302 | |
6303 * whitespace.el (whitespace): Add :version to defgroup. | |
6304 | |
6305 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference): | |
6306 Doc fix. | |
6307 | |
6308 * thingatpt.el (sexp-at-point, symbol-at-point) | |
6309 (number-at-point, list-at-point): Add autoload cookie. | |
6310 | |
6311 * recentf.el (recentf): Add :version to defgroup. | |
6312 | |
6313 * quickurl.el (quickurl): Add :version to defgroup. | |
6314 | |
6315 * elide-head.el (elide-head): Use point-marker more. | |
6316 | |
6317 * bs.el (bs): Add :version to defgroup. | |
6318 | |
6319 * autorevert.el (global-auto-revert-mode): Add autoload cookie. | |
6320 | |
6321 * progmodes/delphi.el (delphi): Add :version to defgroup. | |
6322 | |
27587 | 6323 2000-02-02 Gerd Moellmann <gerd@gnu.org> |
6324 | |
6325 * ange-ftp.el (ange-ftp-write-region): Handle case that | |
6326 succeeding process operation sets a different coding system. | |
6327 | |
6328 * calculator.el: New file. | |
6329 | |
27572 | 6330 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il> |
6331 | |
6332 * frame.el (frames-on-display-list, framep-on-display): New | |
6333 functions. | |
6334 (display-mouse-p, display-popup-menus-p, display-graphic-p) | |
6335 (display-selections-p, display-screens, display-pixel-width) | |
6336 (display-pixel-height, display-mm-width, display-mm-height) | |
6337 (display-backing-store, display-save-under, display-planes) | |
6338 (display-color-cells, display-visual-class): New functions. | |
6339 | |
6340 * term/tty-colors.el (tty-color-gray-shades): New function. | |
6341 | |
6342 * faces.el (display-color-p): Use framep-on-display. | |
6343 (display-grayscale-p): New function. | |
6344 | |
27549 | 6345 2000-01-31 Dave Love <fx@gnu.org> |
6346 | |
6347 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it. | |
6348 (create-fontset-from-x-resource): Don't concat integers. | |
6349 | |
27545 | 6350 2000-01-31 Inge Frick <inge@nada.kth.se> |
6351 | |
6352 * view.el: Some changes in documentation. Removed some trailing | |
6353 whitespace. Changed some parameter names to agree with | |
6354 documentation. | |
6355 (view-mode-exit): Keep entry in `view-return-to-alist' only when a | |
6356 window is not deleted. Modifies change 1998-04-26. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6357 |
27541 | 6358 2000-01-31 Gerd Moellmann <gerd@gnu.org> |
6359 | |
27543 | 6360 * windmove.el: New file. |
6361 | |
27541 | 6362 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el, |
6363 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el, | |
27545 | 6364 progmodes/ebnf-yac.el: Update copyright and license info. |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6365 |
27541 | 6366 * jit-lock.el (jit-lock-function): Widen before calculating end |
6367 position. | |
6368 (jit-lock-stealth-chunk-start): Rewritten. | |
6369 | |
6370 * info.el (Info-title-face-alist): Removed. | |
6371 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New | |
6372 faces. | |
6373 (Info-fontify-node): Use these faces. | |
6374 | |
27527 | 6375 2000-01-30 Gerd Moellmann <gerd@gnu.org> |
6376 | |
6377 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list) | |
6378 (cl-macro-list1): Recognize `&allow-other-keys' instead of | |
6379 `&allow-other-keywords'. | |
6380 | |
6381 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to | |
6382 the list of directories scanned heuristically. | |
6383 | |
6384 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to | |
6385 exist. | |
6386 | |
27523 | 6387 2000-01-30 Jason Rumney <jasonr@gnu.org> |
6388 | |
6389 * w32-fns.el: Define w32-tty-standard-colors. | |
6390 | |
6391 * startup.el (command-line): Use w32-tty-standard-colors when in | |
6392 w32 console mode. | |
6393 | |
27510 | 6394 2000-01-30 Dave Love <fx@gnu.org> |
6395 | |
27513 | 6396 * jka-compr.el (jka-compr-load): Fix up load-history. |
6397 | |
27510 | 6398 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes. |
6399 | |
6400 * emacs-lisp/cl-macs.el: Revert previous change. | |
6401 | |
27499 | 6402 2000-01-29 Dave Love <fx@gnu.org> |
6403 | |
6404 * facemenu.el: Purecopy various strings. | |
6405 | |
6406 * timezone.el (timezone-fix-time): Window against 69 for two-digit | |
6407 years. Deal with three-digit years. | |
6408 | |
6409 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use | |
6410 defconst, purecopy. | |
6411 (help-back-label): Purecopy it. | |
6412 | |
27498 | 6413 2000-01-18 Gerd Moellmann <gerd@gnu.org> |
6414 | |
6415 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration | |
6416 variable. If non-nil, order the buffer list according to the | |
6417 currently selected frame. | |
6418 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is | |
6419 non-nil, pass the selected frame to function buffer-list. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6420 |
27496 | 6421 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6422 | |
6423 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix | |
6424 | |
27486 | 6425 2000-01-28 Dave Love <fx@gnu.org> |
6426 | |
27491 | 6427 * emacs-lisp/cl-macs.el: Remove dotimes, dolist. |
6428 | |
27486 | 6429 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop. |
6430 Don't use lisp-indent-hook property. | |
6431 (cl-abs): Remove. | |
6432 | |
6433 * subr.el: Move out indent and edebug specs for when and unless. | |
6434 | |
6435 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes, | |
6436 when, unless. | |
6437 | |
6438 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist, | |
6439 unless, when. | |
6440 | |
27467 | 6441 2000-01-28 Gerd Moellmann <gerd@gnu.org> |
6442 | |
27481 | 6443 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize |
6444 `collecting' as synonym for `collect'. | |
6445 | |
6446 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name | |
6447 for the case it contains spaces. | |
6448 | |
6449 * simple.el (what-cursor-position): Change formatting of | |
6450 messages. | |
6451 | |
27473 | 6452 * frame.el (delete-other-frames): New function. |
6453 (toplevel): Bind it to C-x 5 1. | |
6454 | |
27469 | 6455 * sort.el (sort-numeric-base): New option. |
6456 (sort-numeric-fields): If number starts with `0' or `0[xX[', | |
6457 interpret it as octal or hexadecimal. Use sort-numeric-base | |
6458 as default base. | |
6459 | |
27467 | 6460 * progmodes/glasses.el: New file. |
6461 | |
27451 | 6462 2000-01-27 Gerd Moellmann <gerd@gnu.org> |
6463 | |
27461 | 6464 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched |
6465 userids differently. | |
6466 | |
27451 | 6467 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el, |
6468 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el, | |
6469 progmodes/ebnf-yac.el: New files. | |
6470 | |
27446 | 6471 2000-01-26 Dave Love <fx@gnu.org> |
6472 | |
6473 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose | |
6474 on a function with an empty body. [From Eric Ludlam.] | |
6475 | |
27437 | 6476 2000-01-25 Andre Spiegel <spiegel@gnu.org> |
6477 | |
6478 * vc.el (vc-version-diff): Make sure file name is expanded. | |
6479 | |
27433 | 6480 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
6481 | |
6482 * scroll-bar.el (scroll-bar-timer): Variable removed. | |
6483 (scroll-bar-toolkit-scroll): Don't use a timer. | |
6484 | |
27419 | 6485 2000-01-25 Kenichi Handa <handa@etl.go.jp> |
6486 | |
6487 * language/thai-util.el (thai-composition-function): Delete | |
6488 superfluous `a'. | |
6489 | |
27418 | 6490 2000-01-24 Dave Love <fx@gnu.org> |
6491 | |
6492 * fortran.el (fortran-mode): Use beginning-of-defun-function, | |
6493 end-of-defun-function. | |
6494 | |
6495 * font-lock.el (turn-on-font-lock): Don't depend on window-system | |
6496 &c. | |
6497 | |
27405 | 6498 2000-01-22 Jason Rumney <jasonr@gnu.org> |
6499 | |
6500 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it | |
6501 conflicts with new face support. | |
6502 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6503 2000-01-22 Richard M. Stallman <rms@gnu.org> |
27392
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
6504 |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
6505 * replace.el (query-replace): Rename last arg to DELIMITED. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
6506 (map-query-replace-regexp, query-replace-regexp-eval): Likewise. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
6507 (query-replace-regexp): Likewise. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
6508 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6509 2000-01-20 Richard M. Stallman <rms@gnu.org> |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
6510 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
6511 * subr.el (with-syntax-table): Use make-symbol, not gensym. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
6512 |
27381
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6513 * emacs-lisp/lisp.el (beginning-of-defun-function): |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6514 Variable renamed from beginning-of-defun. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6515 Do not call make-variable-buffer-local. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6516 (beginning-of-defun-raw): Use new variable name; doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6517 (beginning-of-defun): Doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6518 (end-of-defun-function): Variable renamed from end-of-defun. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6519 Do not call make-variable-buffer-local. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6520 (end-of-defun): Use new variable name; doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
6521 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
6522 * subr.el (dolist, dotimes): Copied from cl-macs.el |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
6523 and made to work. |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
6524 |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6525 * mail/undigest.el (rmail-digest-end-regexps): |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
6526 Variable replaces rmail-digest-end-regexp. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
6527 Allows multiple regexps for detecting the end line. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
6528 (undigestify-rmail-message): Corresponding changes. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
6529 |
27366 | 6530 2000-01-19 Dave Love <fx@gnu.org> |
6531 | |
27368 | 6532 * files.el (user-init-file): Don't declare here -- is primitive. |
6533 | |
27366 | 6534 * startup.el (command-line): Check for compiled user-init-file and |
6535 set to uncompiled version if necessary. | |
6536 | |
27358 | 6537 2000-01-18 Gerd Moellmann <gerd@gnu.org> |
6538 | |
27361 | 6539 * mail/undigest.el (rmail-digest-end-regexp): New user option. |
6540 (undigestify-rmail-message): Use it. | |
6541 | |
27358 | 6542 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT. |
6543 | |
27351 | 6544 2000-01-17 Gerd Moellmann <gerd@gnu.org> |
6545 | |
6546 * tmm.el (tmm-goto-completions): Adapt to prompt being part | |
6547 of mini-buffer. | |
6548 | |
27326 | 6549 2000-01-14 Gerd Moellmann <gerd@gnu.org> |
6550 | |
27330 | 6551 * emacs-lisp/copyright.el (copyright-update): Removed the |
6552 requirement for a trailing space from `copyright-regexp', to | |
6553 support copyrights with owner specified on a separate line.. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6554 |
27327 | 6555 * align.el: New file. |
6556 | |
27326 | 6557 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu. |
6558 | |
6559 * net/eudc.el (toplevel): Define EUDC menu for Emacs. | |
6560 | |
27323 | 6561 2000-01-13 Dave Love <fx@gnu.org> |
6562 | |
6563 * ph.el: Removed. (Obsoleted by EUDC.) | |
6564 | |
27321 | 6565 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
6566 | |
6567 * net/eudc.el (toplevel): Remove autoloaded code installing | |
6568 menu with easymenu, because that causes build problems. | |
6569 | |
6570 * frame.el (frame-notice-user-settings): New variable. | |
6571 (frame-notice-user-settings): Don't modify frame parameters | |
6572 if called a second time. | |
6573 | |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6574 2000-01-13 Richard M. Stallman <rms@gnu.org> |
27321 | 6575 |
6576 * frame.el (frame-notice-user-settings): | |
6577 Notice default-frame-parameters even for non-window frames. | |
6578 | |
27318 | 6579 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
6580 | |
6581 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds | |
6582 for Emacs. | |
6583 (eudc-bob-can-display-inline-images): Extend for Emacs. | |
6584 (eudc-bob-toggle-inline-display): Ditto. | |
6585 (eudc-bob-display-jpeg): Ditto. | |
6586 | |
27304 | 6587 2000-01-12 Gerd Moellmann <gerd@gnu.org> |
6588 | |
27313 | 6589 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el, |
6590 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el, | |
6591 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6592 |
27312 | 6593 * add-log.el (add-change-log-entry): Fix error trying an `(insert |
6594 nil)'. | |
6595 | |
6596 * subdirs.el: Add `net' directory. | |
6597 | |
27308 | 6598 * net: New directory. |
6599 | |
27304 | 6600 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from |
6601 eval-last-sexp. Don't bind debug-on-error here. | |
6602 (eval-last-sexp): New function. Bind debug-on-error if | |
6603 eval-expression-debug-on-error is non-nil. | |
6604 (eval-defun-2, eval-defun): Likewise. | |
6605 | |
6606 * simple.el (eval-expression): Don't bind debug-on-error if | |
6607 eval-expression-debug-on-error is nil. Detect changed | |
6608 debug-on-error, and propagate new value to global binding, if | |
6609 eval-expression-debug-on-error is non-nil, | |
6610 (eval-expression-debug-on-error): Change doc string. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6611 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6612 2000-01-11 Richard M. Stallman <rms@gnu.org> |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6613 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6614 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6615 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6616 * emacs-lisp/lisp-mode.el (with-syntax-table): |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6617 Set up lisp-indent-function property. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6618 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6619 * subr.el (with-syntax-table): Moved from simple.el. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6620 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6621 * simple.el (with-syntax-table): Moved to subr.el. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
6622 |
27288 | 6623 2000-01-11 Gerd Moellmann <gerd@gnu.org> |
6624 | |
27291 | 6625 * tmm.el (tmm-shortcut): Delete region after prompt instead |
6626 of erasing buffer. | |
6627 | |
27288 | 6628 * textmodes/fill.el (fill-common-string-prefix): New function. |
27309 | 6629 (fill-context-prefix): Use the longest common prefix of first |
6630 and second line fill prefix, if there is one. | |
27288 | 6631 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6632 2000-01-11 Richard M. Stallman <rms@gnu.org> |
27285
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
6633 |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
6634 * array.el (array-mode): Don't use make-variable-buffer-local. |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
6635 Use make-local-variable for `truncate-lines'. |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
6636 |
27282 | 6637 2000-01-11 Jari Aalto <jari.aalto@poboxes.com> |
6638 | |
6639 * add-log.el (add-log-current-defun): Handle user-defined | |
6640 add-log-current-function returning nil, | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6641 |
27280 | 6642 * add-log.el (add-change-log-entry): Insert version number |
27282 | 6643 if having found a current function |
27278 | 6644 |
6645 * add-log.el (add-log-current-defun): Call | |
6646 `add-log-current-defun-function'. Try matches at level 0 and | |
6647 level 1. Strip whitespace from defun found. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6648 |
27270
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
6649 2000-01-10 John Wiegley <johnw@gnu.org> |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
6650 |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
6651 * allout.el (isearch-done/outline-provisions): Added `edit' |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
6652 argument to correspond with the current definition of |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
6653 `isearch-done'. |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
6654 |
27265 | 6655 2000-01-10 Dave Love <fx@gnu.org> |
6656 | |
6657 * elide-head.el (elide-head): Use point-marker, not point. | |
6658 | |
27261 | 6659 2000-01-10 Gerd Moellmann <gerd@gnu.org> |
6660 | |
27263 | 6661 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates |
6662 before and after the year 2000. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6663 |
27261 | 6664 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p): |
6665 Add ispell- prefix. | |
6666 | |
6667 2000-01-10 Ken Stevens <k.stevens@ieee.org> | |
6668 | |
6669 * ispell.el: Only define dictionaries in menus when they exist. | |
6670 (version18p): New variable. | |
6671 (version20p): New variable. | |
6672 (xemacsp): New variable. | |
6673 (ispell-choices-win-default-height): Fix for XEmacs visibility. | |
6674 (ispell-dictionary-alist1): Added Brasileiro dictionary. | |
6675 (ispell-dictionary-alist6): Russian command lines no longer accept | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6676 run-together words. |
27261 | 6677 (ispell-local-dictionary-alist): Add koi8-r to customize definition. |
6678 (ispell-dictionary-alist): Add koi8-r to customize definition. | |
6679 (check-ispell-version): Added documentation string. Returns | |
28090
5627c03551f1
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28089
diff
changeset
|
6680 library path when called non-interactively. |
27261 | 6681 (ispell-menu-map-needed): Uses new variables. |
6682 (ispell-library-path): New variable. | |
6683 (ispell-decode-string): XEmacs fix for bogus variable bindings. | |
6684 (ispell-word): Improved documentation string. Test for valid | |
6685 character mappings. Correctly check typed in word changes that can | |
6686 result in single words split into multiple words. Returns | |
6687 replacement word. | |
6688 (ispell-command-loop): Fixes XEmacs display bugs. Show word to | |
6689 replace in recursive query replace mode. Help message for | |
6690 recursive edit mode. | |
6691 (ispell-show-choices): Protect against bad framepop bindings. | |
6692 (ispell-help): Fix to work with XEmacs. | |
6693 (ispell-highlight-spelling-error): Use new variables. | |
6694 (ispell-overlay-window): Fix to work with XEmacs. | |
6695 (ispell-parse-output): Passed and returns location information | |
6696 tracking spelling corrections. Doesn't recheck same word on | |
6697 current line. | |
6698 (ispell-init-process): Protect against bogus XEmacs variable binding. | |
6699 Fix call to single argument in sleep-for. Use new variables. | |
6700 (ispell-region): Passed and returns location information tracking | |
6701 spelling corrections. Doesn't check same word on current line. | |
6702 Improved documentation string. Doesn't resend a line already | |
6703 checked to the ispell process - fixes bug in LaTeX parsing. | |
6704 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML. | |
6705 (ispell-skip-region): No longer skips <TT> in SGML. | |
6706 (ispell-process-line): Tracks location information with spelling | |
6707 corrections. Added documentation string. Accounts for words | |
6708 already accepted on this line. Don't allow query-replace on line | |
6709 starting with math characters. Doesn't resend a line already sent | |
6710 to ispell process. Fixes alignment error bug. | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6711 |
30335
aa44e3d4f081
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
30334
diff
changeset
|
6712 2000-01-10 Richard M. Stallman <rms@gnu.org> |
27256
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
6713 |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6714 * dired-x.el (dired-guess-shell-alist-default): |
27259
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
6715 Suggest xloadimage, which is free, not xv, which isn't. |
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
6716 |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6717 * ange-ftp.el (ange-ftp-file-name-nondirectory): |
27256
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
6718 Don't ever include the host name or user name in the value. |
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
6719 |
27255 | 6720 2000-01-09 Gerd Moellmann <gerd@gnu.org> |
6721 | |
6722 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead | |
6723 of a real newline. | |
6724 | |
27253 | 6725 2000-01-09 Stephen Eglen <stephen@gnu.org> |
6726 | |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6727 * dired-x.el (dired-guess-shell-alist-default): Suggest xv |
27253 | 6728 for .png files. |
6729 | |
27251 | 6730 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk> |
6731 | |
6732 * cus-edit.el (custom-hook-convert-widget): Fix comment. | |
6733 | |
27247 | 6734 2000-01-09 Gerd Moellmann <gerd@gnu.org> |
6735 | |
27249 | 6736 * progmodes/cperl-mode.el: Replace ^F with ^L. |
6737 | |
27247 | 6738 * sendmail.el (toplevel): Provide `sendmail' when compiling |
27772
11a8d125f241
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27757
diff
changeset
|
6739 before `require'ing rmail and mailalias to prevent infinite |
27247 | 6740 recursion. |
6741 | |
27244 | 6742 2000-01-08 Dave Love <fx@gnu.org> |
6743 | |
27265 | 6744 * emacs-lisp/backquote.el: Remove inappropriate customization |
6745 (allowing custom.el to use backquote). | |
27244 | 6746 |
27241 | 6747 2000-01-07 Dave Love <fx@gnu.org> |
6748 | |
6749 * add-log.el (add-log-debugging): Deleted. | |
6750 (add-change-log-entry): Treat a backup FILE-NAME as its parent | |
6751 file. Remove debugging code. | |
6752 (change-log-get-method-definition, change-log-name): Add doc. | |
6753 (change-log-sortable-date-at): New function. | |
6754 (change-log-merge): New command. | |
6755 | |
6756 * time.el (display-time-string-forms): Make the Mail string active. | |
6757 (display-time-update): Provide help-echo for load average. | |
6758 | |
6759 * bindings.el (make-mode-line-mouse2-map): New function. | |
6760 (mode-line-modified): Use it and simplify. | |
6761 (mode-line-mule-info): Provide help-echo info. | |
6762 (minor-mode-alist): Activate the strings. | |
6763 (make-mode-line-mouse-sensitive): Simplify for | |
6764 mode-line-buffer-identification. | |
6765 | |
27233 | 6766 2000-01-07 Gerd Moellmann <gerd@gnu.org> |
6767 | |
6768 * play/pong.el: New file. | |
6769 | |
27241 | 6770 2000-01-06 Dave Love <fx@gnu.org> |
6771 | |
6772 * array.el: Assorted cleanups for compiler warnings, doc strings, | |
6773 `array-' prefix for symbols. | |
6774 | |
6775 2000-01-05 Dave Love <fx@gnu.org> | |
6776 | |
6777 * textmodes/outline.el (outline-mode-menu-bar-map): Add | |
6778 outline-headers-as-kill. | |
6779 (outline-mode): Define imenu-generic-expression. | |
6780 (outline-headers-as-kill): New command. | |
6781 | |
6782 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^' | |
6783 from paragraph-start. | |
6784 (paragraph-indent-minor-mode): New command. | |
6785 | |
6786 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a, | |
6787 M-C-e, M-C-h, C-j, C-xnd, TAB. | |
6788 (fortran-mode): Set beginning-of-defun, end-of-defun. | |
6789 (fortran-column-ruler): Simplify. | |
6790 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted. | |
6791 (fortran-with-subprogram-narrowing): Likewise. | |
6792 (fortran-indent-subprogram): Call mark-defun. | |
6793 (fortran-check-for-matching-do): Change narrowing. | |
6794 | |
6795 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table. | |
6796 (cl-lucid-hash-tag): Delete. | |
6797 (cl-hash-table-p): Correct test for native table. | |
6798 (cl-hash-table-count): Use hash-table-count. | |
6799 | |
6800 * browse-url.el (browse-url): Fix case of | |
6801 browse-url-browser-function being an alist. | |
6802 | |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
6803 2000-01-05 Carsten Dominik <cd@gnu.org> |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
6804 |
27233 | 6805 * textmodes/reftex-vars.el (reftex-parse-file-extension) |
6806 (reftex-index-phrase-file-extension): New options. | |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
6807 |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
6808 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer): |
27233 | 6809 Use new option `reftex-index-phrase-file-extension'. |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
6810 |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
6811 * textmodes/reftex.el (reftex-access-parse-file): Use new option |
27233 | 6812 `reftex-parse-file-extension'. |
27232
1c7665b7a026
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27205
diff
changeset
|
6813 |
27191 | 6814 2000-01-05 Dave Love <fx@gnu.org> |
6815 | |
27241 | 6816 * emacs-lisp/lisp.el (beginning-of-defun): New variable. |
27191 | 6817 (beginning-of-defun-raw): Use it. |
6818 (end-of-defun): New variable. | |
6819 (end-of-defun): Use it. | |
6820 (check-parens): New command. | |
6821 | |
27182 | 6822 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org> |
6823 | |
27233 | 6824 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region) |
6825 (hs-show-block): Don't use `mapcar' when not accumulating. | |
27182 | 6826 |
27184
2b11879c1a93
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27182
diff
changeset
|
6827 Fix buglet in local variables initialization. |
2b11879c1a93
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27182
diff
changeset
|
6828 |
27176 | 6829 2000-01-05 Andreas Schwab <schwab@suse.de> |
6830 | |
6831 * hscroll.el (hscroll): Doc fix. | |
6832 | |
27175
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6833 2000-01-05 Carsten Dominik <cd@gnu.org> |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6834 |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6835 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6836 idlw-toolbar. |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6837 |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6838 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6839 file idlw-rinfo.el. |
27182 | 6840 (idlwave-customize): load must read file idlw-shell.el. |
6841 (idlwave-create-customize-menu): load must read file idlw-shell.el. | |
27175
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
6842 |
27173
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6843 2000-01-05 Carsten Dominik <dominik@astro.uva.nl> |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6844 |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6845 * progmodes/idlw-shell.el: Also provide idlwave-shell |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6846 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6847 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6848 |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6849 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6850 both reftex-dcr and reftex-vcr. |
27182 | 6851 |
27173
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6852 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
6853 |
27164 | 6854 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
27162 | 6855 |
6856 * ps-print.el: PostScript code now is in separate files, doc fix. | |
6857 (ps-print-version): New version number (5.0.3). | |
6858 (ps-header-lines, ps-left-header, ps-right-header): No more buffer | |
6859 local. | |
6860 (ps-spool-config): Initialization fix. | |
27233 | 6861 (ps-print-prologue-1, ps-print-prologue-2) |
6862 (ps-print-duplex-feature): PostScript code moved to separated file. | |
27162 | 6863 (ps-background-image): Little code reformating. |
6864 (ps-begin-file, ps-begin-job): Fix code. | |
27191 | 6865 (ps-postscript-code-directory, ps-mark-code-directory): New vars. |
27162 | 6866 (ps-prologue-file): New fun. |
6867 | |
27159 | 6868 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
6869 | |
27233 | 6870 * ps-vars.el: Eliminated. |
27159 | 6871 |
6872 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is | |
6873 `;;;###autoload'. | |
6874 | |
6875 * ps-print.el: ps-vars eliminated, doc fix. | |
6876 (ps-print-version): New version number (5.0.2). | |
6877 (ps-spool-config): Initialization fix. | |
6878 (ps-print-customize): New fun. | |
6879 | |
27155 | 6880 2000-01-04 Gerd Moellmann <gerd@gnu.org> |
6881 | |
6882 * autorevert.el (auto-revert-mode): Return value of | |
6883 auto-revert-mode. | |
6884 | |
27152 | 6885 2000-01-04 Dave Love <fx@gnu.org> |
6886 | |
27198 | 6887 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle |
6888 menu items. | |
27152 | 6889 |
27124 | 6890 2000-01-03 Dave Love <fx@gnu.org> |
6891 | |
27191 | 6892 * elide-head.el (elide-head) [defgroup]: Add :version. |
27126 | 6893 |
27241 | 6894 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar. |
27124 | 6895 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use |
6896 `cl-hash-table-p', not `hash-table-p'. | |
6897 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code. | |
6898 | |
27119 | 6899 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
6900 | |
6901 * faces.el (face-read-integer, read-face-attribute) | |
6902 (color-defined-p, color-values): unspecified-{f,b}g are now | |
6903 strings. | |
6904 | |
27112 | 6905 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org> |
6906 | |
6907 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces | |
6908 at comment end, and re-insert them after filling. | |
6909 | |
27103
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
6910 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
6911 |
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
6912 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el |
27110
3687809feff2
Renamed idlwave-*.el into idlw-*.el.
Eli Zaretskii <eliz@gnu.org>
parents:
27103
diff
changeset
|
6913 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el, |
3687809feff2
Renamed idlwave-*.el into idlw-*.el.
Eli Zaretskii <eliz@gnu.org>
parents:
27103
diff
changeset
|
6914 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el. |
27103
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
6915 |
27102 | 6916 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
6917 | |
6918 * term/x-win.el (xw-defined-colors): Call color-supported-p, | |
6919 the new name of face-color-supported-p. | |
6920 | |
6921 * term/w32-win.el (xw-defined-colors): Likewise. | |
6922 | |
27097 | 6923 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
6924 | |
6925 * simple.el (completion-setup-function): Count completion-size | |
6926 from minibuffer-prompt-end, not from point-min. | |
6927 | |
27091 | 6928 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
6929 | |
6930 * faces.el (read-face-attribute, defined-colors, color-defined-p): | |
6931 Pass the frame to tty-color-* functions. | |
6932 (display-color-p, frame-set-background-mode): Pass the frame to | |
6933 tty-display-color-p. | |
6934 | |
6935 * term/tty-colors.el (tty-defined-color-alist): Renamed from | |
6936 tty-color-alist. | |
6937 (tty-color-alist, tty-modify-color-alist): New functions. | |
6938 (tty-color-define, tty-color-clear, tty-color-approximate) | |
6939 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept | |
6940 an optional parameter FRAME. | |
6941 | |
27074 | 6942 2000-01-01 Gerd Moellmann <gerd@gnu.org> |
6943 | |
27082 | 6944 * image.el (create-image, defimage): Don't assume image data is a |
6945 string. | |
6946 | |
27074 | 6947 * image.el (defimage): Handle specifications containing :data |
6948 instead of :file. | |
6949 (image-type-from-data): New function. | |
6950 (image-type-from-file-header): Use it. | |
6951 (create-image): Add parameter DATA-P. | |
27182 | 6952 |
30729 | 6953 See ChangeLog.8 for earlier changes. |
30993 | 6954 |
6955 ;; Local Variables: | |
31092 | 6956 ;; coding: iso-2022-7bit |
30993 | 6957 ;; End: |