]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
4572cf4eb6d7c64b7227b7af2c27772720c1fef9
[gnu-emacs] / lisp / ChangeLog
1 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
2
3 * wid-edit.el (widget-match-inline): An atom never matches a
4 list.
5
6 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
7
8 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
9 at ':' characters by call to split-string.
10
11 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
12
13 * textmodes/bibtex.el: Added RCS version identification.
14
15 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
16
17 * textmodes/bibtex.el: Some temporary comments removed.
18 (bibtex-field-name, bibtex-entry-type): Made the relationship
19 explicit.
20 (bibtex-field-const): Allow capital letters.
21 (bibtex-start-of-string): Deleted because unused.
22
23 * textmodes/bibtex.el: Unified some nomenclature. We no longer
24 use the term 'reference' to describe a bibtex entry as a whole.
25 Further, reference keys are no longer called 'labels'.
26 (bibtex-keys): Renamed to bibtex-reference-keys.
27 (bibtex-reformat-previous-labels): Renamed to
28 bibtex-reformat-previous-reference-keys.
29 (bibtex-reference-type): Renamed to bibtex-entry-type.
30 (bibtex-reference-head): Renamed to bibtex-entry-head.
31 (bibtex-reference-maybe-empty-head): Renamed to
32 bibtex-entry-maybe-empty-head.
33 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
34 (bibtex-search-reference): Renamed to bibtex-search-entry.
35 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
36 bibtex-enclosing-entry-maybe-empty-head.
37 (bibtex-entry-field-alist, bibtex-entry-head,
38 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
39 bibtex-map-entries, bibtex-search-entry,
40 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
41 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
42 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
43 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
44 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
45 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
46 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
47
48 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
49
50 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
51 comment.
52 (bibtex-format-field-delimiters): New function, functionality
53 extracted from bibtex-format-entry.
54 (bibtex-autokey-get-yearfield-digits): New function, functionality
55 extracted from bibtex-autokey-get-yearfield.
56
57 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
58 entries in order to avoid stack overflow in the regexp matcher if
59 field contents become large.
60 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
61 bibtex-field-string-part-not-braced,
62 bibtex-field-string-part-no-inner-braces,
63 bibtex-field-string-part-1-inner-brace,
64 bibtex-field-string-part-2-inner-braces,
65 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
66 bibtex-field-string-quoted, bibtex-field-string,
67 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
68 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
69 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
70 as parsing is now performed by the following functions.
71 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
72 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
73 bibtex-parse-field-string, bibtex-search-forward-field-string,
74 bibtex-parse-association, bibtex-field-name-for-parsing,
75 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
76 bibtex-search-forward-field, bibtex-search-backward-field,
77 bibtex-start-of-field, bibtex-end-of-field,
78 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
79 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
80 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
81 bibtex-parse-string, bibtex-search-forward-string,
82 bibtex-search-backward-string, bibtex-start-of-string,
83 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
84 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
85 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
86 entries. Instead of reporting the results of the parsing by
87 match-beginning or match-end, these functions return data structures
88 that hold the corresponding positions.
89 (bibtex-enclosing-field): Changed to also report field boundaries by
90 return values rather than by match-beginning or match-end. The
91 following functions have been adapted to use the new parsing
92 functions.
93 (bibtex-skip-to-valid-entry, bibtex-search-reference,
94 bibtex-enclosing-field, bibtex-format-entry,
95 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
96 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
97 bibtex-print-help-message, bibtex-end-of-entry,
98 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
99 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
100 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
101 method for parsing.
102 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
103 bibtex-map-entries, bibtex-flash-head,
104 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
105 bibtex-autokey-change, bibtex-autokey-get-namefield,
106 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
107 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
108 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
109 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
110 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
111 order to make the new binding of case-fold-search immediately
112 visible.
113
114 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
115
116 * textmodes/bibtex.el: Copyright notice is up to date.
117 Added constant 'bibtex-maintainer-salutation.
118
119 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
120 than make-temp-name, use match-string-no-properties and eliminate
121 a quadratic behavior when building bibtex-strings.
122
123 * bibtex.el (bibtex-reference-key): Accept string entries whose
124 reference key contains upper case letters.
125
126 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
127
128 * bibtex.el (bibtex-reference-head): Allow entries to start with
129 a new line.
130
131 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
132
133 * bibtex.el: Hiding of entry bodies is not longer provided by
134 bibtex.el directly. Instead the hideshow package can be used.
135 Added a special bibtex entry to hs-special-modes-alist.
136 (bibtex-hs-forward-sexp): Added for hideshow.el.
137
138 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
139
140 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
141 proceedings entry type (for cross referencing). Thanks to Wagner
142 Toledo Correa for the suggestion.
143
144 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
145
146 2000-02-14 Kenichi Handa <handa@etl.go.jp>
147
148 * international/characters.el: Setup case table for Vietnamese.
149
150 2000-02-12 Gerd Moellmann <gerd@gnu.org>
151
152 * uniquify.el (toplevel): Require CL at compile time.
153 (uniquify-push): Removed.
154
155 * shadowfile.el (shadow-when): Removed.
156
157 * tempo.el (tempo-dolist, tempo-mapc): Removed.
158 (tempo-process-and-insert-string): Use dolist instead of
159 tempo-dolist.
160
161 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
162 regexp for paragraph-start.
163
164 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
165 commas as well.
166
167 2000-02-10 Dave Love <fx@gnu.org>
168
169 * wid-edit.el: (widgets) [defgroup]: Remove url link.
170 (widget-color-choice-list, widget-color-history, widget-mouse-help):
171 Deleted.
172 (widget-specify-field, widget-specify-button): Don't use
173 widget-mouse-help as help-echo property.
174 (default): Use #'ignore for :validate and :mouse-down-action.
175 (checkbox): Add help-echo.
176 (widget-sexp-validate): Rewritten to clarify error messages.
177 (character): Use char-valid-p in :match function.
178 (widget-color-complete): Use facemenu-color-alist.
179 (widget-color-action): Use facemenu-read-color.
180
181 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
182 set up `caar' &c that we now have.
183
184 2000-02-09 Dave Love <fx@gnu.org>
185
186 * bindings.el (mode-line-input-method-map): New variable.
187 (mode-line-mule-info): Use it; fix last change.
188 (mode-line-mode-menu): Move definition.
189 (mode-line-mouse-sensitive-p): Deleted.
190 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
191 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
192 level.
193
194 * startup.el (command-line-1): Don't call
195 make-mode-line-mouse-sensitive.
196
197 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
198
199 * mail/rmail.el (rmail-retry-failure): Use
200 rmail-beginning-of-message before rmail-toggle-header, because the
201 former toggles headers.
202
203 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
204
205 * diff-mode.el (diff-kill-junk): New interactive function.
206 (diff-reverse-direction): Use delete-and-extract-region.
207 (diff-post-command-hook): Restrict the area so that the hook also works
208 outside of any diff hunk. This is necessary for the minor-mode.
209 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
210 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
211
212 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
213 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
214 so that it can be used more easily in <foo>-mode-hook. Also make sure
215 to avoid duplicate entries.
216 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
217 (font-lock-remove-keywords): Just as was done for `add', allow it to
218 work even if font-lock-mode is nil. Also make sure we don't modify
219 any pre-existing list by forcing a copy-sequence. Finally rename
220 `major-mode' to `mode'.
221 (font-lock-fontify-syntactic-anchored-keywords)
222 (font-lock-fontify-anchored-keywords)
223 (font-lock-fontify-keywords-region): Use line-end-position.
224 Don't make `font-lock-multiline' local (it's now done in
225 font-lock-set-defaults).
226 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
227 move the `font-lock-fontified' creation to inside the `unless'.
228
229 2000-02-06 Andrew Innes <andrewi@gnu.org>
230
231 * term/w32-win.el (x-handle-args): Comment out call to message,
232 which occurs before window system is initialized.
233
234 * makefile.nt: Add support for recompiling lisp code.
235
236 2000-02-04 Dave Love <fx@gnu.org>
237
238 * bindings.el (mode-line-mule-info): Fix/extend last change.
239
240 * completion.el: Replace completion-dolist with dolist.
241
242 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
243 dotimes.
244
245 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
246
247 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
248 environment names before they go into the section regexp.
249
250 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
251 char class in regexp.
252
253 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
254 `case-fold-search' to nil.
255
256 * progmodes/idlwave.el (idlwave-template): Respect
257 `idlwave-abbrev-change-case'.
258 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
259 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
260 idlwave-while): respect `idlwave-reserved-word-upcase'.
261 (idlwave-rw-case): New function.
262 (idlwave-statement-match): Fixed problem with assignment regexp.
263 (idlwave-font-lock-keywords): Improved regexp for keyword
264 parameters.
265 (idlwave-surround): New argument LENGTH to support padding of
266 operators longer than 1 char.
267
268 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
269 idlwave-shell-expression-overlay. Implemented printing of
270 expressions on higher levels of the calling stack.
271 (idlwave-shell-display-level-in-calling-stack): Restore stack
272 level.
273 (idlwave-retrieve-expression-from-level): New function.
274 (idlwave-shell-last-calling-stack): Variable removed.
275 (idlwave-shell-reset): Argument action reversed (`visible' to
276 `hidden'). Also remove stop-line overlay.
277 (idlwave-shell-calling-stack-routine): New variable.
278 (idlwave-shell-parse-stack-and-display): Messages now display
279 negative level numbers.
280 (idlwave-shell-mode): Set `modeline-format'.
281 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
282 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
283 21.
284 (idlwave-shell-print-expression-function): New option.
285
286 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
287 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
288 `tool-bar' instead of `toolbar'.
289
290 2000-02-02 Dave Love <fx@gnu.org>
291
292 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
293 emacs-lisp-mode-hook. Don't check for defalias being defined.
294
295 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
296 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
297 the new builtins directly.
298
299 * whitespace.el (whitespace): Add :version to defgroup.
300
301 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
302 Doc fix.
303
304 * thingatpt.el (sexp-at-point, symbol-at-point)
305 (number-at-point, list-at-point): Add autoload cookie.
306
307 * recentf.el (recentf): Add :version to defgroup.
308
309 * quickurl.el (quickurl): Add :version to defgroup.
310
311 * elide-head.el (elide-head): Use point-marker more.
312
313 * bs.el (bs): Add :version to defgroup.
314
315 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
316
317 * progmodes/delphi.el (delphi): Add :version to defgroup.
318
319 2000-02-02 Gerd Moellmann <gerd@gnu.org>
320
321 * ange-ftp.el (ange-ftp-write-region): Handle case that
322 succeeding process operation sets a different coding system.
323
324 * calculator.el: New file.
325
326 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
327
328 * frame.el (frames-on-display-list, framep-on-display): New
329 functions.
330 (display-mouse-p, display-popup-menus-p, display-graphic-p)
331 (display-selections-p, display-screens, display-pixel-width)
332 (display-pixel-height, display-mm-width, display-mm-height)
333 (display-backing-store, display-save-under, display-planes)
334 (display-color-cells, display-visual-class): New functions.
335
336 * term/tty-colors.el (tty-color-gray-shades): New function.
337
338 * faces.el (display-color-p): Use framep-on-display.
339 (display-grayscale-p): New function.
340
341 2000-01-31 Dave Love <fx@gnu.org>
342
343 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
344 (create-fontset-from-x-resource): Don't concat integers.
345
346 2000-01-31 Inge Frick <inge@nada.kth.se>
347
348 * view.el: Some changes in documentation. Removed some trailing
349 whitespace. Changed some parameter names to agree with
350 documentation.
351 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
352 window is not deleted. Modifies change 1998-04-26.
353
354 2000-01-31 Gerd Moellmann <gerd@gnu.org>
355
356 * windmove.el: New file.
357
358 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
359 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
360 progmodes/ebnf-yac.el: Update copyright and license info.
361
362 * jit-lock.el (jit-lock-function): Widen before calculating end
363 position.
364 (jit-lock-stealth-chunk-start): Rewritten.
365
366 * info.el (Info-title-face-alist): Removed.
367 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
368 faces.
369 (Info-fontify-node): Use these faces.
370
371 2000-01-30 Gerd Moellmann <gerd@gnu.org>
372
373 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
374 (cl-macro-list1): Recognize `&allow-other-keys' instead of
375 `&allow-other-keywords'.
376
377 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
378 the list of directories scanned heuristically.
379
380 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
381 exist.
382
383 2000-01-30 Jason Rumney <jasonr@gnu.org>
384
385 * w32-fns.el: Define w32-tty-standard-colors.
386
387 * startup.el (command-line): Use w32-tty-standard-colors when in
388 w32 console mode.
389
390 2000-01-30 Dave Love <fx@gnu.org>
391
392 * jka-compr.el (jka-compr-load): Fix up load-history.
393
394 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
395
396 * emacs-lisp/cl-macs.el: Revert previous change.
397
398 2000-01-29 Dave Love <fx@gnu.org>
399
400 * facemenu.el: Purecopy various strings.
401
402 * timezone.el (timezone-fix-time): Window against 69 for two-digit
403 years. Deal with three-digit years.
404
405 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
406 defconst, purecopy.
407 (help-back-label): Purecopy it.
408
409 2000-01-18 Gerd Moellmann <gerd@gnu.org>
410
411 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
412 variable. If non-nil, order the buffer list according to the
413 currently selected frame.
414 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
415 non-nil, pass the selected frame to function buffer-list.
416
417 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
418
419 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
420
421 2000-01-28 Dave Love <fx@gnu.org>
422
423 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
424
425 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
426 Don't use lisp-indent-hook property.
427 (cl-abs): Remove.
428
429 * subr.el: Move out indent and edebug specs for when and unless.
430
431 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
432 when, unless.
433
434 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
435 unless, when.
436
437 2000-01-28 Gerd Moellmann <gerd@gnu.org>
438
439 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
440 `collecting' as synonym for `collect'.
441
442 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
443 for the case it contains spaces.
444
445 * simple.el (what-cursor-position): Change formatting of
446 messages.
447
448 * frame.el (delete-other-frames): New function.
449 (toplevel): Bind it to C-x 5 1.
450
451 * sort.el (sort-numeric-base): New option.
452 (sort-numeric-fields): If number starts with `0' or `0[xX[',
453 interpret it as octal or hexadecimal. Use sort-numeric-base
454 as default base.
455
456 * progmodes/glasses.el: New file.
457
458 2000-01-27 Gerd Moellmann <gerd@gnu.org>
459
460 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
461 userids differently.
462
463 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
464 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
465 progmodes/ebnf-yac.el: New files.
466
467 2000-01-26 Dave Love <fx@gnu.org>
468
469 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
470 on a function with an empty body. [From Eric Ludlam.]
471
472 2000-01-25 Andre Spiegel <spiegel@gnu.org>
473
474 * vc.el (vc-version-diff): Make sure file name is expanded.
475
476 2000-01-25 Gerd Moellmann <gerd@gnu.org>
477
478 * scroll-bar.el (scroll-bar-timer): Variable removed.
479 (scroll-bar-toolkit-scroll): Don't use a timer.
480
481 2000-01-25 Kenichi Handa <handa@etl.go.jp>
482
483 * language/thai-util.el (thai-composition-function): Delete
484 superfluous `a'.
485
486 2000-01-24 Dave Love <fx@gnu.org>
487
488 * fortran.el (fortran-mode): Use beginning-of-defun-function,
489 end-of-defun-function.
490
491 * font-lock.el (turn-on-font-lock): Don't depend on window-system
492 &c.
493
494 2000-01-22 Jason Rumney <jasonr@gnu.org>
495
496 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
497 conflicts with new face support.
498
499 2000-01-22 Richard M. Stallman <rms@caffeine.ai.mit.edu>
500
501 * replace.el (query-replace): Rename last arg to DELIMITED.
502 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
503 (query-replace-regexp): Likewise.
504
505 2000-01-20 Richard M. Stallman <rms@caffeine.ai.mit.edu>
506
507 * subr.el (with-syntax-table): Use make-symbol, not gensym.
508
509 * emacs-lisp/lisp.el (beginning-of-defun-function):
510 Variable renamed from beginning-of-defun.
511 Do not call make-variable-buffer-local.
512 (beginning-of-defun-raw): Use new variable name; doc fix.
513 (beginning-of-defun): Doc fix.
514 (end-of-defun-function): Variable renamed from end-of-defun.
515 Do not call make-variable-buffer-local.
516 (end-of-defun): Use new variable name; doc fix.
517
518 * subr.el (dolist, dotimes): Copied from cl-macs.el
519 and made to work.
520
521 * mail/undigest.el (rmail-digest-end-regexps):
522 Variable replaces rmail-digest-end-regexp.
523 Allows multiple regexps for detecting the end line.
524 (undigestify-rmail-message): Corresponding changes.
525
526 2000-01-19 Dave Love <fx@gnu.org>
527
528 * files.el (user-init-file): Don't declare here -- is primitive.
529
530 * startup.el (command-line): Check for compiled user-init-file and
531 set to uncompiled version if necessary.
532
533 2000-01-18 Gerd Moellmann <gerd@gnu.org>
534
535 * mail/undigest.el (rmail-digest-end-regexp): New user option.
536 (undigestify-rmail-message): Use it.
537
538 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
539
540 2000-01-17 Gerd Moellmann <gerd@gnu.org>
541
542 * tmm.el (tmm-goto-completions): Adapt to prompt being part
543 of mini-buffer.
544
545 2000-01-14 Gerd Moellmann <gerd@gnu.org>
546
547 * emacs-lisp/copyright.el (copyright-update): Removed the
548 requirement for a trailing space from `copyright-regexp', to
549 support copyrights with owner specified on a separate line..
550
551 * align.el: New file.
552
553 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
554
555 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
556
557 2000-01-13 Dave Love <fx@gnu.org>
558
559 * ph.el: Removed. (Obsoleted by EUDC.)
560
561 2000-01-13 Gerd Moellmann <gerd@gnu.org>
562
563 * net/eudc.el (toplevel): Remove autoloaded code installing
564 menu with easymenu, because that causes build problems.
565
566 * frame.el (frame-notice-user-settings): New variable.
567 (frame-notice-user-settings): Don't modify frame parameters
568 if called a second time.
569
570 2000-01-13 Richard M. Stallman <rms@caffeine.ai.mit.edu>
571
572 * frame.el (frame-notice-user-settings):
573 Notice default-frame-parameters even for non-window frames.
574
575 2000-01-13 Gerd Moellmann <gerd@gnu.org>
576
577 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
578 for Emacs.
579 (eudc-bob-can-display-inline-images): Extend for Emacs.
580 (eudc-bob-toggle-inline-display): Ditto.
581 (eudc-bob-display-jpeg): Ditto.
582
583 2000-01-12 Gerd Moellmann <gerd@gnu.org>
584
585 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
586 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
587 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
588
589 * add-log.el (add-change-log-entry): Fix error trying an `(insert
590 nil)'.
591
592 * subdirs.el: Add `net' directory.
593
594 * net: New directory.
595
596 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
597 eval-last-sexp. Don't bind debug-on-error here.
598 (eval-last-sexp): New function. Bind debug-on-error if
599 eval-expression-debug-on-error is non-nil.
600 (eval-defun-2, eval-defun): Likewise.
601
602 * simple.el (eval-expression): Don't bind debug-on-error if
603 eval-expression-debug-on-error is nil. Detect changed
604 debug-on-error, and propagate new value to global binding, if
605 eval-expression-debug-on-error is non-nil,
606 (eval-expression-debug-on-error): Change doc string.
607
608 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
609
610 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
611
612 * emacs-lisp/lisp-mode.el (with-syntax-table):
613 Set up lisp-indent-function property.
614
615 * subr.el (with-syntax-table): Moved from simple.el.
616
617 * simple.el (with-syntax-table): Moved to subr.el.
618
619 2000-01-11 Gerd Moellmann <gerd@gnu.org>
620
621 * tmm.el (tmm-shortcut): Delete region after prompt instead
622 of erasing buffer.
623
624 * textmodes/fill.el (fill-common-string-prefix): New function.
625 (fill-context-prefix): Use the longest common prefix of first
626 and second line fill prefix, if there is one.
627
628 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
629
630 * array.el (array-mode): Don't use make-variable-buffer-local.
631 Use make-local-variable for `truncate-lines'.
632
633 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
634
635 * add-log.el (add-log-current-defun): Handle user-defined
636 add-log-current-function returning nil,
637
638 * add-log.el (add-change-log-entry): Insert version number
639 if having found a current function
640
641 * add-log.el (add-log-current-defun): Call
642 `add-log-current-defun-function'. Try matches at level 0 and
643 level 1. Strip whitespace from defun found.
644
645 2000-01-10 John Wiegley <johnw@gnu.org>
646
647 * allout.el (isearch-done/outline-provisions): Added `edit'
648 argument to correspond with the current definition of
649 `isearch-done'.
650
651 2000-01-10 Dave Love <fx@gnu.org>
652
653 * elide-head.el (elide-head): Use point-marker, not point.
654
655 2000-01-10 Gerd Moellmann <gerd@gnu.org>
656
657 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
658 before and after the year 2000.
659
660 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
661 Add ispell- prefix.
662
663 2000-01-10 Ken Stevens <k.stevens@ieee.org>
664
665 * ispell.el: Only define dictionaries in menus when they exist.
666 (version18p): New variable.
667 (version20p): New variable.
668 (xemacsp): New variable.
669 (ispell-choices-win-default-height): Fix for XEmacs visibility.
670 (ispell-dictionary-alist1): Added Brasileiro dictionary.
671 (ispell-dictionary-alist6): Russian command lines no longer accept
672 run-together words.
673 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
674 (ispell-dictionary-alist): Add koi8-r to customize definition.
675 (check-ispell-version): Added documentation string. Returns
676 library path when called non-interactively.
677 (ispell-menu-map-needed): Uses new variables.
678 (ispell-library-path): New variable.
679 (ispell-decode-string): XEmacs fix for bogus variable bindings.
680 (ispell-word): Improved documentation string. Test for valid
681 character mappings. Correctly check typed in word changes that can
682 result in single words split into multiple words. Returns
683 replacement word.
684 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
685 replace in recursive query replace mode. Help message for
686 recursive edit mode.
687 (ispell-show-choices): Protect against bad framepop bindings.
688 (ispell-help): Fix to work with XEmacs.
689 (ispell-highlight-spelling-error): Use new variables.
690 (ispell-overlay-window): Fix to work with XEmacs.
691 (ispell-parse-output): Passed and returns location information
692 tracking spelling corrections. Doesn't recheck same word on
693 current line.
694 (ispell-init-process): Protect against bogus XEmacs variable binding.
695 Fix call to single argument in sleep-for. Use new variables.
696 (ispell-region): Passed and returns location information tracking
697 spelling corrections. Doesn't check same word on current line.
698 Improved documentation string. Doesn't resend a line already
699 checked to the ispell process - fixes bug in LaTeX parsing.
700 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
701 (ispell-skip-region): No longer skips <TT> in SGML.
702 (ispell-process-line): Tracks location information with spelling
703 corrections. Added documentation string. Accounts for words
704 already accepted on this line. Don't allow query-replace on line
705 starting with math characters. Doesn't resend a line already sent
706 to ispell process. Fixes alignment error bug.
707
708 2000-01-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
709
710 * dired-x.el (dired-guess-shell-alist-default):
711 Suggest xloadimage, which is free, not xv, which isn't.
712
713 * ange-ftp.el (ange-ftp-file-name-nondirectory):
714 Don't ever include the host name or user name in the value.
715
716 2000-01-09 Gerd Moellmann <gerd@gnu.org>
717
718 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
719 of a real newline.
720
721 2000-01-09 Stephen Eglen <stephen@gnu.org>
722
723 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
724 for .png files.
725
726 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
727
728 * cus-edit.el (custom-hook-convert-widget): Fix comment.
729
730 2000-01-09 Gerd Moellmann <gerd@gnu.org>
731
732 * progmodes/cperl-mode.el: Replace ^F with ^L.
733
734 * sendmail.el (toplevel): Provide `sendmail' when compiling
735 before `require'ing rmail and mailalias to prevent infinite
736 recursion.
737
738 2000-01-08 Dave Love <fx@gnu.org>
739
740 * emacs-lisp/backquote.el: Remove inappropriate customization
741 (allowing custom.el to use backquote).
742
743 2000-01-07 Dave Love <fx@gnu.org>
744
745 * add-log.el (add-log-debugging): Deleted.
746 (add-change-log-entry): Treat a backup FILE-NAME as its parent
747 file. Remove debugging code.
748 (change-log-get-method-definition, change-log-name): Add doc.
749 (change-log-sortable-date-at): New function.
750 (change-log-merge): New command.
751
752 * time.el (display-time-string-forms): Make the Mail string active.
753 (display-time-update): Provide help-echo for load average.
754
755 * bindings.el (make-mode-line-mouse2-map): New function.
756 (mode-line-modified): Use it and simplify.
757 (mode-line-mule-info): Provide help-echo info.
758 (minor-mode-alist): Activate the strings.
759 (make-mode-line-mouse-sensitive): Simplify for
760 mode-line-buffer-identification.
761
762 2000-01-07 Gerd Moellmann <gerd@gnu.org>
763
764 * play/pong.el: New file.
765
766 2000-01-06 Dave Love <fx@gnu.org>
767
768 * array.el: Assorted cleanups for compiler warnings, doc strings,
769 `array-' prefix for symbols.
770
771 2000-01-05 Dave Love <fx@gnu.org>
772
773 * textmodes/outline.el (outline-mode-menu-bar-map): Add
774 outline-headers-as-kill.
775 (outline-mode): Define imenu-generic-expression.
776 (outline-headers-as-kill): New command.
777
778 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
779 from paragraph-start.
780 (paragraph-indent-minor-mode): New command.
781
782 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
783 M-C-e, M-C-h, C-j, C-xnd, TAB.
784 (fortran-mode): Set beginning-of-defun, end-of-defun.
785 (fortran-column-ruler): Simplify.
786 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
787 (fortran-with-subprogram-narrowing): Likewise.
788 (fortran-indent-subprogram): Call mark-defun.
789 (fortran-check-for-matching-do): Change narrowing.
790
791 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
792 (cl-lucid-hash-tag): Delete.
793 (cl-hash-table-p): Correct test for native table.
794 (cl-hash-table-count): Use hash-table-count.
795
796 * browse-url.el (browse-url): Fix case of
797 browse-url-browser-function being an alist.
798
799 2000-01-05 Carsten Dominik <cd@gnu.org>
800
801 * textmodes/reftex-vars.el (reftex-parse-file-extension)
802 (reftex-index-phrase-file-extension): New options.
803
804 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
805 Use new option `reftex-index-phrase-file-extension'.
806
807 * textmodes/reftex.el (reftex-access-parse-file): Use new option
808 `reftex-parse-file-extension'.
809
810 2000-01-05 Dave Love <fx@gnu.org>
811
812 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
813 (beginning-of-defun-raw): Use it.
814 (end-of-defun): New variable.
815 (end-of-defun): Use it.
816 (check-parens): New command.
817
818 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
819
820 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
821 (hs-show-block): Don't use `mapcar' when not accumulating.
822
823 Fix buglet in local variables initialization.
824
825 2000-01-05 Andreas Schwab <schwab@suse.de>
826
827 * hscroll.el (hscroll): Doc fix.
828
829 2000-01-05 Carsten Dominik <cd@gnu.org>
830
831 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
832 idlw-toolbar.
833
834 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
835 file idlw-rinfo.el.
836 (idlwave-customize): load must read file idlw-shell.el.
837 (idlwave-create-customize-menu): load must read file idlw-shell.el.
838
839 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
840
841 * progmodes/idlw-shell.el: Also provide idlwave-shell
842 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
843 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
844
845 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
846 both reftex-dcr and reftex-vcr.
847
848 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
849
850 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
851
852 * ps-print.el: PostScript code now is in separate files, doc fix.
853 (ps-print-version): New version number (5.0.3).
854 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
855 local.
856 (ps-spool-config): Initialization fix.
857 (ps-print-prologue-1, ps-print-prologue-2)
858 (ps-print-duplex-feature): PostScript code moved to separated file.
859 (ps-background-image): Little code reformating.
860 (ps-begin-file, ps-begin-job): Fix code.
861 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
862 (ps-prologue-file): New fun.
863
864 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
865
866 * ps-vars.el: Eliminated.
867
868 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
869 `;;;###autoload'.
870
871 * ps-print.el: ps-vars eliminated, doc fix.
872 (ps-print-version): New version number (5.0.2).
873 (ps-spool-config): Initialization fix.
874 (ps-print-customize): New fun.
875
876 2000-01-04 Gerd Moellmann <gerd@gnu.org>
877
878 * autorevert.el (auto-revert-mode): Return value of
879 auto-revert-mode.
880
881 2000-01-04 Dave Love <fx@gnu.org>
882
883 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
884 menu items.
885
886 2000-01-03 Dave Love <fx@gnu.org>
887
888 * elide-head.el (elide-head) [defgroup]: Add :version.
889
890 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
891 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
892 `cl-hash-table-p', not `hash-table-p'.
893 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
894
895 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
896
897 * faces.el (face-read-integer, read-face-attribute)
898 (color-defined-p, color-values): unspecified-{f,b}g are now
899 strings.
900
901 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
902
903 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
904 at comment end, and re-insert them after filling.
905
906 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
907
908 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
909 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
910 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
911
912 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
913
914 * term/x-win.el (xw-defined-colors): Call color-supported-p,
915 the new name of face-color-supported-p.
916
917 * term/w32-win.el (xw-defined-colors): Likewise.
918
919 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
920
921 * simple.el (completion-setup-function): Count completion-size
922 from minibuffer-prompt-end, not from point-min.
923
924 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
925
926 * faces.el (read-face-attribute, defined-colors, color-defined-p):
927 Pass the frame to tty-color-* functions.
928 (display-color-p, frame-set-background-mode): Pass the frame to
929 tty-display-color-p.
930
931 * term/tty-colors.el (tty-defined-color-alist): Renamed from
932 tty-color-alist.
933 (tty-color-alist, tty-modify-color-alist): New functions.
934 (tty-color-define, tty-color-clear, tty-color-approximate)
935 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
936 an optional parameter FRAME.
937
938 2000-01-01 Gerd Moellmann <gerd@gnu.org>
939
940 * image.el (create-image, defimage): Don't assume image data is a
941 string.
942
943 * image.el (defimage): Handle specifications containing :data
944 instead of :file.
945 (image-type-from-data): New function.
946 (image-type-from-file-header): Use it.
947 (create-image): Add parameter DATA-P.
948
949 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
950
951 * echistory.el (electric-command-history): Call Command-history-setup
952 and command-history-mode using their new conventions.
953
954 * chistory.el (Command-history-setup): Don't switch buffers. Take
955 no args, and do not set major-mode, mode-name or the local map.
956 (command-history-mode): New function, does some of those things
957 Command-history-setup used to do.
958 (list-command-history): Call command-history-mode, not
959 Command-history-setup.
960 (command-history): Renamed from command-history-mode.
961
962 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
963
964 * arc-mode.el (archive-mode-map): Bind q to quit-window.
965
966 1999-12-31 William M. Perry <wmperry@aventail.com>
967
968 * image.el (defimage): Images with the `:data' keyword should be
969 considered valid as well.
970
971 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
972
973 * dired.el (dired-get-filename): Don't call file-name-absolute-p
974 with FILE if FILE is nil.
975
976 1999-12-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
977
978 * simple.el (choose-completion-string): In minibuffer,
979 do not delete the prompt string.
980
981 1999-12-30 Gerd Moellmann <gerd@gnu.org>
982
983 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
984 assigned to mode-line-mode-menu because bindings.el is dumped with
985 Emacs, and thus the lists used for menu-item definition will be
986 copied to pure space. Emacs' menu code (parse_menu_item) doesn't
987 like pure menu item definitions.
988
989 * expand.el (expand-abbrev-hook): Return t if expansion was
990 done, nil otherwise.
991
992 1999-12-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
993
994 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
995 (tar-quit): Function deleted.
996
997 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org>
998
999 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
1000 was used but not declared.
1001
1002 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
1003 hs-find-block-beginning): Add or modify docstrings.
1004
1005 (hs-isearch-show): Rewrite.
1006
1007 1999-12-28 Gerd Moellmann <gerd@gnu.org>
1008
1009 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
1010
1011 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
1012 space in front of a C-style comment end.
1013
1014 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
1015
1016 * startup.el (command-line-1): Make mode line mouse-sensitive for
1017 the MS-DOS version as well.
1018
1019 1999-12-28 Gerd Moellmann <gerd@gnu.org>
1020
1021 * bs.el: New file.
1022
1023 1999-12-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1024
1025 * textmodes/ispell.el (ispell-process-line):
1026 Add local var line-offset to adjust for the change
1027 in positions within the line, due to previous replacements.
1028
1029 1999-12-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1030
1031 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
1032 Doc fixes.
1033
1034 1999-12-27 Gerd Moellmann <gerd@gnu.org>
1035
1036 * add-log.el (change-log-version-number-regexp-list)
1037 (change-log-version-info-enabled): Change :version to 21.1.
1038 (toplevel): Require CL when compiling.
1039
1040 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
1041
1042 * add-log.el (change-log-version-number-regexp-list): Added tag
1043 :version 20.6
1044 (change-log-version-info-enabled): Added tag :version 20.6
1045
1046 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
1047
1048 * add-log.el: More general version number search with
1049 user-configurable regexp list.
1050 (change-log-version-number-regexp-list): New user variable.
1051 (change-log-find-version): Rewritten. Use user-configurable
1052 version numbering regexp list
1053 change-log-version-number-regexp-list.
1054 (change-log-find-version): Renamed to
1055 change-log-version-number-search
1056 (add-log-file-name-function): New.
1057 (change-log-search-vc-number): Added END paramaeter. Added doc
1058 string to function.
1059 (change-log-version-rcs): Renamed. Was
1060 change-log-search-vc-number.
1061
1062 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1063
1064 * progmodes/compile.el (compilation-goto-locus): Delete hideshow
1065 overlays if they interfere.
1066 (compilation-find-file): Make intangible overlays tangible.
1067
1068 * progmodes/hideshow.el: Generally, synch w/ maintainer
1069 version 5.9.
1070
1071 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
1072
1073 (hs-minor-mode-hook): Don't initialize.
1074
1075 (hs-special-modes-alist): Rewrite value and docstring.
1076
1077 (hs-minor-mode-prefix): Delete unused var.
1078
1079 (hs-block-start-mdata-select): New var, buffer local.
1080
1081 (hs-headline): New var.
1082
1083 (hs-match-data, hs-forward-sexp): New funcs.
1084
1085 (hs-hide-comment-region): New func.
1086
1087 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
1088 hs-safety-is-job-n, hs-hide-initial-comment-block,
1089 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
1090 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
1091 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
1092 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
1093 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
1094
1095 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
1096 (hs-isearch-show-temporary): New funcs.
1097
1098 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
1099
1100 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
1101
1102 When constructing menu, use `[(shift button2)]' notation.
1103
1104 1999-12-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1105
1106 * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
1107 (jka-compr-compression-info-list): Add new elt to each vector.
1108 (jka-compr-write-region): Don't compress the data if it is
1109 already compressed.
1110
1111 * jka-compr.el (jka-compr-really-do-compress): New variable.
1112 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
1113 if visiting.
1114 (jka-compr-write-region): Set jka-compr-really-do-compress
1115 if visiting. Test it when deciding to compress.
1116
1117 1999-12-22 Gerd Moellmann <gerd@gnu.org>
1118
1119 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
1120 with third argument t.
1121
1122 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1123
1124 * antlr-mode.el: Version 1.2 is released.
1125 (antlr): This package has a web page.
1126
1127 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1128
1129 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
1130 regions. Suggested by Dale Davis <Dale_Davis@securify.com>.
1131 (antlr-mode-map): New binding [C-c C-c].
1132 (antlr-mode-menu): New entries.
1133
1134 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1135
1136 * antlr-mode.el: Respect Emacs conventions.
1137 ((require 'cl)): Only use during compilation.
1138 (antlr-language-for-option): New function to avoid using `find'.
1139 (antlr-mode): Use it.
1140 (antlr-with-syntax-table): Define new instead using XEmacs' one.
1141 (antlr-imenu-create-index-function): Change accordingly.
1142 (antlr-inside-rule-p): Ditto.
1143 (antlr-end-of-rule): Ditto.
1144 (antlr-end-of-body): Ditto.
1145 (antlr-beginning-of-rule): Ditto.
1146 (antlr-indent-line): Ditto.
1147
1148 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com>
1149
1150 * antlr-mode.el: Really use `antlr-tab-offset-alist'.
1151 (antlr-set-tabs): Don't use hard-coded values.
1152
1153 * antlr-mode.el: Minor navigation changes. Not perfect, but this
1154 won't be possible without a huge time penalty.
1155 (antlr-skip-exception-part): Be more specific.
1156 (antlr-skip-file-prelude): Don't skip action prelude of next rule.
1157 Renamed from `antlr-skip-grammar-header'.
1158 (antlr-next-rule): Change accordingly.
1159 (antlr-end-of-body): Ditto. Better error message.
1160 (antlr-beginning-of-body): Better error message.
1161 (antlr-imenu-create-index-function): Skip rule action prelude.
1162
1163 * antlr-mode.el: Minor syntax highlighting changes.
1164 (antlr-font-lock-default-face): Deletia.
1165 (antlr-font-lock-tokendef-face): Changed color.
1166 (antlr-font-lock-tokenref-face): Changed color.
1167 (antlr-font-lock-literal-face): Changed color.
1168 (antlr-font-lock-additional-keywords): Minor changes.
1169
1170 1999-12-20 Carsten Dominik <cd@gnu.org>
1171
1172 * progmodes/idlwave.el: New file.
1173
1174 * progmodes/idlwave-rinfo.el: New file.
1175
1176 * progmodes/idlwave-shell.el: New file.
1177
1178 * progmodes/idlwave-toolbar.el: New file.
1179
1180 * files.el (auto-mode-alist): idlwave-mode default for .pro files.
1181
1182 1999-12-21 Gerd Moellmann <gerd@gnu.org>
1183
1184 * progmodes/cwarn.el: New file.
1185
1186 1999-12-19 Gerd Moellmann <gerd@gnu.org>
1187
1188 * bindings.el (completion-ignored-extensions): Add .pdf.
1189
1190 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
1191
1192 * version.el: Put the version info into binary on MS-DOS as well.
1193
1194 1999-12-19 Gerd Moellmann <gerd@gnu.org>
1195
1196 * emacs-lisp/debug.el (debugger-continue): Don't continue if
1197 debugger-may-continue is nil.
1198
1199 1999-12-18 Dave Love <fx@gnu.org>
1200
1201 * emacs-lisp/cl-macs.el: Remove conditional definition of
1202 eval-when-compile. Don't specify abs, expt, gethash,
1203 hash-table-count, hash-table-p as side-effect-free here.
1204 (cl-emacs-type): Don't declare.
1205 (cl-compile-time-init): Remove Emacs 18 compiler patch.
1206 (cl-parse-loop-clause): Remove compatibility code.
1207
1208 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
1209 (side-effect-free-fns): Add gethash, hash-table-count.
1210 (side-effect-and-error-free-fns): Add hash-table-p.
1211
1212 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend
1213 `cl-' to autoload names for some hash functions. Don't autoload
1214 eval-when-compile. Don't provide mini-cl.
1215 (cl-emacs-type): Remove.
1216 (cl-map-extents): Remove compatibility code.
1217
1218 * emacs-lisp/float.el: Bind free variables.
1219
1220 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
1221
1222 1999-12-16 Gerd Moellmann <gerd@gnu.org>
1223
1224 * bindings.el (completion-ignored-extensions): Add .tfm.
1225
1226 1999-12-16 Dave Love <fx@gnu.org>
1227
1228 * faces.el (set-face-attribute): Purecopy the attributes set.
1229
1230 * custom.el (custom-declare-variable): Purecopy value.
1231
1232 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
1233 (byte-extrude-byte-code-vectors): Use remprop.
1234 (byte-compile-lambda): Check that arg is a lambda.
1235
1236 1999-11-16 Anders Lindgren <AndersL@andersl.com>
1237
1238 * font-lock.el: System for adding and removing keywords.
1239 Both local (previously added keyword) and global keywords
1240 can be removed.
1241 (font-lock-remove-keywords): New user-level function.
1242 (font-lock-update-removed-keyword-alist): New internal function.
1243 (font-lock-removed-keywords-alist): New variable.
1244 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
1245 Empty `font-lock-keywords-alist' when `append' is `set' to avoid
1246 growing datastructures.
1247 (font-lock-set-defaults): Removes keywords stored in
1248 `font-lock-removed-keywords-alist' after local keywords added.
1249
1250 1999-12-16 Anders Lindgren <andersl@andersl.com>
1251
1252 * font-lock.el (c-keywords, c++-keywords): Better "case" support for
1253 complex constant expressions, e.g. "case 1<<A_BIT_NO:".
1254
1255 * font-lock.el (c-keywords): Only highlight preprocessor
1256 directives when spelled correctly.
1257
1258 * font-lock.el (font-lock-match-c++-structor-declaration,
1259 c++-keywords): Fontify constructors and destructors with function
1260 face inside C++ class declarations.
1261
1262 1999-12-16 Gerd Moellmann <gerd@gnu.org>
1263
1264 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
1265 the shell from sh-shell-file.
1266
1267 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
1268
1269 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
1270
1271 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
1272 if one of the files specified cannot be accessed by
1273 file-attributes. Do not strip any leading directories from the
1274 file names, to behave more like `ls' does.
1275
1276 * dired.el (dired-get-filename): Handle absolute file names.
1277 (dired-readin-insert): If argument is a cons, don't print
1278 "wildcard" on the ``total'' line.
1279
1280 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
1281
1282 * faces.el (face-read-integer, read-face-attribute)
1283 (color-defined-p, color-values): Allow color values unspecified-fg
1284 and unspecified-bg, handle them as unspecified.
1285
1286 1999-12-15 Carsten Dominik <dominik@astro.uva.nl>
1287
1288 * textmodes/reftex.el: (reftex-compile-variables): respect new
1289 structure of `reftex-index-macro'
1290 (reftex-compile-variables): Use the changed structure of
1291 `reftex-label-alist'.
1292
1293 * textmodes/reftex-vars.el (reftex-index-math-format,
1294 (reftex-toc-max-level): New option.
1295 reftex-index-phrases-search-whole-words,
1296 reftex-index-phrases-case-fold-search,
1297 reftex-index-phrases-skip-indexed-matches,
1298 reftex-index-phrases-wrap-long-lines,
1299 reftex-index-phrases-sort-prefers-entry,
1300 reftex-index-phrases-sort-in-blocks): New options.
1301 (reftex-index-macros): Option structure changed.
1302 (reftex-index-macros-builtin): Added `repeat' item to each entry.
1303 (reftex-label-alist): Additional item in each entry to specify if
1304 the environment should be listed in the TOC.
1305 (eval-when-compile (require 'cl)) added.
1306
1307 * textmodes/reftex-index.el (reftex-index-selection-or-word): No
1308 longer deals with "repeat".
1309 (reftex-index): "repeat property in `reftex-index-macro-alist' is
1310 now used.
1311 (reftex-index-phrases-comment-regexp,
1312 reftex-index-phrases-macrodef-regexp,
1313 reftex-index-phrases-phrase-regexp1,
1314 reftex-index-phrases-phrase-regexp2,
1315 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
1316 New constants.
1317 (reftex-index-phrases-macro-data, reftex-index-phrases-files,
1318 reftex-index-phrases-font-lock-keywords,
1319 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
1320 reftex-index-phrases-restrict-file): New variables.
1321 (reftex-index-phrase-selection-or-word,
1322 reftex-index-visit-phrases-buffer,
1323 reftex-index-initialize-phrases-buffer,
1324 reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
1325 reftex-index-next-phrase, reftex-index-this-phrase,
1326 reftex-index-all-phrases, reftex-index-region-phrases,
1327 reftex-index-phrases-parse-header,
1328 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
1329 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
1330 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
1331 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
1332 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
1333 reftex-index-make-replace-string,
1334 reftex-query-index-phrase-globally, reftex-query-index-phrase,
1335 reftex-index-phrase-match-is-indexed,
1336 reftex-index-phrases-fixup-line,
1337 reftex-index-phrases-replace-space,
1338 reftex-index-select-phrases-macro): New functions.
1339 (reftex-index-globalize, reftex-index-globally): functions removed
1340 (eval-when-compile (require 'cl)) added.
1341
1342 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
1343 for max level.
1344 (reftex-toc-max-level-indicator): New variable.
1345 (reftex-toc-max-level): New command.
1346 (reftex-toc-map): New keybinding `t'.
1347 (reftex-toc-help): Constant updated.
1348 (eval-when-compile (require 'cl)) added.
1349
1350 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
1351 `t' command key can change `reftex-toc-max-level'
1352 (eval-when-compile (require 'cl)) added.
1353
1354 * textmode/reftex-sel (reftex-insert-docstruct): Respect
1355 `reftex-toc-max-level'
1356 (eval-when-compile (require 'cl)) added.
1357
1358 * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
1359 added.
1360
1361 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
1362 added.
1363
1364 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
1365 commands.
1366 (reftex-citation, reftex-do-citation,
1367 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
1368 preselect a citation format.
1369 (eval-when-compile (require 'cl)) added.
1370
1371 * textmodes/reftex-parse.el (reftex-context-substring): Optional
1372 parameter to-end
1373 (reftex-section-info): Deal with environment matches.
1374 (eval-when-compile (require 'cl)) added.
1375
1376 * reftex-global.el (eval-when-compile (require 'cl)) added.
1377
1378 1999-12-15 Kenichi Handa <handa@etl.go.jp>
1379
1380 The following changes are for the new composition mechanism. We
1381 have deleted `composition' charset and composite characters,
1382 instead introduced a special text property `composition'.
1383
1384 * composite.el: New file.
1385
1386 * ps-mule.el: Define encode-composition-rule and find-composition
1387 for Emacs 20.4 and the earlier versions.
1388 (ps-mule-init-external-library): Just require a feature for
1389 external libraries.
1390 (ps-mule-prologue): Postscript code modified for new composition.
1391 (ps-mule-find-wrappoint): New arg COMPOSITION.
1392 (ps-mule-plot-string): Delete code for composite characaters.
1393 (ps-mule-plot-composition): New funcion.
1394 (ps-mule-prepare-font-for-components): New function.
1395 (ps-mule-plot-components): New function.
1396 (ps-mule-composition-prologue-generated): Renamed from
1397 ps-mule-cmpchar-prologue-generated.
1398 (ps-mule-composition-prologue): New named from
1399 ps-mule-cmpchar-prologue. Modified for new composition.
1400 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
1401 ps-mule-prepare-cmpchar-font): Deleted.
1402 (ps-mule-string-encoding): New arg NO-SETFONT.
1403 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
1404 check Composing, not Cmpchar
1405 (ps-mule-initialize): Set ps-mule-composition-prologue-generated
1406 to nil.
1407 (ps-mule-begin-job): Check existence of new composition.
1408
1409 * ps-print.el (ps-plot-region): Handle new composition.
1410
1411 * simple.el (what-cursor-position): Show "(composed)" if the
1412 character is composed.
1413
1414 * international/characters.el: Fix cateogries of Lao symbols.
1415
1416 * international/fontset.el (vertical-centering-font-regexp): New
1417 variable.
1418
1419 * international/mule.el (mule-version): Updated to 5.0 (AOI).
1420 (mule-version-date): Updated to 1999.12.7.
1421 (with-category-table): New macro.
1422
1423 * international/mule-cmds.el (encode-coding-char): Don't check
1424 composite character.
1425
1426 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
1427 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
1428 x-ctext): Give `composition' property t.
1429
1430 * international/mule-util.el (set-nested-alist): Set BRANCHES (if
1431 non-nil) at the tail of ALIST.
1432 (compose-region, decompose-region, decompse-string,
1433 reference-point-alist, compose-chars): Moved to composite.el.
1434 (compose-chars-component, compose-chars-rule,
1435 decompose-composite-char): Deleted.
1436
1437 * international/quail.el (quail-install-map): New optional arg
1438 NAME.
1439 (quail-get-translation): If DEF is a symbol but not a function,
1440 ignore it.
1441 (quail-start-translation): Put a key sequence undefined in the
1442 translation keymap in unread-command-events, not generated-events.
1443 Return parameterized event (compose-last-chars N) if the input
1444 characters should be composed.
1445 (quail-map-definition): If DEF is t, treat it as nil.
1446 (quail-delete-last-char): Delete the quail region.
1447 (quail-show-translations): Don't show list of translations if the
1448 quail package is deterministic.
1449 (quail-completion-max-depth): New variable.
1450 (quail-completion-1): Pay attention to the above variable. Fix
1451 for the case that a translation is a function.
1452 (quail-map-from-table, quail-map-from-table-1,
1453 quail-map-from-table-2): New functions.
1454 (quail-lookup-map-and-concat): New function
1455
1456 * language/devan-util.el: Mostly rewritten.
1457
1458 * language/lao.el: Register lao-composition-function in
1459 composition-function-table.
1460
1461 * language/lao-util.el: Mostly rewritten.
1462
1463 * language/thai.el: Register thai-composition-function in
1464 composition-function-table.
1465 (thai-tis620): Delete `pre-write-conversion' property.
1466
1467 * language/thai-util.el: (thai-category-table): Make it by
1468 make-category-table.
1469 (thai-composition-pattern): New variable.
1470 (thai-compose-region, thai-compose-string): Use
1471 with-category-table.
1472 (thai-post-read-conversion): Just call thai-compose-region.
1473 (thai-pre-write-conversion): Deleted.
1474 (thai-composition-function): New funciton.
1475
1476 * language/tibet-util.el: Most functions rewritten.
1477 (tibetan-char-p): Renamed from tibetan-char-examin.
1478 (tibetan-composable-examin) (tibetan-complete-char-examin)
1479 (tibetan-vertical-stacking) (tibetan-composition): Deleted.
1480 (tibetan-add-components): New function.
1481 (tibetan-composition-function): New function.
1482
1483 * language/tibetan.el: Register tibetan-composition-function in
1484 composition-function-table.
1485 (tibetan-composable-pattern): New variable.
1486 (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
1487 (tibetan-precomposition-rule-alist): Move punctuations to
1488 tibetan-punctuation-transcription-alist and
1489 tibetan-obsolete-glyphs.
1490 (tibetan-punctuation-transcription-alist): New variable.
1491 (tibetan-obsolete-glyphs): New variable.
1492 (tibetan-regexp): Improve the initialization code.
1493
1494 * textmodes/fill.el (fill-find-break-point): Delete codes for
1495 composite characters.
1496 (fill-region-as-paragraph): Likewise.
1497
1498 1999-12-14 Gerd Moellmann <gerd@gnu.org>
1499
1500 * international/mule-cmds.el (default-input-method): Specify
1501 that it should be set after current-language-environment.
1502
1503 * custom.el (custom-handle-keyword): Add :set-after.
1504 (custom-add-dependencies): New function.
1505 (custom-set-variables): Take dependencies between args into
1506 account.
1507
1508 * battery.el (battery): Doc fix.
1509
1510 1999-12-12 Gerd Moellmann <gerd@gnu.org>
1511
1512 * progmodes/cc-make.el: Removed.
1513
1514 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1515
1516 * Release of cc-mode 5.26
1517
1518 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1519
1520 * cc-cmds.el (c-forward-conditional): Handle an arbitrary
1521 target depth. Optionally count #else lines as clause limits,
1522 as suggested by don provan <provan@lucent.com>. #elif
1523 handling fixed.
1524
1525 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
1526 (c-down-conditional-with-else): New commands that uses the
1527 added functionality in `c-forward-conditional'.
1528
1529 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1530
1531 * cc-align.el (c-lineup-comment): Preserve the alignment with
1532 a comment on the previous line instead of preserving the
1533 comment-column.
1534
1535 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1536
1537 * Fixes to IDL mode after input from Eric Eide
1538 <eeide@cs.utah.edu>:
1539 * cc-engine.el (c-beginning-of-statement-1): Allow
1540 `c-conditional-key' to be nil, for the benefit of IDL mode.
1541 * cc-engine.el (c-guess-basic-syntax): Ditto.
1542 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class'
1543 but do match CORBA 2.3 `valuetype'.
1544 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil
1545 for IDL.
1546 * cc-langs.el (c-IDL-conditional-key): New defconst. Should
1547 be nil for IDL.
1548 * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
1549 Like C++.
1550 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also,
1551 set `c-method-key' and `c-baseclass-key' to nil.
1552
1553 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1554
1555 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
1556 with nonhanging open braces.
1557
1558 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1559
1560 * cc-align.el: Added docstrings to all lineup functions.
1561
1562 * cc-align.el (c-lineup-java-throws): Handle a hanging throws
1563 keyword.
1564
1565 * cc-align.el (c-lineup-C-comments): Handle free form text
1566 comments. Use c-comment-prefix-regexp and comment-start-skip
1567 instead of hardcoded regexps.
1568
1569 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1570
1571 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
1572 behavior and return value as documented.
1573
1574 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1575
1576 * Changes for new style variable init system:
1577 * cc-langs.el (c-common-init): Dito.
1578 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
1579 now customizable.
1580 * cc-vars.el: Style variables may now take a value
1581 'set-from-style to make them take their value from the style
1582 system. This value is now the default on all these variables.
1583 * cc-vars.el (c-valid-offset): New function to verify a
1584 syntactic symbol offset setting.
1585 * cc-vars.el (c-offsets-alist): Variable moved from
1586 cc-styles.el since it's now customizable in a similar way to
1587 the other style variables.
1588 * cc-vars.el (c-old-style-variable-behavior): New variable to
1589 revert to the old style init behavior.
1590
1591 * cc-vars.el (c-file-style, c-file-offsets): Made always
1592 buffer local.
1593
1594 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
1595 the throws clause that might follow the function prototype in
1596 C++.
1597
1598 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1599
1600 * cc-defs.el (c-beginning-of-macro): Fixed bug where point
1601 could move forward for macros that doesn't start in column 0.
1602
1603 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1604
1605 * cc-align.el (c-indent-multi-line-block,
1606 c-lineup-whitesmith-in-block): Two new lineup functions for
1607 use in whitesmith style.
1608
1609 * cc-styles.el (c-style-alist): More fixes to whitesmith
1610 style. It should now handle all different braces uniformly in
1611 both hanging and non-hanging cases.
1612
1613 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1614
1615 * cc-cmds.el (c-indent-exp): Use a marker to save point to
1616 make it stay in the same position relative to the surrounding
1617 text.
1618
1619 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
1620 when adaptive-fill-mode doesn't manage to get it correct.
1621
1622 * cc-menus.el (cc-imenu-java-generic-expression): Handle types
1623 with dotted notation, e.g. foo.bar.Gnu.
1624
1625 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
1626 within unwind-protect (previously only some were wrapped so it
1627 would be possible to register mode initialization when full
1628 initialization did not finish).
1629
1630 * cc-styles.el (c-style-alist): Corrected the brace placement
1631 in the whitesmith style. Thanks to Sean Luke
1632 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith
1633 styles with consistent brace placement for all constructs.
1634
1635 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1636
1637 * cc-cmds.el (c-context-line-break): Continue C++ comments too
1638 when point is in the middle of them.
1639
1640 * cc-cmds.el: Line breaking and paragraph filling code
1641 rewritten:
1642 (c-guess-fill-prefix): New function that uses various
1643 heuristics to guess the comment prefix.
1644 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
1645 It now assumes adaptive filling is active to preserve the line
1646 prefix inside comments.
1647 (c-indent-new-comment-line): Replacement for the now
1648 obsolete `c-comment-line-break-function' that uses
1649 `c-guess-fill-prefix' when appropriate. It now observes the
1650 setting of `comment-multi-line', which has effect in C-style
1651 block comments.
1652
1653 * cc-cmds.el (c-context-line-break): New function intended to
1654 be put on RET. It's essentially `newline-and-indent', but
1655 continues C block comments with the appropriate line prefix.
1656
1657 * cc-cmds.el (c-do-auto-fill): New function put on
1658 `normal-auto-fill-function' to implement the
1659 `c-ignore-auto-fill' variable.
1660
1661 * cc-cmds.el (c-beginning-of-statement): Use
1662 `c-comment-prefix-regexp' to avoid ending up inside the
1663 comment prefix. Better handling of comment starters and
1664 enders. Catch comments better when traversing code. Stop at
1665 preprocessor directives.
1666
1667 * cc-defs.el (c-forward-comment): New subst to hide platform
1668 dependent quirks in `forward-comment'.
1669
1670 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
1671 argument.
1672 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
1673 arguments. Activate this function by default when
1674 `parse-partial-sexp' supports it (currently Emacs 20.x).
1675
1676 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
1677 on the comment opener to make constants usable as lineup
1678 arguments.
1679
1680 * cc-align.el (c-lineup-C-comments): Fixes to handle the
1681 changed anchor position in the `c' syntactic symbol. Handle
1682 more than stars in the comment prefix; use the new variable
1683 `c-comment-prefix-regexp'. Don't indent text not preceded by
1684 a comment prefix to the right of the comment opener if it's
1685 long.
1686
1687 * cc-langs.el: Fixes to mode initialization for new line
1688 breaking and paragraph filling method. Adaptive fill mode is
1689 now activated at startup instead of deactivated. The
1690 variables used for adaptive filling and paragraph movement are
1691 also changed to incorporate the value of
1692 `c-comment-prefix-regexp'. `substitute-key-definition' is
1693 used to override some functions in the global map instead of
1694 overriding their default bindings.
1695
1696 * cc-mode.el (java-mode): Modify `paragraph-start' for the
1697 javadoc markup at mode init.
1698
1699 * cc-mode.el (c-setup-filladapt): A new convenience function
1700 to configure Kyle E. Jones' Filladapt mode for CC Mode. This
1701 function is intended to be used explicitly by the end user
1702 only.
1703
1704 * cc-vars.el (c-comment-prefix-regexp): New variable used to
1705 recognize the comment fill prefix inside comments.
1706 (c-block-comment-prefix): New name for
1707 `c-comment-contiuation-stars', which is now obsolete. It's
1708 generalized to handle any character sequence.
1709 (c-ignore-auto-fill): New variable used to selectively disable
1710 Auto Fill mode in specific contexts.
1711
1712 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1713
1714 * cc-cmds.el (c-comment-indent): Leave at least one space
1715 between the comment and the last nonblank character in the
1716 case where we look at the indentation of the comment on the
1717 previous line (case 4).
1718
1719 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
1720 list of characters that may start a statement (it's a sort of
1721 prefix operator in Pike, and isn't used at all in any of the
1722 other languages).
1723
1724 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1725
1726 * cc-engine.el (c-guess-basic-syntax): Report brace list opens
1727 inside continued statements as statement-cont instead of
1728 brace-list-open. The reason is that one normally adjusts
1729 brace-list-open for brace lists as top-level constructs, and
1730 brace lists inside statements is a completely different
1731 context. Case 10B.2 changed. Also changed (the somewhat
1732 esoteric) case 9A to cope with this.
1733
1734 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1735
1736 * cc-cmds.el (c-electric-brace): Added electric handling of
1737 the open brace for brace-elseif-brace.
1738
1739 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1740
1741 * cc-defs.el (c-with-syntax-table): New macro to easily switch
1742 syntax tables temporarily.
1743
1744 * cc-engine.el (c-guess-basic-syntax): Handle template and
1745 member init argument lists split over several lines. Case 5D
1746 changed.
1747
1748 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
1749 @throws introduced in Javadoc 1.2.
1750
1751 * cc-menus.el (cc-imenu-java-generic-expression): Applied
1752 patch from RMS to avoid infinite backtracking.
1753
1754 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1755
1756 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
1757 by [ ].
1758
1759 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1760
1761 * cc-align.el (c-lineup-dont-change): Compensate properly for
1762 the column in langelem.
1763
1764 * cc-engine.el (c-syntactic-information-on-region): New
1765 function to help debugging the syntactic analysis.
1766
1767 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1768
1769 * cc-align.el (c-lineup-template-args): Handle nested template
1770 arglists.
1771
1772 * cc-langs.el (c++-template-syntax-table): New syntax table
1773 that makes `<' and `>' parenthesis characters, which is useful
1774 to switch to temporarily when analyzing template arglists.
1775
1776 * cc-styles.el: Changed default alignment of labels in the
1777 java style to conform to the examples in the Java Language
1778 Specification.
1779
1780 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
1781 by default.
1782
1783 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1784
1785 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
1786 immediately before the closing paren in an arglist, so don't
1787 check that in Pike mode. Case 7A changed.
1788
1789 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1790
1791 * cc-cmds.el (c-indent-region): Fixed bug where comment-only
1792 lines were ignored under certain conditions.
1793
1794 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1795
1796 * cc-align.el (c-lineup-template-args): New function for
1797 aligning continued template argument lists.
1798
1799 * cc-engine.el (c-guess-basic-syntax): Fix for member init
1800 lists containing function arglists split over several lines.
1801 Case 5D.1 changed.
1802
1803 * cc-engine.el (c-guess-basic-syntax): Fixed bug where
1804 template-args-cont didn't get recognized when the first
1805 arglist opener line doesn't contain a template argument. New
1806 case 5K.
1807
1808 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1809
1810 * cc-defs.el (c-point): Changed from subst to macro for
1811 efficiency.
1812 (c-beginning-of-defun-1, c-end-of-defun-1): New
1813 beginning-of-defun/end-of-defun wrappers separated from
1814 c-point.
1815
1816 * cc-menus.el (imenu-generic-expression,
1817 imenu-case-fold-search, imenu-progress-message): Dummy
1818 definitions to avoid compiler warnings if imenu can't be
1819 loaded.
1820 * cc-menus.el (cc-imenu-init): New function called at mode
1821 init.
1822 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
1823 imenu initializations to cc-imenu-init.
1824
1825 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1826
1827 * cc-engine.el (c-guess-basic-syntax): Slightly better check
1828 for lambda-intro-cont in Pike mode. Case 6 changed.
1829
1830 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
1831 anything following "new Foo()" was considered an anonymous
1832 class body in Java mode.
1833
1834 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
1835
1836 * cc-cmds.el (c-comment-line-break-function): When breaking in
1837 a string, don't insert a new line.
1838
1839 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
1840
1841 * cc-engine.el (c-at-toplevel-p): New interface function which
1842 returns information useful to add-on authors. It tells you
1843 whether you're at a toplevel statement or not.
1844
1845 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
1846
1847 * cc-cmds.el (c-comment-line-break-function): It is possible
1848 that forward-line does not land us at the bol, say if we're on
1849 the last line in a file. In that case, do a
1850 back-to-indentation instead of a forward-comment -1.
1851
1852 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1853
1854 * cc-engine.el (c-beginning-of-statement-1): Don't catch
1855 "default:" as normal label in case 4.
1856
1857 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1858
1859 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
1860 recognize continued bitfield declarations. Case 5D.1 changed.
1861 * cc-langs.el: New variable c-bitfield-key.
1862 * cc-mode.el: New variable c-bitfield-key.
1863
1864 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1865
1866 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
1867 anonymous array expressions (i.e. "new Foo[] {.. bracelist
1868 ..}").
1869
1870 1999-12-12 Dave Love <fx@gnu.org>
1871
1872 * mail/footnote.el: Require cl when compiling. Don't autoload
1873 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays.
1874 (footnote-insert-text-marker, Footnote-insert-pointer-marker):
1875 Avoid `acons'.
1876 (footnote-mode-line-string, Footnote-add-footnote): Remove
1877 autoload cookie.
1878
1879 1999-12-12 Richard Sharman <rsharman@pobox.com>
1880
1881 * sh-script.el: Fix for when font-lock mode is active.
1882 (sh-font-lock-unfontify-region-function): New function.
1883
1884 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
1885
1886 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
1887 if start-process is not bound, since Ispell now supports such
1888 platforms as well.
1889
1890 1999-12-12 Gerd Moellmann <gerd@gnu.org>
1891
1892 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
1893 rmail-summary-goto-msg.
1894
1895 * files.el (after-find-file): Fix previous change.
1896
1897 1999-12-11 Dave Love <fx@gnu.org>
1898
1899 * help.el (where-is): Use `commandp' as predicate for
1900 `completing-read'
1901
1902 1999-12-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1903
1904 * cus-edit.el (custom-save-delete): Delete all occurrences,
1905 leave point where the first occurrence was.
1906 (custom-save-faces): Insert a newline at the end of the comment.
1907 Avoid a double newline there.
1908 If final closeparen is at bol, put a space before it.
1909 (custom-save-variables): Likewise.
1910 (custom-file): Doc fix.
1911
1912 1999-12-10 Gerd Moellmann <gerd@gnu.org>
1913
1914 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
1915 regexp matching image and audio files.
1916
1917 1999-12-09 Dave Love <fx@gnu.org>
1918
1919 * mail/footnote.el: New file.
1920
1921 1999-12-09 Gerd Moellmann <gerd@gnu.org>
1922
1923 * files.el (after-find-file): Use auto-save-visited-file-name if
1924 set.
1925
1926 * mail/feedmail.el (feedmail-find-eoh): Take
1927 feedmail-queue-alternative-mail-header-separator into account.
1928
1929 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
1930
1931 * smerge-mode.el: New file.
1932
1933 * font-lock.el (font-lock-multiline): New variable.
1934 (font-lock-add-keywords): Rename `major-mode' into `mode'.
1935 (font-lock-remove-keywords): Added a dummy `mode' argument for
1936 potential future support.
1937 (font-lock-fontify-anchored-keywords,
1938 (font-lock-fontify-keywords-region): Only handle multiline strings
1939 if necessary (avoids a pathological behavior in (f.ex) diff-mode).
1940
1941 1999-12-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1942
1943 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
1944
1945 * dired-aux.el (dired-insert-subdir): Add autoload cookie.
1946
1947 1999-12-07 Dave Love <fx@gnu.org>
1948
1949 * help.el (view-emacs-problems): New command, bound to C-h P.
1950
1951 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
1952
1953 1999-12-07 Stefan Monnier <monnier@cs.yale.edu>
1954
1955 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
1956 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
1957 New code to support the minor mode version.
1958 (diff-recenter): New function.
1959 (diff-next-hunk, diff-next-file): Use it.
1960 (diff-remembered-files-alist): New var.
1961 (diff-merge-strings): New function.
1962 (diff-find-file-name): Make it smarter and use the user's input more.
1963 (diff-mode): Cosmetic changes.
1964
1965 * files.el (save-some-buffers): Turn EXITING into the more general
1966 PRED argument to allow specifying a subset of buffers.
1967
1968 * simple.el (kill-region): Use the new `delete-and-extract-region'
1969 rather than the undo log (which is incorrect with *-change-functions).
1970
1971 * font-lock.el (font-lock-default-fontify-region): Fix subtle
1972 off-by-one problem that could force re-fontifying the whole buffer.
1973 (font-lock-remove-keywords): New function.
1974 (font-lock-add-keywords): Use the new function to ensure idempotence.
1975
1976 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu>
1977
1978 * viper-cmd.el (viper-minibuffer-standard-hook,
1979 viper-minibuffer-real-start): Mew functions.
1980 (viper-read-string-with-history,viper-file-add-suffix,
1981 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
1982 change in the status of the minibuffer prompt.
1983
1984 1999-12-06 Gerd Moellmann <gerd@gnu.org>
1985
1986 * comint.el (comint-redirect-results-list)
1987 (comint-redirect-results-list-from-process): Remove interactive
1988 spec.
1989
1990 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
1991
1992 * info.el (info-node, info-menu-5, info-xref): Define colors for
1993 Info faces if the display supports them.
1994
1995 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
1996
1997 Changes for automatic remapping of X colors on terminal frames:
1998
1999 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
2000 term-setup-hook. Call msdos-remember-default-colors and
2001 msdos-handle-reverse-video.
2002 (msdos-face-setup): Parts of code moved to
2003 msdos-setup-initial-frame.
2004 (msdos-handle-reverse-video): New function, modeled after
2005 x-handle-reverse-video.
2006 (make-msdos-frame): Don't use initial-frame-alist and
2007 default-frame-alist. Call msdos-handle-reverse-video.
2008 (msdos-color-aliases): Remove.
2009 (msdos-color-translate, msdos-approximate-color): Remove.
2010 (msdos-color-values): Use 16-bit RGB values. RGB values updated
2011 for better approximation of X colors.
2012 (msdos-face-setup): Call tty-color-clear. Remove code that sets
2013 up tty-color-alist (it is now on startup.el).
2014 (x-display-color-p, x-color-defined-p, x-color-values,
2015 x-defined-colors, face-color-supported-p, face-color-gray-p):
2016 Remove.
2017
2018 * facemenu.el (facemenu-read-color, list-colors-display): Use
2019 defined-colors for all frame types.
2020 (facemenu-color-equal): Use color-values for all frame types.
2021
2022 * faces.el (read-face-attribute): For :foreground and :background
2023 attributes and frames on character terminals, translate the color
2024 to the closest supported one before looking it up in the list of
2025 valid values.
2026 (face-valid-attribute-values): Call defined-colors for all types
2027 of frames.
2028 (defined-colors, color-defined-p, color-values, display-color-p):
2029 New finctions.
2030 (x-defined-colors, x-color-defined-p, x-color-values,
2031 x-display-color-p): Aliases for the above.
2032
2033 * startup.el (command-line): Register terminal colors for frame
2034 types other than x and w32, but only if the terminal supports
2035 colors. Call tty-color-define instead of face-register-tty-color.
2036
2037 * term/x-win.el (xw-defined-colors): Renamed from
2038 x-defined-colors.
2039 * term/w32-win.el (xw-defined-colors): Likewise.
2040
2041 * term/tty-colors.el: New file.
2042 * loadup.el: Load term/tty-colors.
2043
2044 1999-12-06 Dave Love <fx@gnu.org>
2045
2046 * ffap.el: Autoload the ffap alias directly.
2047
2048 1999-12-06 Inge Frick <inge@nada.kth.se>
2049
2050 * dired-aux.el (dired-do-shell-command): Changed documentation.
2051 (dired-shell-stuff-it): A `?' in COMMAND has now the same
2052 meaning as `*'.
2053
2054 1999-12-06 Gerd Moellmann <gerd@gnu.org>
2055
2056 * simple.el (insert-buffer): Doc fix.
2057
2058 * apropos.el (apropos-mode): Add autoload cookie.
2059
2060 1999-12-06 Sam Steingold <sds@goems.com>
2061
2062 * progmodes/etags.el (etags-tags-completion-table): Modified the
2063 regexp to allow for the CL symbols starting with `+*'.
2064 (tags-completion-table): Doc fix (it's an obarray, not an alist).
2065 (tags-completion-table, tags-recognize-empty-tags-table): Remove
2066 `function' quoting lambda.
2067 (tags-with-face): New macro.
2068 (list-tags, tags-apropos): Use it.
2069 (tags-apropos-additional-actions): New user option.
2070 (etags-tags-apropos-additional): Use it.
2071 (tags-apropos): Call etags-tags-apropos-additional.
2072 (tags-apropos-verbose): New user option.
2073 (etags-tags-apropos): Use it.
2074 (visit-tags-table-buffer, next-file): Use `unless'.
2075 (recognize-empty-tags-table): Renamed to
2076 tags-recognize-empty-tags-table.
2077 (complete-tag): Call tags-complete-tag bypassing try-completion.
2078
2079 1999-12-06 Kenichi Handa <handa@etl.go.jp>
2080
2081 * international/mule.el (set-buffer-file-coding-system): Docstring
2082 modified.
2083
2084 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
2085
2086 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
2087 using the hideshow package.
2088 (hs-special-modes-alist): Added entry for bibtex to allow the use
2089 of the hideshow package.
2090 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
2091 not longer provided by bibtex.el directly. Instead the hideshow
2092 package should be used.
2093 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
2094 references to bibtex-hide-entry-bodies.
2095
2096 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
2097
2098 * textmodes/bibtex.el: Copyright notice is up to date. Moved
2099 maintainer information closer to the beginning of the bibtex.el
2100 file.
2101 (bibtex-maintainer-salutation): New constant.
2102 (bibtex-version): New constant.
2103 (bibtex-submit-bug-report): Use bibtex-version and
2104 bibtex-maintainer-salutation.
2105 (bibtex-entry-field-alist): Made booktitle field optional for
2106 @inproceedings entries when crossreferenced.
2107 (bibtex-entry-field-alist): Added booktitle field to proceedings
2108 entry type (for cross referencing). Thanks to Wagner Toledo Correa
2109 for the suggestion.
2110 (bibtex-string-file-path): Fixed typo.
2111
2112 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
2113
2114 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
2115 for reftex.el.
2116 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
2117 to menu.
2118
2119 1999-12-04 Dave Love <fx@gnu.org>
2120
2121 * delsel.el: Revert previous change -- region is significant to
2122 skeleton.
2123
2124 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu>
2125
2126 * viper-cmd.el (viper-change-state): Use
2127 viper-ESC-moves-cursor-back to decide whether to move the cursor
2128 back.
2129
2130 1999-12-03 Kenichi Handa <handa@mule.m17n.org>
2131
2132 * international/mule-util.el (truncate-string-to-width): Docsting
2133 fixed.
2134
2135 1999-12-02 Stefan Monnier <monnier@cs.yale.edu>
2136
2137 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
2138 use of `cond'.
2139 (lm-with-file): Move all the find-file...kill-buffer stuff into
2140 this macro. Make it use `find-file-noselect' and make it kill
2141 the buffer only if it wasn't already displayed somewhere.
2142 (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
2143 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
2144 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
2145 (lm-commentary): Fix to handle the case when the change log is
2146 at the end of the file.
2147
2148 1999-12-02 Kenichi Handa <handa@etl.go.jp>
2149
2150 * international/mule.el (charsetp): Fix typo in docstring.
2151
2152 * international/mule-diag.el (list-coding-categories): Fix typo;
2153 automatic -> autoload.
2154
2155 1999-12-02 Gerd Moellmann <gerd@gnu.org>
2156
2157 * vc.el (vc-update-change-log): Look for rcs2log under
2158 exec-directory.
2159
2160 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
2161 outline-regexp, add outline-level.
2162 (lisp-outline-level): New.
2163
2164 * calendar/appt.el (appt-convert-time): Handle "12:MMam",
2165 remove extraneous string-match.
2166
2167 * finder.el (finder-commentary): Activate Finder mode.
2168
2169 1999-12-01 Anders Lindgren <andersl@andersl.com>
2170
2171 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
2172 off when reverting buffers that contained mode specifiers.
2173 `revert-buffer' is now called with non-nil PRESERVE-MODES
2174 argument.
2175
2176 1999-12-01 Dave Love <fx@gnu.org>
2177
2178 * delsel.el: Grok skeleton-pair-insert-maybe.
2179
2180 1999-11-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2181
2182 * progmodes/cperl-mode.el (cperl-under-as-char):
2183 Use nil as default.
2184
2185 1999-11-30 Gerd Moellmann <gerd@gnu.org>
2186
2187 * speedbar.el (toplevel): Remove compatibility code for Emacs
2188 versions without custom.el.
2189
2190 1999-11-30 Dave Love <fx@gnu.org>
2191
2192 * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
2193
2194 * autoinsert.el: Minor doc fixes.
2195 (auto-insert): Return nil.
2196
2197 * faces.el (set-face-documentation): Purecopy STRING.
2198
2199 1999-11-29 Dave Love <fx@gnu.org>
2200
2201 * derived.el: Doc fixes, remove old backquote syntax.
2202
2203 * cus-edit.el (custom-save-variables, custom-save-faces): Write a
2204 comment warning about editing.
2205
2206 * help.el (help-mode-hook): Define.
2207
2208 1999-11-29 Gerd Moellmann <gerd@gnu.org>
2209
2210 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
2211 invalid translation of old-style backquote syntax to new syntax.
2212
2213 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
2214
2215 * Makefile (DONTCOMPILE): Add term/internal.el.
2216
2217 1999-11-26 Dave Love <fx@gnu.org>
2218
2219 * comint.el: Fix last change.
2220
2221 * emacs-lisp/advice.el: Fix last change.
2222
2223 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2224
2225 * cus-edit.el (Custom-reset-standard): Doc fix.
2226 (custom-variable-reset-standard): Doc fix.
2227 (custom-face-reset-standard): Doc fix.
2228 (custom-face-menu): "Reset to Standard" => "Erase Customization".
2229 (custom-variable-menu): Likewise.
2230 (custom-reset-menu): Likewise.
2231 (custom-buffer-create-internal): Likewise.
2232
2233 1999-11-26 Dave Love <fx@gnu.org>
2234
2235 * progmodes/make-mode.el (makefile-mode-hook): Customize.
2236
2237 * font-lock.el: Doc fixes.
2238
2239 * menu-bar.el (menu-bar-mode): Customize.
2240
2241 * cus-start.el: Add use-dialog-box.
2242
2243 * add-log.el (change-log-mode-hook): Customize.
2244 (add-log-current-defun): Use
2245 fortran-{beginning,end}-of-subprogram.
2246
2247 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2248
2249 * emacs-lisp/advice.el: Many doc fixes.
2250
2251 * comint.el (comint-preoutput-filter-functions): Doc fix.
2252
2253 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2254
2255 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2256 Improve messages for capitalization of arg names,
2257 for flag variables, for t and nil, for imperatives.
2258 Call them imperatives rather than infinitives sans "to".
2259 (checkdoc-common-verbs-wrong-voice): Add "moves".
2260 (checkdoc-message-text-engine): Improve messages for y-or-n-p.
2261
2262 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
2263 Don't convert comments from 3-semicolon to 2-semicolon.
2264 That is a matter of style.
2265 (checkdoc-triple-semi-comment-check-flag): Variable deleted.
2266 (checkdoc-comments): Don't bind that variable.
2267
2268 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2269
2270 * files.el (write-file-hooks): Doc fix.
2271
2272 1999-11-26 Gerd Moellmann <gerd@gnu.org>
2273
2274 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
2275
2276 1999-11-25 Dave Love <fx@gnu.org>
2277
2278 * hippie-exp.el: Require comint when compiling.
2279 (hippie-expand): Add :links.
2280 (hippie-expand-try-functions-list): Customize.
2281
2282 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
2283
2284 * viper*el: Replaced old-style backquotes.
2285
2286 * ediff*el: Replaced old-style backquotes.
2287
2288 * ediff-merge
2289 (ediff-looks-like-combined-merge,ediff-get-combined-region):
2290 Changed to support the new format for ediff-combination-pattern.
2291
2292 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
2293 Changed to support the new format for ediff-combination-pattern.
2294
2295 1999-11-24 Dave Love <fx@gnu.org>
2296
2297 * custom.el (custom-declare-group): Purecopy DOC.
2298 (custom-handle-keyword): Purecopy VALUE.
2299 (custom-add-link): Purecopy WIDGET.
2300 (custom-add-version): Purecopy VERSION.
2301 (custom-add-load): Purecopy LOAD.
2302
2303 * cus-face.el (custom-declare-face): Purecopy DOC.
2304
2305 * info.el:
2306 (Info-build-node-completions, Info-search, Info-follow-reference)
2307 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
2308 (Info-find-emacs-command-nodes): Avoid properties on matched text
2309 which may appear in minibuffer.
2310
2311 1999-11-24 Gerd Moellmann <gerd@gnu.org>
2312
2313 * locate.el (locate-with-filter): Doc fix.
2314
2315 1999-11-24 Alex Schroeder <alex@gnu.org>
2316
2317 * sql.el (sql-find-sqli-buffer): New function.
2318 (sql-set-sqli-buffer-generally): New function.
2319 (sql-set-sqli-buffer): Better checking of new-buffer.
2320 (sql-copy-column): Add comma after INTO clause, too.
2321
2322 1999-11-24 Alex Schroeder <alex@gnu.org>
2323
2324 * sql.el (sql-imenu-generic-expression): New, used to set
2325 imenu-generic-expression.
2326
2327 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
2328 setting font-lock-defaults' SYNTAX-ALIST. Set
2329 imenu-generic-expression, imenu-case-fold-search, and
2330 imenu-syntax-alist.
2331
2332 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
2333 and 46 when setting font-lock-defaults' SYNTAX-ALIST.
2334
2335 1999-11-23 Andrew Innes <andrewi@gnu.org>
2336
2337 * w32-win.el (w32-drag-n-drop): Load files in current window, if
2338 drop coords aren't over a specific window.
2339
2340 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2341
2342 * ps-print.el: Define mule funs without checking if mule package is
2343 loaded.
2344 (ps-print-version): New version number (5.0.1).
2345 (ps-header-dirpart): Now uses abbreviate-file-name.
2346
2347 1999-11-23 Dave Love <fx@gnu.org>
2348
2349 * progmodes/fortran.el (fortran-comment-line-start): Renamed from
2350 comment-line-start.
2351 (fortran-comment-line-start-skip): Renamed from
2352 comment-line-start-skip.
2353 (fortran-mode-map): Use renamed functions. Add manual and custom
2354 entries to menu.
2355 (fortran-mode-hook): Customize.
2356 (fortran-comment-indent-function): Renamed from
2357 fortran-comment-hook.
2358 (delete-horizontal-regexp): Function deleted.
2359 (fortran-electric-line-number): Simplified.
2360 (fortran-beginning-of-subprogram): Renamed from
2361 beginning-of-fortran-subprogram.
2362 (fortran-end-of-subprogram): Renamed from
2363 end-of-fortran-subprogram.
2364 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
2365 (fortran-previous-statement, fortran-next-statement): Simplified.
2366 (fortran-blink-match): New function.
2367 (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
2368 (fortran-indent-to-column): Don't use delete-horizontal-regexp.
2369 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
2370 line-end-position.
2371 (fortran-fill): No longer interactive. Simplified.
2372 (fortran-break-line): Simplified.
2373 (fortran-analyze-file-format): Use char-after, not looking-at.
2374
2375 * emacs-lisp/find-func.el (find-function-regexp): Use
2376 `define-minor-mode' after easy-menu change.
2377
2378 1999-11-23 Gerd Moellmann <gerd@gnu.org>
2379
2380 * comint.el: Add redirection.from active comint buffers into
2381 another buffer. Written by Peter Breton.
2382
2383 1999-11-23 Stefan Monnier <monnier@cs.yale.edu>
2384
2385 * emacs-lisp/autoload.el (make-autoload): Recognize the new
2386 `define-minor-mode'.
2387 (define-minor-mode): Specify `doc-string-elt'.
2388
2389 * emacs-lisp/easy-mmode.el: Changed maintainer.
2390 (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
2391 Use defcustom for the hooks; Improve the auto-generated docstrings.
2392 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
2393 (define-minor-mode): Add BODY arg; Only declare the keymap if
2394 provided; Improve the auto-generated docstrings.
2395
2396 1999-11-22 Gerd Moellmann <gerd@gnu.org>
2397
2398 * textmodes/text-mode.el (text-mode): Construct paragraph-start so
2399 that the leading `^' is at the start. This is necessary because
2400 paragraphs.el tries to remove anchors, but can find them only if
2401 they are the first character.
2402
2403 * progmodes/antlr-mode.el: New file.
2404
2405 * calendar/calendar.el: Fix autoload for
2406 calendar-absolute-from-astro. Add autoload for
2407 calendar-print-astro-day-number.
2408
2409 1999-11-21 Anders Lindgren <andersl@andersl.com>
2410
2411 * follow.el: Use modern backquote syntax. Minor comment update.
2412
2413 1999-11-21 Gerd Moellmann <gerd@gnu.org>
2414
2415 * simple.el (with-syntax-table): Don't switch buffers.
2416
2417 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
2418 progmodes/hideif.el: Use new backquote syntax.
2419
2420 1999-11-21 Ken Manheimer <klm@python.org>
2421
2422 * icomplete.el (icomplete-completions): Use an explicit variable
2423 `icomplete-prospects-length', obviating the need to use an
2424 apparently faulty throw/catch arrangement.
2425
2426 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
2427
2428 * term/internal.el (IT-display-table-setup): Don't overstep
2429 character code 255.
2430
2431 1999-11-20 Kenichi Handa <handa@mule.m17n.org>
2432
2433 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
2434 for the charset chinese-sisheng is 7bit encoding, not 8bit.
2435
2436 1999-11-19 Stefan Monnier <monnier@cs.yale.edu>
2437
2438 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
2439 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
2440
2441 * files.el (auto-mode-alist): Add patterns for diff-mode.
2442
2443 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
2444 to detect an empty prompt.
2445
2446 1999-11-18 Dave Love <fx@gnu.org>
2447
2448 * simple.el (input-mode-8-bit): Fix the customization.
2449
2450 1999-11-18 Gerd Moellmann <gerd@gnu.org>
2451
2452 * international/iso-acc.el (iso-languages): Add more
2453 characters for Portuguese.
2454
2455 * speedbar.el: Clean up comment at the start of the file.
2456 Remove RCS id.
2457
2458 * progmodes/compile.el (compilation-parse-errors): Use
2459 compilation-buffer-p instead of testing major-mode.
2460
2461 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk>
2462
2463 * quickurl.el Added defcustom of quickurl-completion-ignore-case.
2464 (quickurl-ask): completion-ignore-case is set to the value of
2465 quickurl-completion-ignore-case for the duration of the call to
2466 completing-read.
2467
2468 1999-11-18 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2469
2470 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
2471
2472 1999-11-18 Kenichi Handa <handa@etl.go.jp>
2473
2474 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars
2475 instead of ps-print-def.
2476
2477 * ps-print.el: Require ps-vars instead of ps-print-def.
2478
2479 * ps-mule.el: Require ps-vars instead of ps-print-def.
2480
2481 1999-11-17 Gerd Moellmann <gerd@gnu.org>
2482
2483 * simple.el (with-syntax-table): Save buffer explicitly instead of
2484 using save-excursion.
2485
2486 1999-11-16 Gerd Moellmann <gerd@gnu.org>
2487
2488 * mail/supercite.el: New maintainer.
2489
2490 1999-11-16 Reto Zimmermann <reto@synopsys.com>
2491
2492 * progmodes/vhdl-mode.el: Use new backquote syntax.
2493
2494 1999-11-16 Gerd Moellmann <gerd@gnu.org>
2495
2496 * simple.el (with-syntax-table): New.
2497
2498 1999-11-15 Sam Steingold <sds@ksp.com>
2499
2500 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
2501
2502 1999-02-22 Sam Steingold <sds@goems.com>
2503
2504 * goto-addr.el (goto-address-at-mouse,
2505 goto-address-find-address-at-point): Use compose-mail.
2506 (goto-address-mail-method): Removed variable.
2507 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
2508 goto-address-send-using-mail): Removed functions.
2509
2510 1998-11-03 Sam Steingold <sds@goems.com>
2511
2512 * simple.el (backward-delete-char-untabify):
2513 backward-delete-char-untabify-method can be `all' now - to delete
2514 hungrily including newlines.
2515
2516 1999-11-15 Sam Steingold <sds@ksp.com>
2517
2518 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
2519
2520 1999-11-15 Dave Love <fx@gnu.org>
2521
2522 * cus-edit.el (customize-face, customize-face-other-window):
2523 Require match from completing-read.
2524 (custom-buffer-done-function): Default to custom-bury-buffer, not
2525 bury-buffer.
2526
2527 1999-11-15 Gerd Moellmann <gerd@gnu.org>
2528
2529 * mail/rmail.el, iswitchb.el, hippie-exp.el,
2530 progmodes/cperl-mode.el: Use new backquote syntax.
2531
2532 1998-09-14 Michael Ernst <mernst@alum.mit.edu>
2533
2534 * uniquify.el: Use new backquote syntax.
2535
2536 1999-11-14 Markus Rost <rost@ias.edu>
2537
2538 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
2539 as in ispell-local-dictionary-alist.
2540
2541 1999-11-14 Alex Schroeder <alex@gnu.org>
2542
2543 * ansi-color.el (ansi-color-apply): Updated regexps to include
2544 highlighted face.
2545
2546 1999-01-14 Johan Vromans <jvromans@squirrel.nl>
2547
2548 * forms.el (forms--make-format-elt-using-text-properties):
2549 Treat `intangible' differently.
2550
2551 * forms.el: Use new backquote syntax.
2552
2553 1999-11-13 Gerd Moellmann <gerd@gnu.org>
2554
2555 * textmodes/scribe.el (scribe-mode): Doc-fix.
2556
2557 1999-11-13 Peter Breton <pbreton@ne.mediaone.net>
2558
2559 * net-utils.el (run-network-program, net-utils-run-program): Use
2560 the new backquote syntax.
2561 (smbclient-program, smbclient-program-options)
2562 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
2563 variables
2564 (smbclient, smbclient-list-shares): New functions
2565
2566 1999-11-12 Sam Steingold <sds@ksp.com>
2567
2568 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
2569 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
2570 (viper-kbd-buf-definition, viper-kbd-mode-alist)
2571 (viper-kbd-mode-pair, viper-kbd-mode-definition)
2572 (viper-kbd-global-pair, viper-kbd-global-definition):
2573 Use the new backquote syntax.
2574
2575 * emulation/viper-cmd.el (viper-test-com-defun)
2576 (viper-prefix-arg-value, viper-prefix-arg-com):
2577 Use the new backquote syntax.
2578
2579 * emacs-lisp/debug.el (debugger-env-macro):
2580 Use the new backquote syntax.
2581
2582 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
2583 Use the new backquote syntax.
2584
2585 * calendar/calendar.el (calendar-remove-frame-by-deleting):
2586 New user variable.
2587 (calendar-hide-window): Use it.
2588 (increment-calendar-month, calendar-for-loop, calendar-sum):
2589 Use the new backquote syntax.
2590
2591 1999-11-12 Andrew Innes <andrewi@gnu.org>
2592
2593 * select.el (x-set-selection): Call buffer-substring, not
2594 substring. Also fix docstring
2595
2596 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl>
2597
2598 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
2599 of customizable variables to bug report message. Added
2600 system-type to package name in bug report.
2601
2602 1999-11-12 Gerd Moellmann <gerd@gnu.org>
2603
2604 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
2605 to display file names.
2606
2607 1999-11-11 Gerd Moellmann <gerd@gnu.org>
2608
2609 * mwheel.el: Fix copyright notice, don't require 'cl at run time.
2610
2611 * isearch.el: Add lazy-highlighting feature.
2612
2613 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
2614
2615 * progmodes/ps-mode.el (ps-mode-maintainer-address): New
2616 constant.
2617 (ps-mode-submit-bug-report): New function. Entry added to menu.
2618
2619 1999-11-10 William M. Perry <wmperry@aventail.com>
2620
2621 * mwheel.el: New file to support the new style wheeled mice.
2622
2623 1999-11-10 Gerd Moellmann <gerd@gnu.org>
2624
2625 * startup.el (initial-scratch-message): Add ";;" to the front of
2626 lines in the message.
2627
2628 * files.el (file-local-copy): Remove optional BUFFER argument
2629 because that's not used by anything.
2630
2631 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
2632 to-address.
2633
2634 1999-11-08 Markus Rost <rost@ias.edu>
2635
2636 * wid-edit.el (widget-button-click): Wrap with save-excursion
2637 to restore track-mouse in the correct buffer.
2638
2639 1999-11-08 Gerd Moellmann <gerd@gnu.org>
2640
2641 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
2642
2643 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl>
2644
2645 * progmodes/ps-mode.el (ps-mode-print-function): Changed default
2646 lpr-command to "lp" for some system-types. (copied from lpr.el
2647 Emacs version 20.2.1).
2648
2649 1999-11-04 Markus Rost <rost@ias.edu>
2650
2651 * simple.el (comment-region): Strip off white space at end of
2652 comment-start.
2653
2654 1999-11-04 Gerd Moellmann <gerd@gnu.org>
2655
2656 * faces.el (secondary-selection): Fix wrong color name.
2657
2658 1999-11-04 John Tobey <jtobey@epsilondev.com>
2659
2660 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
2661 the default when invoking perldb in a non-Perl buffer, and other
2662 cases involving -e or --.
2663
2664 1999-11-04 Gerd Moellmann <gerd@gnu.org>
2665
2666 * simple.el (previous-matching-history-element)
2667 (next-history-element): Use delete-field instead of erase-field.
2668
2669 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
2670 Use delete-field instead of erase-field.
2671
2672 * faces.el (secondary-selection): Change background to yellow.
2673
2674 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
2675 find the start of the text. Use field-string to read the user
2676 input.
2677
2678 1999-11-03 Gerd Moellmann <gerd@gnu.org>
2679
2680 * faces.el (make-face-bold, make-face-unbold, make-face-italic)
2681 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
2682 for compatibility with old face implementation.
2683
2684 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
2685 Use erase-field instead of erase-buffer.
2686
2687 * frame.el (blink-cursor-mode, blink-cursor-end): Use
2688 internal-show-cursor with new interface.
2689 (blink-cursor-timer-function): New.
2690 (blink-cursor-start): Use blink-cursor-timer-function.
2691
2692 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2693
2694 * calendar.el (redraw-calendar): Move to nearest date before
2695 redrawing.
2696
2697 * diary-lib.el (simple-diary-display): Reset modeline even if
2698 there are no diary entries since the diary buffer may be displayed.
2699
2700 1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2701
2702 * emacs-lisp/debug.el (debug): If noninteractive, display the
2703 backtrace using `message', then exit Emacs.
2704 (debugger-batch-max-lines): New variable.
2705 (debugger-setup-buffer): New subroutine, broken out of `debug'.
2706 Change the messages put at the start, to say that the debugger
2707 was entered.
2708
2709 1999-11-02 Sam Steingold <sds@ksp.com>
2710
2711 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
2712
2713 1999-11-01 John Tobey <jtobey@epsilondev.com>
2714
2715 * gud.el: (gud-perldb-massage-args): Massage correctly in the
2716 presence of perl switches other than "-e".
2717
2718 1999-11-01 Markus Rost <rost@ias.edu>
2719
2720 * dired-x.el (dired-smart-shell-command): Use
2721 shell-command-history as in shell-command.
2722
2723 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2724
2725 * userlock.el (ask-user-about-lock): Doc fix.
2726
2727 * frame.el: Doc fixes.
2728
2729 1999-11-01 Gerd Moellmann <gerd@gnu.org>
2730
2731 * frame.el (blink-cursor-mode): Call internal-show-cursor instead
2732 of show-cursor.
2733 (blink-cursor-start, blink-cursor-end): Ditto.
2734
2735 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
2736
2737 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2738
2739 * window.el (walk-windows): If ALL-FRAMES is a frame,
2740 start on that frame. Use save-selected-window.
2741
2742 1999-11-01 Gerd Moellmann <gerd@gnu.org>
2743
2744 * simple.el (end-of-buffer): Use window-end to find the window end
2745 instead of vertical-motion because this handles variable-height
2746 lines correctly.
2747
2748 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu>
2749
2750 * ediff.el: Version change.
2751
2752 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
2753 make sure you are in a good frame before deleting other
2754 windows.
2755 (ediff-file-checked-in-p): Don't consider CVS
2756 files checked in.
2757 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you
2758 are writing to a newly created empty file.
2759
2760 * ediff-mult.el (ediff-show-session-group-hook): New default.
2761
2762 * ediff-vers.el (ediff-pcl-cvs-view-revision):
2763 First cd to the file directory. reportedly works
2764 better with remote files.
2765
2766 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
2767 Use file-name-nondirectory when passing files to CVS.
2768
2769 * ediff-diff.el (ediff-cmp-options): New variable.
2770 (ediff-same-file-contents): Use ediff-cmp-options.
2771
2772 * ediff-ptch.el (ediff-prompt-for-patch-buffer,
2773 ediff-get-patch-buffer): Use current buffer if it appears to be a
2774 patch.
2775
2776 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
2777 C-g
2778
2779 * viper-util.el (viper-nontrivial-find-file-function): Deleted.
2780 (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
2781 (viper-save-cursor-color,viper-restore-cursor-color):
2782 Improved cursor color handling.
2783 (viper-get-saved-cursor-color-in-replace-mode,
2784 viper-get-saved-cursor-color-in-insert-mode): New functions for
2785 better cursor color handling.
2786
2787 * viper-ex.el (ex-read,ex-edit):
2788 Fixes for correct interpretation of #,%.
2789 (viper-ex): Now works correctly when called from other functions.
2790 (viper-glob-function): New variable.
2791 (viper-ex): Save excursion before doing :global.
2792
2793 * viper-mous.el (viper-counting-clicks-p): Bug fixes.
2794
2795 * viper-cmd.el (viper-post-command-sentinel,
2796 viper-insert-state-post-command-sentinel,
2797 viper-insert-state-pre-command-sentinel): Takes better care of
2798 cursor colors.
2799
2800 * viper.el: Version change.
2801
2802 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com>
2803
2804 * whitespace.el (whitespace-update-modeline): Bugfix to ensure
2805 that the modeline display was updated *only* when
2806 `whitespace-display-in-modeline' was set, not otherwise.
2807
2808 1999-10-30 Gerd Moellmann <gerd@gnu.org>
2809
2810 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
2811 "frac12".
2812
2813 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
2814 ad-activate.
2815
2816 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
2817
2818 * whitespace.el: Test for existence of `defcustom' and `defgroup'
2819 using fboundp instead of assuming that these are not present in
2820 particular flavors of emacs.
2821 (whitespace-version): Update to 2.8
2822 (whitespace-display-in-modeline): Add custom variable to control
2823 displaying the whitespace errors on the modeline based on
2824 suggestion from <klaus.berndl@sdm.de>
2825 (whitespace-buffer): Now returns `t' if unclean and `nil' if
2826 clean, to enable using as a hook function, as suggested by Puneet
2827 Goel <puneet@computer.org>
2828 (whitespace-buffer): Fix a subtle bug that cleaned up only if
2829 quiet was not set, even with whitespace-auto-cleanup set.
2830 (whitespace-mode-line): Now uses less modeline real estate and
2831 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
2832 which is present in the file, and <y> is any type of whitespace
2833 whose check has been suppressed by setting
2834 `whitespace-check-<whitespace-type>' to nil.
2835 (whitespace-unchecked-whitespaces): New function to return the
2836 list of whitespaces for whom checks have been suppressed.
2837 (whitespace-display-unchecked-whitespaces): Renamed to
2838 `whitespace-update-modeline' to reflect its functionality.
2839
2840 1999-10-30 Gerd Moellmann <gerd@gnu.org>
2841
2842 * progmodes/compile.el (compilation-error-regexp-alist):
2843 Undo previous change.
2844
2845 1999-10-28 Dave Love <fx@gnu.org>
2846
2847 * help.el (help-follow): Make arg optional again and really
2848 default to point.
2849
2850 1999-10-28 Gerd Moellmann <gerd@gnu.org>
2851
2852 * paths.el (rmail-file-name): Make it an option.
2853
2854 * progmodes/ada-mode.el, progmodes/ada-prj.el,
2855 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
2856 comment fixes.
2857
2858 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
2859 MIPS Pro 7.3 compiler error message syntax.
2860
2861 1999-10-27 Dave Love <fx@gnu.org>
2862
2863 * progmodes/compile.el: Checkdoc-inspired fixes.
2864
2865 1999-10-27 Gerd Moellmann <gerd@gnu.org>
2866
2867 * lpr.el (print-buffer): Doc-string fix.
2868
2869 1999-10-27 Dave Love <fx@gnu.org>
2870
2871 * emacs-lisp/advice.el: Doc fixes.
2872 (ad-lemacs-p): Removed.
2873 (advice): Add :link to defgroup.
2874
2875 1999-10-27 Kenichi Handa <handa@etl.go.jp>
2876
2877 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
2878 last-coding-system-used by the call of ange-ftp-set-ascii-mode.
2879
2880 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2881
2882 * window.el (walk-windows): If ALL-FRAMES is a frame,
2883 start on that frame. Use save-selected-window.
2884
2885 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2886
2887 * emacs-lisp/advice.el (ad-activate-internal): Renamed from
2888 ad-activate. All callers changed, including those in data.c.
2889 (ad-activate-internal-off): Renamed from ad-activate-off.
2890 All uses changed.
2891 (ad-activate): Renamed from ad-activate-on. All uses changed.
2892 (ad-start-advice, ad-stop-advice, ad-recover-normality):
2893 Alter the definition of ad-activate-internal, not ad-activate.
2894
2895 1999-10-26 Gerd Moellmann <gerd@gnu.org>
2896
2897 * startup.el (command-line-1): Add support for command line
2898 arguments `file' and `execute'. Fix handling of `visit'.
2899
2900 1999-10-26 Kenichi Handa <handa@etl.go.jp>
2901
2902 * international/mule-cmds.el (read-input-method-name): Handle the
2903 case that the arg DEFAULT is symbol.
2904
2905 * international/mule-diag.el (mule-diag): Handle the case that
2906 default-input-method is symbol.
2907
2908 1999-10-26 Gerd Moellmann <gerd@gnu.org>
2909
2910 * textmodes/tildify.el: New file.
2911
2912 1999-10-25 Sam Steingold <sds@ksp.com>
2913
2914 * Makefile (compile-files): Fixed the "tr" strings.
2915 (EMACS): Set to ../src/emacs.
2916
2917 1999-10-25 Gerd Moellmann <gerd@gnu.org>
2918
2919 * info.el (Info-build-node-completions): Add '("*") to the
2920 completion list.
2921
2922 1999-10-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2923
2924 * frame.el (auto-raise-mode): When enabling the mode,
2925 immediately raise the selected frame.
2926
2927 * indent.el (indent-region): Doc fix.
2928
2929 * comint.el (comint-output-filter): Make the Comint buffer current
2930 for the comint-preoutput-filter-functions.
2931
2932 * mail/reporter.el: Doc fix.
2933
2934 1999-10-24 Stephen Eglen <stephen@gnu.org>
2935
2936 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
2937 that Octave lisp files can also run under XEmacs 20.
2938 (require 'custom) added so that files can run under Emacs 19.34.
2939
2940 * iswitchb.el (iswitchb-default-keybindings): No need to use
2941 read-kbd-macro in keybindings.
2942
2943 1999-10-23 Dave Love <fx@gnu.org>
2944
2945 * elide-head.el: New file.
2946
2947 1999-10-23 Gerd Moellmann <gerd@gnu.org>
2948
2949 * Makefile (compile-files, backup-compiled-files): New targets.
2950 (bootstrap, bootstrap-clean): Ditto.
2951
2952 1999-10-22 Paul Eggert <eggert@twinsun.com>
2953
2954 * international/mule-cmds.c (locale-language-names):
2955 Use Latin-1 (not Latin-3) for Afrikaans, Galician.
2956 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
2957 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
2958 Use Latin-8 for Welsh.
2959 Use Latin-1 for English if "en" is explicitly specified.
2960 Use Latin-1 for Scots Gaelic, Tagalog.
2961 Use Latin-1 (not Latin-4) for Greenlandic.
2962 Use Latin-1 (not Latin-2) for Albanian.
2963 (locale-preferred-coding-systems, locale-language-names):
2964 Remove generic ISO 8859 locales; locale-charset-language-names now
2965 does this.
2966 (locale-charset-language-names): New variable.
2967 (set-locale-environment): Use language name specified by
2968 locale-charset-language-names if its charsets disagree with the
2969 language name specified by locale-language-names.
2970
2971 1999-10-22 Dave Love <fx@gnu.org>
2972
2973 * make-mode.el: Minor doc fixes.
2974
2975 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
2976
2977 1999-10-21 Dave Love <fx@gnu.org>
2978
2979 * loadup.el: Add latin-8, latin-9.
2980
2981 1999-10-20 Paul Eggert <eggert@twinsun.com>
2982
2983 * disp-table.el (standard-display-european): Remove undocumented
2984 arg AUTO; no longer used by startup.el. Do not attempt to treat
2985 all non-English language environments as coding system names.
2986 Instead, use the downcased language environment name as a coding
2987 system name if it is one; otherwise, use latin-1.
2988
2989 1999-10-20 Gerd Moellmann <gerd@gnu.org>
2990
2991 * dired.el (dired-move-to-filename-regexp): Fix long comment lines
2992 that were split so that part of the comment appeared as Lisp code.
2993
2994 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2995
2996 * ps-bdf.el: Doc fix.
2997
2998 * ps-print-def.el: New file: common definitions for all parts of
2999 ps-print.
3000 (ps-multibyte-buffer): Moved from ps-mule.
3001
3002 * ps-mule.el: File dependence fix.
3003 (ps-multibyte-buffer): Moved to ps-print-def.
3004
3005 * ps-print.el: Doc fix, better customization.
3006 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
3007 (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
3008 (ps-end-file): Doc fix.
3009 (ps-setup, ps-begin-file): Fun fix.
3010 (postscript): New group.
3011 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
3012 (ps-print-prologue-1): Adjust PostScript programming.
3013 (ps-print): Adjust group hierarchy.
3014 (ps-print-n-up, ps-print-zebra, ps-print-background,
3015 ps-print-printer)
3016 (ps-print-page): New subgroups.
3017 (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
3018 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
3019 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
3020 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
3021 (ps-zebra-stripe-height, ps-print-background-image)
3022 (ps-print-background-text, ps-spool-config): Adjust customization.
3023 (dos-ps-printer): Definition eliminated.
3024
3025 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3026
3027 * ps-mule.el: Doc fix, define functions properly if mule package is
3028 loaded or not.
3029 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
3030 mule package is loaded or not.
3031
3032 * ps-print.el: Doc fix, n-up printing.
3033 (ps-print-version): New version number (5.0).
3034 (ps-page-dimensions-database): Added document media.
3035 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
3036 (ps-page-order, ps-printing-region-p): New vars.
3037 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
3038 funs.
3039 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
3040 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
3041 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
3042 (ps-n-up-xstart, ps-n-up-ystart): New macros.
3043 (ps-print-begin-sheet-hook): New hook.
3044 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
3045 const.
3046 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
3047 (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
3048 (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
3049 (ps-count-lines): Changed to defun.
3050 (ps-header-page): Changed to defsubst, fix fun.
3051 (ps-printing-region): Doc fix, adjust programming code.
3052 (ps-output-boolean, ps-background-pages, ps-background-text)
3053 (ps-background-image, ps-background, ps-get-boundingbox): Adjust
3054 programming code.
3055
3056 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3057
3058 * ps-print.el: Doc fix, duplex and setpagedevice configuration.
3059 (ps-print-version): New version number (4.2).
3060 (ps-spool-config, ps-spool-tumble): New vars.
3061 (ps-print-prologue-1): Changed to defconst, adjust PostScript
3062 programming, new PostScript procedure to handle errors.
3063 (ps-print-prologue-2): Changed to defconst.
3064 (ps-print-duplex-feature): New const: duplex and tumble setting.
3065 (ps-setup, ps-begin-file): Fix funs.
3066 (ps-boolean-capitalized): New fun.
3067
3068 1999-10-19 Stefan Monnier <monnier@cs.yale.edu>
3069
3070 * Makefile (dontcompilefiles): Obsoleted.
3071 (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
3072 (EL): Unused.
3073 (temacs): Removed (unused).
3074 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
3075 version of the file (necessary for the update to work properly).
3076 (autoloads): Force the use of `pwd`/loaddefs.el.
3077 (updates); Redefined in terms of other targets to reduce redundancy.
3078 (.el.elc): New default rule, just in case you want it.
3079 (compile): Use a single invocation of Emacs.
3080 (bootstrap-compile); Unneeded.
3081 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
3082
3083 1999-10-19 Dave Love <fx@gnu.org>
3084
3085 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
3086
3087 1999-10-19 Sam Steingold <sds@ksp.com>
3088
3089 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
3090 comply with the comment.
3091
3092 1999-10-19 Gerd Moellmann <gerd@gnu.org>
3093
3094 * autorevert.el (auto-revert-mode): Make auto-revert-mode
3095 permanent-local.
3096
3097 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl>
3098
3099 * progmodes/ps-mode.el (ps-mode-print-function): Fix default
3100 value: \"lpr\" changed to "lpr"
3101 (ps-mode-version): New constant
3102 (ps-mode-show-version): New function, added key in ps-mode-map
3103 (ps-run-messages): Removed
3104 (ps-run-font-lock-keywords-2): New defcustom variable replacing
3105 ps-run-messages. These keywords now include the value of
3106 ps-run-prompt, making its fontification customizable.
3107 (ps-run-init): Removed \\n from docstring, it is now added when
3108 the value is used
3109 (ps-run-font-lock-keywords-1): Added checking for initial ^ in
3110 ps-run-prompt
3111 (ps-mode): Added ps-run-font-lock-keywords-2 to list of
3112 customizable variables in doc-string (its equivalent
3113 ps-run-messages was missing in previous version of the doc-string)
3114 (ps-run-mode): Simplified assignment to font-lock-defaults, using
3115 symbols only
3116
3117 1999-10-19 Alex Schroeder <alex@gnu.org>
3118
3119 * ansi-color.el: Complete rewrite.
3120
3121 1999-10-19 Paul Eggert <eggert@twinsun.com>
3122
3123 Fix bootstrapping problems.
3124 Use the system locale to specify Emacs locale defaults.
3125
3126 * international/mule-cmds.el (global-map):
3127 Do not use backquote, because that makes a bootstrapping
3128 problem if you need to recompile all Lisp files using interpreted code.
3129 * international/mule.el (charset-id, charset-bytes,
3130 charset-dimension, charset-chars, charset-width,
3131 charset-direction, charset-iso-final-char,
3132 charset-iso-graphic-plane, charset-reverse-charset,
3133 charset-short-name, charset-long-name, charset-description,
3134 charset-plist): Likewise.
3135 * subr.el (save-match-data): Likewise.
3136
3137 * international/mule-cmds.el
3138 (set-display-table-and-terminal-coding-system): New function,
3139 containing code migrated out of set-language-environment.
3140 (set-language-environment, set-locale-environment): Use it.
3141 (locale-translation-file-name): Moved here from startup.el.
3142 (locale-language-names, locale-preferred-coding-systems):
3143 New vars.
3144 (locale-name-match, set-locale-environment): New functions.
3145
3146 * language/japan-util.el (setup-japanese-environment-internal):
3147 Prefer japanese-iso-8bit if the system-type is usg-unix-v.
3148
3149 * startup.el (iso-8859-n-locale-regexp): Remove.
3150 (locale-translation-file-name): Move to mule-cmds.el.
3151 (command-line): Move locale-stuff into set-locale-environment.
3152
3153 1999-10-18 Dave Love <fx@gnu.org>
3154
3155 * abbrev.el (add-abbrev, inverse-add-abbrev)
3156 (expand-region-abbrevs): Remove properties from buffer text.
3157
3158 1999-10-17 Gerd Moellmann <gerd@gnu.org>
3159
3160 * iswitchb.el (iswitchb-exhibit): Extract user-input only
3161 from the mini-buffer, without the prompt.
3162
3163 * simple.el (minibuffer-prompt-end): Return the position
3164 after the prompt, not the position of that last character
3165 of the prompt.
3166
3167 1999-10-17 Miles Bader <miles@gnu.org>
3168
3169 * simple.el: Doc fixes.
3170
3171 1999-10-17 Miles Bader <miles@gnu.org>
3172
3173 * simple.el (previous-matching-history-element, next-history-element):
3174 Change to work correctly even if the point is in the prompt.
3175 (choose-completion-string): Likewise.
3176 (minibuffer-prompt-width): New function (compatibility with old subr).
3177
3178 * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
3179 When constraining the final position to the current field,
3180 don't use the ONLY-IN-LINE mode of constrain-to-field.
3181
3182 1999-10-17 Miles Bader <miles@gnu.org>
3183
3184 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
3185 constrain-to-field.
3186 * textmodes/paragraphs.el (forward-sentence): Likewise.
3187
3188 1999-10-17 Miles Bader <miles@gnu.org>
3189
3190 * simple.el (line-move): Use constrain-to-field to avoid
3191 moving into a prompt.
3192 (previous-complete-history-element): Clarify doc string.
3193 (next-complete-history-element): Likewise.
3194 Use field-beginning instead of point-min.
3195 (next-matching-history-element): Use field-beginning and
3196 erase-field instead of point-min and erase-buffer.
3197 * textmodes/paragraphs.el
3198 (forward-paragraph, forward-sentence): Likewise.
3199 (backward-kill-paragraph, backward-kill-sentence): Remove code to
3200 constrain the kill to an field, as the movement commands now
3201 do this.
3202
3203 1999-10-17 Miles Bader <miles@gnu.org>
3204
3205 * simple.el (previous-matching-history-element): Get the
3206 minibuffer input with field-string instead of buffer-string.
3207 (choose-completion-string): Likewise.
3208 (next-history-element): Likewise.
3209 Erase the minibuffer input with erase-field, not erase-buffer.
3210 Use field-beginning to find the beginning of the input.
3211 * textmodes/paragraphs.el (backward-kill-sentence):
3212 Remove minibuffer-prompt hack.
3213 Constrain to any input field.
3214
3215 1999-10-17 Sam Steingold <sds@ksp.com>
3216
3217 * bindings.el (completion-ignored-extensions): Added ".sparcf"
3218 for CMUCL on sparc and ".ufsl" for LispWorks.
3219 (bound-and-true-p): Bugfix: free variable `v'.
3220
3221 1999-10-16 Dave Love <d.love@dl.ac.uk>
3222
3223 * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
3224 (edebug-uninstall-read-eval-functions): Use load-read-function,
3225 avoiding elisp-eval.
3226
3227 1999-10-16 Sam Steingold <sds@ksp.com>
3228
3229 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
3230 instead of `eql'.
3231
3232 1999-10-14 Stefan Monnier <monnier@cs.yale.edu>
3233
3234 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
3235 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
3236 (browse-url-temp-file-list, browse-url-delete-temp-file-list):
3237 * ediff-util.el (ediff-make-temp-file):
3238 * ediff-vers.el (ediff-pcl-cvs-view-revision):
3239 * emerge.el (emerge-make-temp-file):
3240 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
3241 * vc.el (vc-update-change-log):
3242 * mail/mailpost.el (post-mail-send-it):
3243 * mail/metamail.el (metamail-region):
3244 * progmodes/cmacexp.el (c-macro-expansion):
3245 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
3246
3247 1999-10-15 Gerd Moellmann <gerd@gnu.org>
3248
3249 * smtpmail.el (smtpmail-via-smtp): Add support for
3250 automatically appending a domain to RCPT TO: addresses.
3251
3252 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3253
3254 * dired.el (dired-insert-directory): Insert the amount of
3255 free space after the total size.
3256 (dired-free-space-program, dired-free-space-args): New variables.
3257
3258 1999-10-14 Karl Heuer <kwzh@gnu.org>
3259
3260 * mail/rmail.el (rmail-pop-password-error): Add new pattern.
3261
3262 1999-10-14 Dave Love <fx@gnu.org>
3263
3264 * international/characters.el:
3265 * international/fontset.el:
3266 * international/mule-conf.el: Add latin-iso8859-1[45].
3267
3268 * language/european.el: Add Latin-8, Latin-9. Modify some doc
3269 strings.
3270
3271 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
3272 (command-line): Detect Latin-[89] locales.
3273
3274 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
3275
3276 * international/mule-cmds.el (select-safe-coding-system)
3277 (leim-list-header): Avoid the use of strings that start with backslash
3278 newline since lread.c:read1 has a hack to turn those strings into
3279 integer 0 during the loadup.el process.
3280
3281 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
3282
3283 1999-10-13 Dave Love <fx@gnu.org>
3284
3285 * image.el (insert-image): Copy the image spec and add an
3286 intangible property.
3287
3288 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
3289
3290 * help.el (help-xref-interned): Make it also work on variable-only
3291 and function-only symbols.
3292 (help-make-xrefs): Take advantage of the new `help-xref-interned'.
3293 (help-follow): If the point under mouse is not highlighted, try
3294 `help-xref-interned' on the pointed-to symbol anyway.
3295
3296 * info.el (Info-on-current-buffer): New entry point.
3297 (Info-find-node): Split into two for Info-on-current-buffer to
3298 hook into it.
3299 (Info-current-file, Info-set-mode-line, Info-up):
3300 Info-current-file can now be t.
3301 (Info-clone-buffer-hook): Function for `clone-buffer'.
3302 (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
3303 Make `clone-buffer' available in various ways to the user.
3304
3305 1999-10-12 Stefan Monnier <monnier@cs.yale.edu>
3306
3307 * simple.el (shell-command, shell-command-on-region): Use
3308 make-temp-file.
3309 (clone-buffer, clone-process, clone-buffer-hook): New functions.
3310
3311 * subr.el (with-current-buffer): Don't use backquotes to avoid
3312 bootstrapping problems.
3313
3314 * loadup.el (load-path): Add subdirs for bootstrapping.
3315 (docstrings): Ignore errors during bootstrapping.
3316 (args): New `bootstrap' argument (for use in place of `dump').
3317
3318 1999-10-12 Emmanuel Briot <briot@gnat.com>
3319
3320 * ada-stmt.el: Doc-string fixes.
3321
3322 1999-10-12 Gerd Moellmann <gerd@gnu.org>
3323
3324 * recentf.el: New file.
3325
3326 * ps-mode.el: New file.
3327
3328 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
3329 case insensitive.
3330
3331 1999-10-12 Richard Sharman <rsharman@pobox.com>
3332
3333 * sh-script.el: Added support for indenting existing scripts.
3334 (sh-mode-map): Added new bindings.
3335 (sh-mode): Updated mode doc-string for new commands, added
3336 make-local-variable calls, initialize mode-specific variables.
3337 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line
3338 is now a different function.
3339 (sh-header-marker): Changed docstring.
3340 (sh-set-shell): Initialize mode-specific variables.
3341 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
3342 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
3343 Changed these define-skeleton calls to work with user-specified
3344 indentation settings.
3345 (sh-basic-indent-line, sh-blink, sh-calculate-indent)
3346 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
3347 (sh-electric-hash, sh-electric-less, sh-electric-rparen)
3348 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
3349 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
3350 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
3351 (sh-guess-basic-offset, sh-handle-after-case-label)
3352 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
3353 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
3354 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
3355 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
3356 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
3357 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
3358 (sh-handle-this-then, sh-help-string-for-variable)
3359 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
3360 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
3361 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
3362 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
3363 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
3364 (sh-remove-our-text-properties, sh-rescan-buffer)
3365 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
3366 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
3367 (sh-scan-case, sh-search-word, sh-set-char-syntax)
3368 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
3369 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
3370 functions.
3371 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
3372 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
3373 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
3374 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
3375 (sh-var-list): New variables.
3376
3377 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk>
3378
3379 * quickurl.el (quickurl-list-insert): `count-lines' was returning
3380 a value one line to high if the cursor wasn't at the start of a
3381 line. A `beginning-of-line' is now performed before making the
3382 call to `count-lines'.
3383
3384 1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
3385
3386 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
3387
3388 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
3389
3390 * Makefile (setwins): Abstract out the command to find subdirectories
3391 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
3392 (custom-deps, finder-data, autoloads, update-subdirs, updates)
3393 (autoloads-with-other-emacs): Use it.
3394
3395 * diff-mode.el: New file. A mode for viewing/editing context diffs.
3396
3397 1999-10-09 Gerd Moellmann <gerd@gnu.org>
3398
3399 * Makefile (bootstrap-compile): New target. Compile Lisp
3400 files with ../src/temacs.
3401
3402 1999-10-08 Dave Love <fx@gnu.org>
3403
3404 * ange-ftp.el: Require dired when compiling.
3405 (ange-ftp-normal-login): Allow EFS-style port specification.
3406
3407 1999-10-08 Simon Marshall <simon@gnu.org>
3408
3409 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
3410 (regexp-opt-group): Use it to get common suffixes in STRINGS.
3411 If STRINGS is nil, return "" rather than nil.
3412
3413 1999-10-08 Gerd Moellmann <gerd@gnu.org>
3414
3415 * Makefile (compile): Compile files one by one. Set load-path to
3416 current directory and subdirectories when compiling.
3417
3418 1999-10-08 Gerd Moellmann <gerd@gnu.org>
3419
3420 * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
3421 (emacs): Use it everywhere instead of EMACS.
3422 (compile): New target. Compile all Lisp files from scratch.
3423 (recompile): New target. Recompile lisp directory.
3424 (autoloads-with-other-emacs): New target. Build loaddefs.el with
3425 an Emacs executable not built in the current directory tree.
3426
3427 1999-10-07 Peter Breton <pbreton@ne.mediaone.net>
3428
3429 * filecache.el (file-cache-completion-ignore-case): New variable,
3430 defaulting to the value of completion-ignore-case.
3431 (file-cache-minibuffer-complete): Use it.
3432 (file-cache-files-matching, file-cache-files-matching-internal):
3433 New functions.
3434
3435 1999-10-07 Emmanuel Briot <briot@gnat.com>
3436
3437 * ada-xref.el: New file
3438
3439 * ada-prj.el: New file
3440
3441 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
3442
3443 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
3444 subprogram being created.
3445
3446 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
3447 ada-indent-newline-indent): Rewritten to support the new indentation
3448 scheme
3449
3450 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
3451 New functions
3452
3453 * ada-mode.el (ada-fill-comment-paragraph): Add support for the
3454 justification parameter
3455
3456 * ada-mode.el (ada-make-body, ada-gen-treat-proc,
3457 ada-make-subprogram-body): Rewritten to benefit from the gnatstub
3458 external program
3459
3460 1999-10-07 Dave Love <fx@gnu.org>
3461
3462 * bindings.el (bound-and-true-p): New macro.
3463 (make-mode-line-mouse-sensitive): Don't require easymenu.
3464
3465 1999-10-07 Gerd Moellmann <gerd@gnu.org>
3466
3467 * custom.el (defface): Extend documentation for new values of
3468 `type'.
3469
3470 * faces.el (face-spec-set-match-display): Recognize `type' of
3471 `motif', `lucid', `x-toolkit'.
3472 (menu): New face.
3473
3474 1999-10-05 Dave Love <fx@gnu.org>
3475
3476 * files.el: Recognize temporary crontab files.
3477
3478 * info.el: Require jka-compr when compiling.
3479 (Info-suffix-list): Add bzip2 files (non-ms-dos only).
3480
3481 1999-10-04 Dave Love <fx@gnu.org>
3482
3483 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
3484 scroll-up-aggressively, scroll-down-aggressively.
3485
3486 * time.el (display-time-mode): Add autoload cookie.
3487
3488 * rect.el (delete-extract-rectangle): Doc fix from verna.
3489
3490 * help-macro.el (three-step-help): Customize.
3491
3492 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3493
3494 * hexl.el (hexlify-buffer): Move point in proper range
3495 if it is too large.
3496 (hexl-after-revert-hook): Update hexl-max-address.
3497 (hexl-address-to-marker): Doc fix.
3498
3499 1999-10-03 Dave Love <fx@gnu.org>
3500
3501 * image.el (defimage): Remove redundant code. Substitute file in
3502 image plist.
3503
3504 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
3505
3506 * vc.el (vc-backend-checkout): Use coding system 'no-conversion
3507 when doing with-temp-file.
3508
3509 1999-10-01 Dave Love <fx@gnu.org>
3510
3511 * cus-edit.el (custom-comment-create): Fill :from and :to slots.
3512
3513 * help.el: Require view when compiling.
3514 (view-emacs-FAQ): Use Info version.
3515
3516 1999-09-29 Ken'ichi Handa <handa@gnu.org>
3517
3518 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
3519 (normat->normal). Use correct font names for Korean
3520 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
3521
3522 1999-09-29 Kenichi Handa <handa@etl.go.jp>
3523
3524 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
3525 code not used by KOI8 to the same 8-bit code instead of mapping to
3526 SPC.
3527 (cyrillic-alternativnyj-decode-table): Likewise.
3528
3529 1999-09-29 Alex Schroeder <alex@gnu.org>
3530
3531 * sql.el (sql-imenu-generic-expression): Aew, used to set
3532 imenu-generic-expression.
3533 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
3534 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression,
3535 imenu-case-fold-search, and imenu-syntax-alist.
3536 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
3537 setting font-lock-defaults' SYNTAX-ALIST.
3538
3539 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3540
3541 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
3542 macro, try again.
3543
3544 1999-09-28 Dave Love <fx@gnu.org>
3545
3546 * cus-edit.el (custom-comment): Change widget definition.
3547 (custom-comment-create, custom-comment-show)
3548 (custom-comment-invisible-p): Don't use :comment-overlay.
3549 (custom-comment-hide): New function.
3550 (custom-variable-set, custom-variable-save)
3551 (custom-variable-reset-standard, custom-face-set)
3552 (custom-face-save): Use it.
3553
3554 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3555
3556 * hexl.el (hexl-mode): Do nothing if already in hexl mode.
3557
3558 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3559
3560 * faces.el (region): Doc fix.
3561
3562 1999-09-27 Dave Love <fx@gnu.org>
3563
3564 * isearch.el (isearch): Add :links in defgroup.
3565 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
3566 (isearch-switch-frame-handler): Comment out (unused).
3567 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
3568 (isearch-ring-retreat-edit): Doc fix.
3569 (isearch-mouse-yank): New command.
3570 (isearch-last-command-char): Removed. Callers changed to use
3571 last-command-char.
3572 (isearch-char-to-string): Removed. Callers changed to use
3573 char-to-string.
3574
3575 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
3576
3577 * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
3578 option for Russian.
3579
3580 1999-09-25 Gerd Moellmann <gerd@gnu.org>
3581
3582 * faces.el (face-differs-from-default-p): Compare face
3583 attributes individually.
3584
3585 * image.el (put-image, insert-image): Add string argument.
3586
3587 1999-09-24 Gerd Moellmann <gerd@gnu.org>
3588
3589 * ange-ftp.el (ange-ftp-date-regexp): Make it work for
3590 LANG=de_DE.iso88591 on HPUX 11.0.
3591
3592 * dired.el (dired-move-to-filename-regexp): Make it work
3593 for LANG=de_DE.iso88591 on HPUX 11.0.
3594
3595 1999-09-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3596
3597 * info.el (info-initialize): Don't test existence of ALTERNATIVE
3598 if we know for some other reason it should not be used.
3599
3600 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
3601 New variable.
3602 (edebug-recursive-edit): Save current-prefix-arg there,
3603 bind it, and set it back at the end.
3604 (edebug-outside-excursion): Restore and update the outside
3605 value of current-prefix-arg.
3606 (edebug-emacs-version-specific): Delete support for Epoch.
3607
3608 1999-09-24 Howard Melman <howard@silverstream.com>
3609
3610 * imenu.el (imenu-after-jump-hook): New variable.
3611 (imenu): Run menu-after-jump-hook.
3612 (imenu-name-lookup-function): New variable.
3613 * imenu.el (imenu--in-alist): Use those variables.
3614
3615 1999-09-24 Carsten Dominik <cd@gnu.org>
3616
3617 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
3618 multiple thebibliography environments.
3619
3620 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
3621 with recentering window.
3622 (reftex-extract-bib-entries-from-thebibliography,
3623 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal
3624 with multiple thebibliography environments.
3625
3626 * textmodes/reftex-vars.el
3627 (reftex-section-levels): Function allowed as cdr.
3628 (reftex-max-section-depth) New option.
3629
3630 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
3631 with multiple thebibliography environments.
3632
3633 1999-09-23 Gerd Moellmann <gerd@gnu.org>
3634
3635 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
3636 instead of point-min in call to delete-region.
3637
3638 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de>
3639
3640 * vc.el (vc-backend-checkout): Use with-temp-file when checking
3641 out into arbitrary file names.
3642
3643 1999-09-19 Ken'ichi Handa <handa@gnu.org>
3644
3645 * language/european.el ("Turkish"): New language environment.
3646
3647 1999-09-19 Dave Love <fx@gnu.org>
3648
3649 * delim-col.el: New file.
3650
3651 1999-09-17 Richard Stallman <rms@gnu.org>
3652
3653 * files.el (after-find-file): When visiting a backup file,
3654 make it read-only.
3655
3656 * apropos.el (apropos-symbol-face): Non-nil even for ttys.
3657 (apropos-keybinding-face, apropos-label-face): Likewise.
3658 (apropos-property-face, apropos-match-face): Likewise.
3659 (apropos-label-properties): New variable.
3660 (apropos-print-doc): Use apropos-label-properties.
3661 (apropos-print): Set apropos-label-properties.
3662
3663 1999-09-15 Richard Stallman <rms@gnu.org>
3664
3665 * winner.el: Use aref instead of sref.
3666
3667 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
3668
3669 1999-09-14 Gerd Moellmann <gerd@gnu.org>
3670
3671 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
3672
3673 1999-09-14 Richard Stallman <rms@gnu.org>
3674
3675 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
3676 cookie, even if followed by a letter.
3677
3678 1999-09-14 Stephen Eglen <stephen@gnu.org>
3679
3680 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
3681 --no-line-editing are passed to Octave by including them here
3682 rather than storing them in inferior-octave-startup-args.
3683
3684 1999-09-14 Eli Zaretskii <eliz@gnu.org>
3685
3686 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
3687 command, option, env and sc.
3688
3689 * subr.el (shell-quote-argument): Quote argument with double
3690 quotes for ms-dos.
3691
3692 1999-09-14 Richard Stallman <rms@gnu.org>
3693
3694 * simple.el (eval-expression-print-level): New variable.
3695 (eval-expression-print-length): New variable.
3696 (eval-expression-debug-on-error): New variable.
3697 (eval-expression): Bind print-level, print-length and
3698 debug-on-error from those vars.
3699
3700 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
3701 Bind print-level, print-length and debug-on-error.
3702
3703 1999-09-14 Inge Frick <inge@nada.kth.se>
3704
3705 * dired.el (dired-recursive-deletes): New custom variable.
3706 (dired-re-no-dot): New variable.
3707 (dired-delete-file): New function deletes files and directories
3708 recursively.
3709 (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
3710
3711 * dired-aux.el (dired-recursive-copies): New custom variable.
3712 (dired-handle-overwrite): Broke a long line.
3713 (dired-copy-file): Call `dired-copy-file-recursive' instead of
3714 `copy-file'.
3715 (dired-copy-file-recursive): New function. Copy directories
3716 recursively.
3717 (dired-do-create-files): Added support for generalized directory
3718 target. How-to function may now return a function. New fluid
3719 variable `dired-one-file'.
3720 (dired-copy-how-to-fn): New variable.
3721 (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
3722 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
3723 (dired-do-copy-regexp): No recursive copies.
3724
3725 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com>
3726
3727 * whitespace.el (whitespace-version): Update version to 2.4
3728
3729 * whitespace.el: Add customization variables to conditionally test
3730 any of the five whitespaces, per request from Rune Kleveland
3731 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
3732
3733 * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
3734
3735 * whitespace.el (whitespace-modes): Add `change-log-mode' to the
3736 list of modes to be checked for bogus whitespaces.
3737
3738 * whitespace.el (whitespace-rescan-timer-time): Update
3739 documentation.
3740
3741 * whitespace.el (whitespace-display-unchecked-whitespaces):
3742 New function to update modeline with untested whitespaces.
3743
3744 * whitespace.el (whitespace-buffer): Test only whitespaces whose
3745 checking is turned on, and update modeline using the newly created
3746 `whitespace-display-unchecked-whitespaces'.
3747
3748 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
3749 whose checking is turned on, and update modeline using the newly
3750 created `whitespace-display-unchecked-whitespaces'.
3751
3752 * whitespace.el (whitespace-describe): Update documentation.
3753
3754 * whitespace.el (whitespace-tickle-timer): Test if
3755 `whitespace-rescan-timer-time' is non-zero before tickling timer.
3756
3757 1999-09-13 Dave Love <fx@gnu.org>
3758
3759 * hideif.el (hide-ifdef-mode): Add autoload cookie.
3760
3761 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
3762 for temp buffer.
3763 (checkdoc-this-string-valid): Don't assume default comment-start.
3764
3765 1999-09-13 Gerd Moellmann <gerd@gnu.org>
3766
3767 * rsz-mini.el: Remove code, keep the interface.
3768
3769 1999-09-13 Dave Love <fx@gnu.org>
3770
3771 * help.el (help-highlight-p): Doc fix.
3772
3773 * faces.el (mode-line, header-line, tool-bar): Add :version.
3774 (highlight, secondary-selection): Add :group.
3775 (trailing-whitespace): Add :group, :version.
3776
3777 * wid-edit.el: Remove some compatibility code and checks.
3778 (widget-specify-field, widget-specify-button): Don't use XEmacs
3779 properties.
3780 (widget-overlay-inactive): Change error message.
3781 (widget-button-pressed-face): New variable.
3782 (widget-button-click): Use it.
3783 (widget-documentation-link-add): Specify mouse and button faces.
3784 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
3785 removed now the functionality is built in.
3786
3787 * cus-edit.el: Don't define-widget-keywords.
3788 (multimedia): New group.
3789 (custom-last): Function removed.
3790 (custom-quote): Add vectorp case, comment out characterp case.
3791 (custom-buffer-done-function, custom-raised-buttons): New option.
3792 (Custom-buffer-done): New function.
3793 (custom-buffer-create-internal): Obey custom-raised-buttons,
3794 Custom-buffer-done.
3795 (custom-button-face): Make it `released-button'.
3796 (custom-button-pressed-face): Make it `pressed-button'
3797 (custom-mode-map): Bind "q" to Custom-buffer-done.
3798 (custom-mode): Deal with raised/pressed buttons.
3799
3800 Changes from Didier Verna:
3801 (custom-prompt-variable): Optional third arg makes prompt for a
3802 comment string.
3803 (customize-set-value, customize-set-variable,
3804 customize-save-variable): Optional prefix makes function handle
3805 variable comments.
3806 (customize-customized, customize-saved, custom-variable-state-set)
3807 (custom-variable-set, custom-variable-save, custom-face-state-set)
3808 (custom-variable-reset-saved, custom-variable-reset-standard)
3809 (custom-face-set, custom-face-save, custom-face-reset-saved)
3810 (custom-face-reset-standard, customize-save-customized): Handle
3811 custom comments.
3812 (custom-comment-face, custom-comment-tag-face): New face.
3813 (custom-comment): New widget.
3814 (custom-comment-create, custom-comment-delete)
3815 (custom-comment-value-set, custom-comment-show)
3816 ()custom-comment-invisible-p): New functions.
3817 (custom-variable-value-create, custom-face-value-create): Create a
3818 comment field widget.
3819 (custom-variable-menu, custom-face-menu): New entry for custom
3820 comment.
3821 (custom-face-value-create): Remove compatibility code.
3822 (custom-save-variables, custom-save-faces): Possibly save custom
3823 comments.
3824
3825 * cus-face.el (custom-face-attributes): Simplify :underline,
3826 :overline, :inverse-video cases. Fix up :box case (probably needs
3827 more work).
3828
3829 Change from Didier Verna:
3830 (custom-set-faces): The arguments can now have a custom comment as
3831 fourth argument.
3832
3833 * custom.el: Don't define-widget-keywords.
3834 Change from Didier Verna:
3835 (custom-set-variables): The arguments can now have a
3836 custom comment as fifth element.
3837
3838 1999-09-13 Richard Stallman <rms@gnu.org>
3839
3840 * info.el (Info-find-node): Cope better if guesspos is too large.
3841
3842 1999-09-12 Gerd Moellmann <gerd@gnu.org>
3843
3844 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
3845 of buffer-substring because buffer-string doesn't copy the
3846 prompt.
3847
3848 * faces.el (mode-line): Replaces `modeline'.
3849 (toplevel): Make `modeline' an alias for `mode-line'.
3850
3851 1999-09-12 Gerd Moellmann <gerd@gnu.org>
3852
3853 * gs.el: Change `ghostscript' to `postscript' in comment.
3854
3855 1999-09-11 Rob Riepel <riepel@Stanford.EDU>
3856
3857 * emulation/tpu-edt.el (tpu-version): New version.
3858 (tpu-search-overlay, tpu-replace-overlay): New variables.
3859 (tpu-search-highlight, tpu-toggle-direction): New functions.
3860 (tpu-lm-replace): Set tpu-replace-overlay.
3861 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
3862 command hook.
3863
3864 1999-09-11 Richard Stallman <rms@gnu.org>
3865
3866 * isearch.el (isearch-mode-map): Undo previous change.
3867
3868 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
3869 use all of that as the sexp.
3870
3871 * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
3872 and use the initial argument as file name directly.
3873 Likewise if nothing matches.
3874
3875 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no>
3876
3877 * winner.el: Major changes. Avoid changing point and mark.
3878 Save configurations after they change, not before.
3879
3880 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
3881
3882 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
3883 Bind print-continuous-numbering and print-number-table.
3884
3885 1999-09-10 Dave Love <fx@gnu.org>
3886
3887 * bindings.el (debug-ignored-errors): Restore BBDB stuff.
3888
3889 1999-09-09 Richard Stallman <rms@gnu.org>
3890
3891 * whitespace.el: Finish making it fit Emacs conventions.
3892 Add autoloads.
3893
3894 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il>
3895
3896 * generic-x.el (bat-generic-mode): "::"-style comments don't
3897 need to begin with "-". Fix the font-lock definitions of ON/OFF
3898 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO
3899 from the list of keywords. Add DO to the list of keywords.
3900
3901 1999-09-09 Dave Love <fx@gnu.org>
3902
3903 * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
3904 (byte-optimize-backward-word): New optimizations.
3905 (side-effect-free-fns, side-effect-and-error-free-fns): Add
3906 entries.
3907
3908 1999-09-09 Gerd Moellmann <gerd@gnu.org>
3909
3910 * image.el (put-image): Remove optional buffer parameter.
3911
3912 * faces.el (face-italic-p): Return t only for values `italic'
3913 and `oblique'.
3914
3915 * mouse.el (mouse-drag-mode-line-1): Extension of former
3916 mouse-drag-mode-line that also drags the header line.
3917 (mouse-drag-mode-line): Call it.
3918 (mouse-drag-header-line): New.
3919 (toplevel): Bind down-mouse-1 on header lines to
3920 mouse-drage-header-line.
3921
3922 1999-09-08 Gerd Moellmann <gerd@gnu.org>
3923
3924 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
3925 (make-mode-line-mouse-sensitive): Replace `top-line' by
3926 `header-line'.
3927
3928 1998-09-08 Michael Ernst <mernst@alum.mit.edu>
3929
3930 * help.el (describe-function-1): Don't return empty string for keymaps.
3931
3932 * fill.el (fill-region-as-paragraph, canonically-space-region):
3933 Respect colon-double-space at end of line.
3934
3935 1999-09-08 Stephen Gildea <gildea@alum.mit.edu>
3936
3937 * files.el (backup-by-copying-when-privileged-mismatch): New variable.
3938 (backup-buffer): Use it.
3939
3940 1999-09-08 Peter Breton <pbreton@ne.mediaone.net>
3941
3942 * generic-x.el (generic-define-unix-modes): Added new modes:
3943 inetd-conf-generic-mode, etc-services-generic-mode,
3944 etc-passwd-generic-mode. These are all defined for Unix by default.
3945 (apache-generic-mode): Use an imenu-generic-expression to list
3946 Configuration keywords.
3947 (samba-generic-mode): Use both ; and # as comment characters.
3948 (samba-generic-mode): Font-lock expressions now highlight name
3949 value pairs.
3950 (bat-generic-mode): Keywords are now case-insensitive through
3951 font-lock-defaults setting.
3952 (java-properties-generic-mode): Supports both ! and # as comment
3953 characters.
3954 (java-properties-generic-mode): Added an imenu-generic-expression
3955 (java-properties-generic-mode): Reworked to support the various
3956 different ways to separate name and value (viz, '=', ':' and
3957 whitespace).
3958 (show-tabs-generic-mode): Added this new generic-mode.
3959
3960 1999-09-08 Richard Stallman <rms@gnu.org>
3961
3962 * progmodes/inf-lisp.el: Moved from top directory.
3963
3964 * tar-mode.el (tar-header-block-tokenize):
3965 Use `when' instead of `and'. Fix some clobbered text.
3966
3967 * gud.el (gud-make-debug-menu): Make a child for the
3968 local menu, for its menu bar, and the debug menu.
3969 (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
3970 Use the history in the simple way.
3971
3972 1999-09-07 Kenichi Handa <handa@etl.go.jp>
3973
3974 * language/korea-util.el (default-korean-keyboard): Initialize it
3975 according to the environment variable HANGUL_KEYBOARD_TYPE.
3976
3977 1999-09-07 Richard Stallman <rms@gnu.org>
3978
3979 * subr.el (make-temp-file): New function.
3980
3981 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
3982
3983 * font-lock.el (font-lock-multiline): New text property contains
3984 a boolean to indicate if the char is part of a multiline match.
3985 (font-lock-default-fontify-region): Extend the region appropriately
3986 for multiline keywords.
3987 (font-lock-default-unfontify-region): Also remove the new
3988 font-lock-multiline text property.
3989 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
3990 (font-lock-fontify-keywords-region): Mark multiline regexp matches.
3991
3992 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
3993
3994 * diary-lib.el (list-diary-entries): Make sure two-digit years
3995 have leading zeros.
3996
3997 1999-09-07 Gerd Moellmann <gerd@gnu.org>
3998
3999 * faces.el (face-set-after-frame-default): Initialize some
4000 attributes of some faces from frame parameters.
4001
4002 * faces.el (scroll-bar, border, cursor, mouse): New faces.
4003
4004 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4005
4006 * faces.el (fringe): Replaces face `margin'.
4007
4008 1999-09-07 Dave Love <fx@gnu.org>
4009
4010 * tar-mode.el (tar-header-block-tokenize): Bind linkname.
4011
4012 1999-09-07 Richard Stallman <rms@gnu.org>
4013
4014 * subr.el (push): Doc fix.
4015
4016 1999-09-06 Richard Stallman <rms@gnu.org>
4017
4018 * vc.el (vc-annotate-display): Use < 69 not < 70
4019 to distinguish 20YY from 19YY.
4020
4021 * timezone.el (timezone-parse-date): Use < 69 not < 70
4022 to distinguish 20YY from 19YY.
4023
4024 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
4025
4026 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk>
4027
4028 * quickurl.el: (quickurl-list-focused-line): Removed.
4029 (quickurl-list-insert): Now works out the focused line using
4030 `count-lines' instead of using `quickurl-list-focused-line'.
4031
4032 1999-09-06 Richard Stallman <rms@gnu.org>
4033
4034 * mail/rmail.el (rmail-retry-failure): Unconditionally move
4035 to beginning of message.
4036
4037 1999-09-06 Dave Love <fx@gnu.org>
4038
4039 * isearch.el (isearch-mode-map): Add mouse-2.
4040
4041 * mail/rmail.el (rmail-read-password): Deleted.
4042 (rmail-get-pop-password): Use read-password.
4043
4044 * quickurl.el: Don't conditionally define caddr.
4045 (quickurl-url-comment): Use nth, not caddr in function and
4046 defsetf.
4047
4048 1999-09-06 Richard Stallman <rms@gnu.org>
4049
4050 * auto-show.el: Doc fixes.
4051
4052 1999-09-06 Stephen Eglen <stephen@gnu.org>
4053
4054 * progmodes/octave-inf.el (inferior-octave-startup-args): Add
4055 --no-line-editing so that TABs in source files are not interpreted
4056 as completion requests.
4057
4058 1999-09-06 Gerd Moellmann <gerd@gnu.org>
4059
4060 * hscroll.el, auto-show.el: Remove all code, keep the public
4061 interface as no-ops.
4062
4063 * faces.el (face-bold-p): Don't return t if face has lighter
4064 weight than normal.
4065
4066 1999-09-06 Eli Zaretskii <eliz@gnu.org>
4067
4068 * startup.el (command-line): Make small-temporary-file-directory
4069 be nil except on ms-dos.
4070
4071 * files.el (small-temporary-file-directory): Ditto. Also doc fix.
4072
4073 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
4074 is defined.
4075
4076 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
4077 letters with a colon after d or l.
4078
4079 1999-09-06 Dave Love <fx@gnu.org>
4080
4081 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now
4082 primitive.)
4083
4084 1999-09-05 Richard Stallman <rms@gnu.org>
4085
4086 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
4087
4088 * textmodes/paragraphs.el (backward-kill-sentence):
4089 Don't test minibuffer-prompt-end here.
4090 (forward-sentence): Do handle it here.
4091 (backward-kill-paragraph): Don't test it here.
4092 (forward-paragraph): Handle it here.
4093
4094 * mouse.el (font-menu-add-default): Simplify code.
4095
4096 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4097
4098 * faces.el (header-line): Renamed from `top-line'.
4099
4100 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4101
4102 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
4103
4104 1999-09-04 Richard Stallman <rms@gnu.org>
4105
4106 * whitespace.el: New file.
4107
4108 1999-09-04 Dave Love <fx@gnu.org>
4109
4110 * paths.el: Make some doc strings obey the make-docfile convention.
4111
4112 * bindings.el: Likewise.
4113 (debug-ignored-errors): Remove BBDB ones.
4114
4115 1999-09-03 Richard Stallman <rms@gnu.org>
4116
4117 * mail/mh-comp.el (mh-forward): Get new subject line from the original,
4118 not from the draft to forward.
4119
4120 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
4121
4122 1999-09-03 Dave Love <fx@gnu.org>
4123
4124 * double.el (double-mode): Customize the variable.
4125
4126 1999-09-03 Kenichi Handa <handa@etl.go.jp>
4127
4128 * international/characters.el: Delete duplicated code.
4129
4130 1999-09-02 Richard Stallman <rms@gnu.org>
4131
4132 * indent.el (indent-relative): Doc fix.
4133
4134 * quickurl.el (quickurl): Doc fix.
4135
4136 1999-09-02 Gerd Moellmann <gerd@gnu.org>
4137
4138 * faces.el (margin): Change background to "gray" for mono (this is
4139 drawn with a stipple pattern).
4140
4141 1999-09-02 Gerd Moellmann <gerd@gnu.org>
4142
4143 * simple.el (next-history-element): Use minibuffer-prompt-end once
4144 again. Remove test for minibuffer-prompt-in-buffer.
4145
4146 1999-09-02 Eli Zaretskii <eliz@gnu.org>
4147
4148 * files.el (small-temporary-file-directory): New variable.
4149
4150 * startup.el (command-line): Compute the value of
4151 small-temporary-file-directory.
4152
4153 * ediff-init.el (ediff-temp-file-prefix): Use
4154 small-temporary-file-directory if non-nil.
4155
4156 * vc.el (vc-update-change-log): Likewise.
4157
4158 * progmodes/cmacexp.el (c-macro-expansion): Likewise.
4159
4160 * simple.el (shell-command, shell-command-on-region): Use
4161 make-temp-name properly. Use small-temporary-file-directory if
4162 non-nil, otherwise temporary-file-directory, to generate temporary
4163 files.
4164
4165 * dos-w32.el (direct-print-region-helper): Use
4166 temporary-file-directory. (From Stefan Monnier.)
4167
4168 1999-09-02 Richard Stallman <rms@gnu.org>
4169
4170 * progmodes/asm-mode.el (asm-mode): Set comment-start properly
4171 from asm-comment-char.
4172 (asm-font-lock-keywords): Recognize instruction width suffixes.
4173
4174 1999-09-01 Richard Stallman <rms@gnu.org>
4175
4176 * play/fortune.el: New file.
4177
4178 1999-08-31 Dave Love <fx@gnu.org>
4179
4180 * help.el (help-make-xrefs): Don't lose on non-empty blank line
4181 after key table.
4182
4183 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
4184 redisplay variables.
4185
4186 * subr.el (push): Fix typo.
4187
4188 1999-08-30 Kevin Blake <kblake@ticnet.com>
4189
4190 * emacs-lisp/ring.el: Many doc fixes.
4191 (ring-size, ring-copy): New functions.
4192
4193 1999-08-29 Richard Stallman <rms@gnu.org>
4194
4195 * progmodes/etags.el (tags-loop-continue):
4196 After tags-loop-operate returns, force skip to next file.
4197
4198 * mail/mail-extr.el (mail-extr-all-letters-but-separators)
4199 (mail-extr-first-letters, mail-extr-last-letters):
4200 Use character classes [:alpha:] and [:alnum:].
4201
4202 * subr.el (push, pop): New macros.
4203
4204 * progmodes/compile.el (compilation-error-regexp-alist):
4205 New item for SGI IRIX MipsPro compilers.
4206
4207 * speedbar.el (speedbar-directory-buttons): Recognize
4208 device names when checking for file names.
4209
4210 * array.el (array-reconfigure-rows): Use generate-new-buffer.
4211
4212 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
4213 and specially handle defvar inside their expansions.
4214 (eval-defun-1): New subroutine.
4215
4216 * progmodes/compile.el (compilation-error-regexp-alist):
4217 Fix the Perl -w entry to allow period after line number.
4218 Don't allow newlines in file name, but allow them after line number
4219 for Perl debugging traces.
4220
4221 * which-func.el (which-func-cleanup-function): New variable.
4222 (which-function): Call that function.
4223
4224 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
4225 to end a function name.
4226
4227 * informat.el (Info-tagify): Don't insert more than one newline
4228 before the tag table.
4229
4230 1999-08-29 Stefan Monnier <monnier@cs.yale.edu>
4231
4232 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
4233 than make-temp-name, use match-string-no-properties, and eliminate
4234 a quadratic behavior when building bibtex-strings.
4235
4236 1999-08-29 Alex Schroeder <alex@gnu.org>
4237
4238 * comint.el (comint-input-ring-separator): New variable.
4239 (comint-read-input-ring): Doc change; use
4240 comint-input-ring-separator when reading file.
4241 (comint-write-input-ring): Use
4242 comint-input-ring-separator when writing file.
4243
4244 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com>
4245
4246 * informat.el (Info-tagify): Start by widening.
4247 Match node headers that don't list the file name,
4248 and more kinds of page separations.
4249 Strip properties during tagification.
4250 Use start of node header line as tag's position.
4251 Fix the "done" message.
4252
4253 (Info-validate): Save and restore match data around narrowing down.
4254
4255 1999-08-28 Richard M. Stallman <rms@gnu.org>
4256
4257 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
4258 On repeated call, override previous values put into
4259 minor-mode-map-alist and minor-mode-alist.
4260
4261 1999-08-28 Michael Ernst <mernst@alum.mit.edu>
4262
4263 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
4264
4265 1999-08-27 Andreas Schwab <schwab@gnu.org>
4266
4267 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
4268 from cvs update.
4269
4270 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4271
4272 * calendar/calendar.el (calendar-move-hook): New hook.
4273
4274 * calendar/cal-move.el: Call the new hook in every movement function.
4275
4276 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
4277 the right function name.
4278
4279 1999-08-26 Stephen Gildea <gildea@alum.mit.edu>
4280
4281 * time-stamp.el: Put quote-backquote around all symbol names
4282 in doc strings, for mousing.
4283 (time-stamp): Support multi-line patterns.
4284 (time-stamp-inserts-lines): New variable.
4285 (time-stamp-count): New variable.
4286 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
4287 "Thu" instead of "%a".
4288
4289 1999-08-25 Gerd Moellmann <gerd@gnu.org>
4290
4291 * simple.el (kill-word): Undo previous change.
4292
4293 1999-08-25 Gerd Moellmann <gerd@gnu.org>
4294
4295 * jit-lock.el (jit-lock-function): Extend the fontified range
4296 to the beginning of the line containing the range start and
4297 the beginning of the line following the range end.
4298
4299 1999-08-24 Dave Love <fx@gnu.org>
4300
4301 * timezone.el: Move provide to end.
4302 (timezone-parse-date): Simplify somewhat. Assume 2-digit years
4303 <70 are 2000+.
4304 (timezone-parse-time): Simplify somewhat.
4305
4306 1999-08-24 Gerd Moellmann <gerd@gnu.org>
4307
4308 * faces.el (margin): Renamed from bitmap-area.
4309
4310 1999-08-24 Alex Schroeder <alex@gnu.org>
4311
4312 * sql.el: Doc changes.
4313 (sql-sybase): Use sql-server instead of sql-database.
4314
4315 1999-08-23 Dave Love <fx@gnu.org>
4316
4317 * rect.el: Add/fix various doc strings. Add `*' to all the
4318 interactive specs.
4319
4320 1999-08-21 Gerd Moellmann <gerd@gnu.org>
4321
4322 * jit-lock.el (jit-lock-function): Use line-beginning-position.
4323 Don't unwind-protect font-lock-fontify-region.
4324
4325 * paragraphs.el (backward-kill-paragraph): Don't move
4326 point into mini-buffer prompt.
4327 (backward-kill-sentence): Ditto.
4328
4329 * simple.el (next-history-element): Use minibuffer-prompt-end.
4330 Remove test for minibuffer-prompt-in-buffer.
4331 (kill-word): Don't move point into mini-buffer prompt.
4332
4333 1999-08-21 Dave Love <fx@gnu.org>
4334
4335 * Makefile: Exclude CVS dirs like RCS.
4336
4337 1999-08-19 Dave Love <fx@gnu.org>
4338
4339 * tooltip.el (tooltip-mode): Customize this, per convention.
4340 (tooltip-active): Option deleted.
4341
4342 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize.
4343
4344 * hanoi.el, page-ext.el: Declare dynamic vars.
4345
4346 * term.el: Avoid ange-ftp related compilation warnings.
4347
4348 1999-08-18 Gerd Moellmann <gerd@gnu.org>
4349
4350 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
4351 the default so that beginners can benefit from it without
4352 searching in manuals.
4353
4354 1999-08-18 Ray Blaak <blaak@gnu.org>
4355
4356 * progmodes/delphi.el: Consider assembly sections as blocks, to
4357 indent them better. Make auto-indent on newline optional.
4358
4359 1999-08-17 Gerd Moellmann <gerd@gnu.org>
4360
4361 * bindings.el (mode-line-modified): Look up key binding for C-x
4362 C-q. If it's bound call that binding, otherwise call
4363 toggle-read-only.
4364
4365 1999-08-17 Dave Love <fx@gnu.org>
4366
4367 * info.el (info): Doc fix.
4368
4369 * finder.el (finder-known-keywords): Add `multimedia'.
4370
4371 * apropos.el: Don't capitalize custom group name.
4372
4373 * info-look.el: Remove compatibility code.
4374 (info-lookup-guess-default*): DTRT for point at start of symbol.
4375 (info-complete): Don't lose with point not at end of symbol.
4376
4377 1999-08-16 Gerd Moellmann <gerd@gnu.org>
4378
4379 * term.el (toplevel): Make face `term-default' an empty face.
4380 The code relied on the fact that Emacs ignored invalid faces in
4381 face text properties in 20.4.
4382
4383 1999-08-16 Richard M. Stallman <rms@gnu.org>
4384
4385 * subr.el (point-at-eol, point-at-bol): New aliases.
4386
4387 * simple.el: Functions reordered.
4388
4389 * rect.el (delete-rectangle-line): Use line-end-position.
4390
4391 1999-08-16 Karl Heuer <kwzh@gnu.org>
4392
4393 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
4394 here from simple.el.
4395
4396 1999-08-16 Dave Love <fx@gnu.org>
4397
4398 * mouse.el: Provide `mldrag' for compatibility.
4399 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
4400 marked obsolete.
4401
4402 * mldrag.el: Removed since the features are in mouse.el.
4403
4404 * jka-compr.el (auto-compression-mode): New variable for
4405 customization.
4406
4407 * bindings.el (mode-line-mule-info): Doc fix.
4408
4409 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
4410 name comparisons.
4411
4412 * files.el (interpreter-mode-alist): Add make, guile, clisp.
4413 (find-file): Doc fix.
4414
4415 1999-08-16 Carsten Dominik <cd@gnu.org>
4416
4417 * textmodes/reftex.el: Most of the code moved to other files.
4418 * textmodes/reftex-auc.el: New file, split out from reftex.el
4419 * textmodes/reftex-cite.el: New file, split out from reftex.el
4420 * textmodes/reftex-global.el: New file, split out from reftex.el
4421 * textmodes/reftex-index.el: New file, split out from reftex.el
4422 * textmodes/reftex-parse.el: New file, split out from reftex.el
4423 * textmodes/reftex-ref.el: New file, split out from reftex.el
4424 * textmodes/reftex-sel.el: New file, split out from reftex.el
4425 * textmodes/reftex-toc.el: New file, split out from reftex.el
4426 * textmodes/reftex-vars.el: New file, split out from reftex.el
4427 * textmodes/reftex-vcr.el: New file, split out from reftex.el
4428
4429 1999-08-16 Carsten Dominik <cd@gnu.org>
4430
4431 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
4432 conflict with pop-up-frames.
4433 (reftex-special-environment-parsers): New constant.
4434 (reftex-label-alist): car of an entry can also be a function.
4435 (reftex-what-special-env): Cew function.
4436 (reftex-label-location): Call `reftex-what-special-env'.
4437 (reftex-compile-variables): Check for symbol in
4438 `reftex-label-alist'.
4439 (reftex-what-environment): Fixed bug with stacked environments of
4440 same kind (e.g. enumerate).
4441 (reftex-process-string): Preserve default directory.
4442 (reftex-label-alist-builtin): Changed prefixes of endnote and
4443 footnote. Also the magic words.
4444 (reftex-reference): Interprete new option
4445 `reftex-fref-is-default'.
4446 (reftex-replace-prefix-escapes): Interprete new `%S' format.
4447 (reftex-toc-mouse-view-line): Command removed (had no binding).
4448 (reftex-everything-regexp): New function.
4449 (reftex-nearest-match): Made better.
4450 (reftex-toc-find-section): Use new version of
4451 `reftex-nearest-match'.
4452 (reftex-insert-docstruct): Adapted to work with the index stuff.
4453 (reftex-parse-from-file): Find index entries as well.
4454 (reftex-toc-toggle-index): New function
4455 (reftex-toc-map): `i' is now used to togle the index, File
4456 boundaries has been moved to `F'.
4457 (reftex-select-label-map): Toggling display of file boundaries is
4458 now on the `F' key, for consistency with `reftex-toc-map'.
4459 (reftex-erase-all-selection-and-index-buffers): Renamed from
4460 `reftex-erase-all-selection-buffer'. Now also kills the index
4461 buffers.
4462 (reftex-viewing-cross-references): Customization group renamed
4463 from reftex-viewing-cross-references-and-citations.
4464 (reftex-index-macro-regexp,
4465 reftex-find-index-entry-regexp-format): New variables
4466 (reftex-macros-with-index): New variable
4467 (reftex-add-index-macros): New function
4468 (reftex-renumber-simple-labels, reftex-translate): Allow for
4469 multiple labels in a single ref command.
4470 (reftex-index-support): New customization group
4471 (reftex-support-index, reftex-index-special-chars,
4472 reftex-index-macros, reftex-index-default-macro,
4473 reftex-index-default-tag, reftex-index-math-format,
4474 reftex-index-section-letters, reftex-index-include-context,
4475 reftex-index-follow-mode, reftex-index-header-face,
4476 reftex-index-section-face, reftex-index-tag-face,
4477 reftex-index-face): New options
4478 (reftex-index-map, reftex-index-menu, reftex-last-index-file,
4479 reftex-index-tag, reftex-index-return-marker,
4480 reftex-index-restriction-indicator, reftex-index-restriction-data,
4481 reftex-index-macro-regexp, reftex-index-level-re,
4482 reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
4483 reftex-everything-regexp-no-index, reftex-index-re,
4484 reftex-macros-with-index, reftex-index-macro-alist): New variables
4485 (reftex-index-help, reftex-index-macros-builtin,
4486 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
4487 reftex-query-index-macro-help): New constants
4488 (reftex-index-selection-or-word, reftex-index,
4489 reftex-default-index, reftex-update-default-index,
4490 reftex-index-complete-tag, reftex-index-select-tag,
4491 reftex-index-complete-key, reftex-index-update-taglist,
4492 reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
4493 reftex-display-index, reftex-insert-index,
4494 reftex-index-insert-new-letter, reftex-get-restriction,
4495 reftex-index-pre-command-hook, reftex-index-post-command-hook,
4496 reftex-index-show-help, reftex-index-next, reftex-index-previous,
4497 reftex-index-toggle-follow, reftex-index-toggle-context,
4498 reftex-index-view-entry, reftex-index-goto-entry-and-hide,
4499 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
4500 reftex-index-quit, reftex-index-quit-and-kill,
4501 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
4502 reftex-index-revert, reftex-index-switch-index-tag,
4503 reftex-index-restrict-to-section, reftex-index-widen,
4504 reftex-index-restriction-forward,
4505 reftex-index-restriction-backward, reftex-index-visit-location,
4506 reftex-index-analyze-entry, reftex-index-globalize,
4507 reftex-index-edit, reftex-index-toggle-range-beginning,
4508 reftex-index-toggle-range-end, reftex-index-edit-key,
4509 reftex-index-edit-attribute, reftex-index-edit-visual,
4510 reftex-index-edit-part, reftex-index-level-down,
4511 reftex-index-level-up, reftex-index-kill, reftex-index-undo,
4512 reftex-index-change-entry, reftex-index-goto-letter,
4513 reftex-add-index-macros, reftex-ensure-index-support,
4514 reftex-index-info-safe, reftex-index-info): New functions.
4515
4516
4517 1999-08-15 Richard M. Stallman <rms@gnu.org>
4518
4519 * paren.el (show-paren-mode): Support making show-paren-mode
4520 a buffer-local variable. Don't check for a window system.
4521 (show-paren-function): Check whether show-paren-function is
4522 enabled in current buffer; do the right thing if not.
4523 Don't check for a window system.
4524 (show-paren-mode): Make it a user variable.
4525
4526 * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
4527 Handle `enum' like `struct'.
4528
4529 * server.el (server-process-filter): If a client visits no buffers,
4530 close it immediately before recording it.
4531
4532 * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
4533 Optimize by calling concat just once. Handle =\n sequence.
4534 (mail-unquote-printable-region): New command.
4535 (mail-quote-printable): Make it autoload.
4536
4537 1999-08-15 Karl Heuer <kwzh@gnu.org>
4538
4539 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
4540
4541 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
4542
4543 * lisp/texinfmt.el: Handle @ifnottex.
4544
4545 1999-08-15 Eli Zaretskii <eliz@gnu.org>
4546
4547 * frame.el (blink-cursor): Don't turn on cursor blinking for
4548 ms-dos.
4549
4550 * faces.el (face-valid-attribute-values): Look in
4551 x-bitmap-file-path only for x and w32 window systems.
4552
4553 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
4554 Do that if width is nil as well.
4555 (x-display-mm-height, x-display-mm-width): Update values.
4556 (x-colors): Compute the list from msdos-color-values.
4557 (x-select-enable-clipboard): Doc fix.
4558 (x-frob-font-weight, x-font-family-list): New functions.
4559
4560 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk>
4561
4562 * window.el (shrink-window-if-larger-than-buffer): Don't try to
4563 back up from beginning of buffer.
4564
4565 1999-08-13 Karl Heuer <kwzh@gnu.org>
4566
4567 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
4568
4569 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>
4570
4571 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G
4572 doomsday clock, speed control is added and changes are made to
4573 allow large numbers of rings: rings now show the whole ring
4574 number, not just the last digit; consecutive rings are allowed to
4575 be the same size when necessary to fit all the rings in the
4576 window; and poles can be oriented horizontally. Face support is
4577 thrown in gratuitously.
4578 (hanoi): Changed default number of rings back to 3.
4579 (hanoi-unix, hanoi-unix-64): New commands
4580 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
4581 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
4582 hanoi-odd-ring-face): New variables.
4583 (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
4584 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
4585 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
4586 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
4587 (hanoi-topos, hanoi-draw-ring): Removed.
4588
4589 1999-08-12 Gerd Moellmann <gerd@gnu.org>
4590
4591 * faces.el (face-valid-attribute-values): Return an alist for
4592 families on ttys.
4593 (face-read-integer): Handle unspecified face attributes. Add
4594 completion for `unspecified'.
4595 (read-face-attribute): Handle unspecified font attributes.
4596 (face-valid-attribute-values): Add `unspecified' to lists so that
4597 it can be chosen via completion.
4598 (face-read-string): Don't recognize "none" as input.
4599
4600 1999-08-10 Dave Love <fx@gnu.org>
4601
4602 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
4603 string.
4604
4605 * sun-curs.el: Require sun-fns.
4606
4607 1999-08-10 Dave Love <fx@gnu.org>
4608
4609 * autorevert.el (auto-revert-mode): Add autoload cookie.
4610
4611 * hscroll.el, auto-show.el: Files deleted -- we have built-in
4612 hscroll.
4613
4614 * simple.el (hscroll-step, hscroll-point-visible)
4615 (hscroll-window-column): Remove now we have the mentioned real
4616 horizontal autoscrolling.
4617
4618 1999-08-10 Richard M. Stallman <rms@gnu.org>
4619
4620 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
4621 control use of -f option.
4622 (mail-specify-envelope-from): New variable.
4623 (mail-from-style): Doc fix.
4624
4625 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
4626 (easy-menu-get-map): New arg TO-MODIFY helps choose
4627 between local and global maps.
4628 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
4629 (easy-menu-change): Doc fix.
4630
4631 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
4632 (info-lookup-guess-default): Simplified and cleaned up.
4633 (info-lookup-guess-default*): Preserve point.
4634
4635 * view.el (view-mode-disable): If buffer-read-only is nil,
4636 don't change it.
4637
4638 * files.el (after-find-file): Disable View mode if buffer is no
4639 longer read-only.
4640
4641 * view.el (view-mode-enable, view-mode-disable):
4642 Call force-mode-line-update.
4643
4644 1999-08-10 Karl Heuer <kwzh@gnu.org>
4645
4646 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
4647 * array.el, play/landmark.el, international/latin-3.el: Likewise.
4648 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
4649
4650 1999-08-10 Alex Schroeder <asc@bsiag.com>
4651
4652 * ansi-color.el (ansi-color-to-text-properties): Added New state 5
4653 to prevent m-eating-bug.
4654
4655 1999-08-10 Eli Zaretskii <eliz@gnu.org>
4656
4657 * term/pc-win.el (msdos-bg-mode): Remove. Call
4658 frame-set-background-mode instead. All callers changed.
4659 (msdos-face-setup): Don't force color display parameter, it is set
4660 by frame-set-background-mode.
4661 (make-msdos-frame): Call x-handle-reverse-video and
4662 face-set-after-frame-default. Delete frame if creation failed.
4663
4664 * faces.el (face-set-after-frame-default): Don't call
4665 make-face-x-resource-internal for the pc window-system.
4666
4667 1999-08-10 Dave Love <fx@melange.gnu.org>
4668
4669 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
4670 case with no docstring specially.
4671
4672 1999-08-09 Eli Zaretskii <eliz@gnu.org>
4673
4674 * complete.el (PC-do-completion): If completing on file name,
4675 reproduce str by concatenating its directory and basename parts.
4676
4677 1999-08-07 Dave Love <fx@gnu.org>
4678
4679 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid
4680 unibyte to multibyte conversion of search-forward (from Handa),
4681 but avoid the replacement if the language is Latin-N.
4682
4683 1999-08-06 Richard Stallman <rms@gnu.org>
4684
4685 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
4686 of eval-buffer.
4687
4688 * international/mule.el (load-with-code-conversion):
4689 Pass t to eval-buffer for DO-ALLOW-PRINT.
4690
4691 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
4692
4693 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
4694 of filenames and attributes.
4695 (ls-lisp-insert-directory): Use directory-files-and-attributes
4696 for speed.
4697
4698 1999-08-05 Dave Love <fx@gnu.org>
4699
4700 * auto-show.el (auto-show-mode): Fix :set.
4701
4702 * widget.el (define-widget-keywords): Make dummy definition and
4703 comment-out its use.
4704
4705 1999-08-04 Richard Stallman <rms@gnu.org>
4706
4707 * progmodes/tcl.el: Customized.
4708
4709 * sql.el (sql-accumulate-and-indent): Instead of testing
4710 whether this is Emacs 20 before calling comint-accumulate,
4711 test whether comint-accumulate is defined.
4712
4713 1999-08-04 Dave Love <fx@gnu.org>
4714
4715 * sgml-mode.el: Require outline when compiling.
4716 (sgml-mode-hook, html-mode-hook): Customize.
4717 (sgml-validate-command): Fix :version.
4718 (html-autoview-mode): Doc fix.
4719
4720 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
4721 nothing in Latin-N environment.
4722
4723 * info.el (Info-find-node): Call info-initialize here.
4724 (info): Not here.
4725 (Info-file-list-for-emacs): Add message, dired-x, c, viper.
4726
4727 1999-08-04 Richard Stallman <rms@gnu.org>
4728
4729 * ansi-color.el: New file.
4730
4731 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
4732
4733 * dired.el (dired-string-replace-match): Return `nil' when no match
4734 found with global search.
4735
4736 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
4737 * terminal.el (te-terminfo-directory):
4738 * mail/mailpost.el (post-mail-send-it):
4739 * mail/metamail.el (metamail-region):
4740 * progmodes/ada-mode.el (ada-tmp-directory):
4741 Use temporary-file-directory.
4742
4743 * progmodes/compile.el (compilation-parsing-end,compilation-setup)
4744 (compilation-filter, compilation-forget-errors)
4745 (compilation-parse-errors): Use a marker instead of an integer for
4746 `compilation-parsing-end'.
4747
4748 * progmodes/diff.el (diff-parse-differences):
4749 Use a marker instead of an integer for `compilation-parsing-end'.
4750 * textmodes/tex-mode.el (tex-compilation-parse-errors):
4751 Use a marker instead of an integer for `compilation-parsing-end'.
4752
4753 1999-08-03 Richard Stallman <rms@gnu.org>
4754
4755 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
4756 (Buffer-menu-mode): Doc fix.
4757 (Buffer-menu-view): New command.
4758 (Buffer-menu-view-other-window): New command.
4759
4760 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com>
4761
4762 * replace.el (query-replace-regexp-eval)
4763 (replace-eval-replacement, replace-loop-through-replacements)
4764 (replace-match-string-symbols): New functions.
4765 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
4766 Use replace-loop-through-replacements.
4767
4768 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk>
4769
4770 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
4771 (5x5): Doc fix.
4772
4773 1999-08-03 Dave Love <fx@gnu.org>
4774
4775 * fortran.el (fortran-indent-new-line): Make it an alias
4776 for reindent-then-newline-and-indent.
4777
4778 1999-08-03 Didier Verna <verna@inf.enst.fr>
4779
4780 * rect.el: All functions rewritten, except when noted above
4781 their declaration. Below is a list of interface changes.
4782 (apply-on-rectangle): New function, mostly replaces
4783 `operate-on-rectangle'. All callers changed.
4784 (move-to-column-force): Pass new second argument to `move-to-column'.
4785 (kill-rectangle): Added optional prefix arg to fill lines.
4786 (delete-rectangle): Ditto.
4787 (delete-whitespace-rectangle): Ditto.
4788 (delete-extract-rectangle): Ditto.
4789 (open-rectangle): Ditto.
4790 (clear-rectangle): Ditto.
4791 (delete-whitespace-rectangle-line): New function.
4792 (delete-rectangle-line): Added third arg FILL.
4793 (delete-extract-rectangle-line): Ditto.
4794 (open-rectangle-line): Ditto.
4795 (clear-rectangle-line): Ditto.
4796
4797 1999-08-03 Ray Blaak <blaak@gnu.org>
4798
4799 * progmodes/delphi.el: New file.
4800
4801 1999-08-02 Richard Stallman <rms@gnu.org>
4802
4803 * textmodes/outline.el (outline-previous-heading): New function.
4804 (outline-up-heading-all): Use outline-previous-heading.
4805 (outline-next-heading): Delete definition inserted yesterday.
4806
4807 1999-08-01 Richard Stallman <rms@gnu.org>
4808
4809 * textmodes/outline.el (outline-next-heading): New function.
4810 (outline-up-heading-all): New function.
4811 (outline-font-lock-level): Using outline-up-heading-all.
4812 Tell outline-back-to-heading to accept invisible headings.
4813
4814 * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
4815
4816 * mail/mh-utils.el (mh-find-path-run): New variable.
4817 (mh-find-path): Test and set that.
4818 Set mail-user-agent only the first time this function is run.
4819 (mail-user-agent): Defvar deleted.
4820
4821 * info.el (info-initialize): New function.
4822 (info): Call info-initialize.
4823 (Info-directory-list): Initialize to nil,
4824 so info-initialize will set it up for real.
4825
4826 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4827
4828 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
4829 does not interpret a time as the year in a day-month entry.
4830
4831 * calendar/diary-lib.el: Change syntax table entry for colon in
4832 the diary as part of the european-date-diary-pattern fix.
4833
4834 1999-08-01 Eli Zaretskii <eliz@gnu.org>
4835
4836 * international/mule.el (set-auto-coding): Allow whitespace before
4837 and after the "variable: value" pair.
4838
4839 1999-07-30 Ken'ichi Handa <handa@gnu.org>
4840
4841 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
4842 (default-sendmail-coding-system): Doc-string fixed.
4843
4844 1999-07-30 Dave Love <fx@gnu.org>
4845
4846 * subr.el (assoc-delete-all): New function, renamed from
4847 frame-delete-all.
4848
4849 * frame.el: Change comments to doc strings and other doc fixes.
4850 (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
4851 Callers changed.
4852 (set-background-color, set-foreground-color, set-cursor-color)
4853 (set-mouse-color, set-border-color): Offer completion of colours.
4854 (cursor): Add :version to defgroup.
4855
4856 * facemenu.el (list-colors-display): Make it work on ttys.
4857 (facemenu-read-color): Likewise.
4858
4859 1999-07-30 Richard M. Stallman <rms@gnu.org>
4860
4861 * frame.el (frame-notice-user-settings): If background
4862 color has been changed, update background-mode from it,
4863 then update faces.
4864
4865 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com>
4866
4867 * net-utils.el (finger): Don't do indirect fingering.
4868
4869 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4870
4871 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
4872 rules. Add separator at end of holidays.
4873 (cal-tex-rules): New customizable variable.
4874 (cal-tex-latexify-list): Add optional parameter to put separator
4875 at end.
4876
4877 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu>
4878
4879 * textmodes/fill.el (fill-individual-paragraphs): Calculate new
4880 fill prefix on each line while looping to the end of paragraph.
4881 End paragraph if it's longer than the existing fill prefix.
4882
4883 * textmodes/fill.el (fill-context-prefix): Doc fix.
4884
4885 1999-07-30 Dave Love <fx@gnu.org>
4886
4887 * font-lock.el (jit-lock): Fix :load, add :version.
4888
4889 1999-07-30 Eli Zaretskii <eliz@gnu.org>
4890
4891 * term/pc-win.el (msdos-face-setup): Register standard colors in
4892 Vface_tty_color_alist.
4893 (face-color-supported-p, face_color_gray_p): New functions.
4894
4895 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
4896 is bound.
4897
4898 * startup.el (command-line): Don't register default colors for
4899 MSDOS window-system.
4900
4901 1999-07-29 Dave Love <fx@gnu.org>
4902
4903 * f90.el (f90-mode-syntax-table): Change backslash to escape, not
4904 charquote.
4905
4906 * lisp-mode.el (eval-defun): Re-written to avoid
4907 capturing variables.
4908
4909 * picture.el (picture-beginning-of-line): Don't call
4910 hscroll-point-visible now we have real autoscrolling.
4911 (picture-end-of-line, picture-newline, picture-open-line):
4912 Likewise.
4913
4914 * international/latin-8.el: New file.
4915 * international/latin-9.el: New file.
4916
4917 1999-07-28 Dave Love <fx@gnu.org>
4918
4919 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
4920
4921 * msb.el: Require cl only when compiling.
4922 (msb--home-dir): Deleted.
4923 (msb--format-title): Use abbreviate-file-name.
4924 (msb--choose-file-menu): Simplify string comparison.
4925
4926 1999-07-28 Gerd Moellmann <gerd@gnu.org>
4927
4928 * faces.el (toolbar): Add face definition for mono displays.
4929
4930 1999-07-27 Richard M. Stallman <rms@gnu.org>
4931
4932 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
4933
4934 * frame.el (frame-initialize): When setting frame-initial-frame-alist,
4935 force copying of default-frame-alist.
4936
4937 1999-07-26 Ken'ichi Handa <handa@gnu.org>
4938
4939 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
4940
4941 1999-07-26 Richard M. Stallman <rms@gnu.org>
4942
4943 * frame.el (set-mouse-color): If new color is nil,
4944 really respecify the current color.
4945
4946 1999-07-26 Gerd Moellmann <gerd@gnu.org>
4947
4948 * faces.el (bitmap-area): Change background of face `bitmap-area'
4949 to white for mono displays.
4950
4951 1999-07-26 Kenichi Handa <handa@etl.go.jp>
4952
4953 * international/ccl.el (ccl-embed-symbol): New function.
4954 (ccl-program-p): Deleted. Now it's implemented in C code.
4955 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
4956 (ccl-compile-translate-character): Likewise.
4957 (ccl-compile-map-single): Likewise.
4958 (ccl-compile-multiple-map-function): Likewise.
4959 (declare-ccl-program): Doc-string modified.
4960 (check-ccl-program): Check compiled CCL code by ccl-program-p.
4961
4962 1999-07-25 Ken'ichi Handa <handa@etl.go.jp>
4963
4964 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
4965
4966 1999-07-25 Markus Rost <rost@gnu.org>
4967
4968 * cus-edit.el (custom-save-variables, custom-save-faces): Sort
4969 the entries to make custom-file more readable.
4970
4971 1999-07-25 Richard M. Stallman <rms@gnu.org>
4972
4973 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
4974
4975 * emacs-lisp/edebug.el: Delete compatibility code.
4976 (edebug-next-token-class): If . is followed by a digit,
4977 return `symbol' for the token class.
4978
4979 * startup.el (command-line): If we don't find the user's init file,
4980 set user-init-file to nil.
4981
4982 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
4983
4984 * info-look.el (info-lookup-interactive-arguments): Add optional
4985 argument query for new choice of help mode.
4986 (info-lookup-symbol): Use it.
4987 (info-lookup-file): Ditto.
4988 (info-lookup): Don't switch to other window, if already in Info
4989 buffer.
4990
4991 1999-07-23 Dave Love <fx@gnu.org>
4992
4993 * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
4994 syntax.
4995 (fortran-fontify-string, fortran-match-!-comment): Deleted.
4996 (fortran-font-lock-syntactic-keywords): New variable.
4997 (fortran-mode): Use it.
4998 (fortran-font-lock-keywords-1): Don't do comments.
4999 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
5000 match data.
5001
5002 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
5003
5004 * msb.el (msb-menu-bar-update-buffers): Renamed from
5005 menu-bar-update-buffers.
5006 (msb-custom-set, msb--toggle-menu-type): Call
5007 msb-menu-bar-update-buffers.
5008 (msb-mode): Revise the hook setting.
5009
5010 * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
5011
5012 1999-07-23 Gerd Moellmann <gerd@gnu.org>
5013
5014 * font-lock.el, help.el, simple.el: Re-integrate previously
5015 described changes that were lost due to errors while checking them
5016 in.
5017
5018 1999-07-23 Kevin Blake <kblake@ticnet.com>
5019
5020 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
5021
5022 1999-07-23 Ken'ichi Handa <handa@etl.go.jp>
5023
5024 * international/encoded-kb.el
5025 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
5026 but push it to unread-command-events.
5027 (encoded-kbd-self-insert-iso2022-8bit): Likewise.
5028 (encoded-kbd-self-insert-sjis): Likewise.
5029 (encoded-kbd-self-insert-big5): Likewise.
5030
5031 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
5032 before left margin and fill-prefix by fill-find-break-point.
5033
5034 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5035
5036 * info-look.el (info-lookup-setup-mode): Don't give up, if
5037 info-lookup-make-completions returns an error.
5038 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
5039 name latex, not latex2e.
5040
5041 1999-07-21 Richard M. Stallman <rms@gnu.org>
5042
5043 * replace.el (perform-replace): Turn off case-fold-search
5044 if FROM-STRING argument has uppercase in it.
5045
5046 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5047
5048 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
5049 mode is on. Don't use end of changed text.
5050
5051 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5052
5053 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
5054 (cl-hash-table-p): Renamed from hash-table-p.
5055 (cl-hash-table-count): Renamed from hash-table-count.
5056 (maphash): Alias to cl-maphash removed.
5057 (gethash): Likewise.
5058 (puthash): Likewise.
5059 (remhash): Likewise.
5060 (clrhash): Likewise.
5061
5062 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5063
5064 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
5065 third arg non-nil. See comment there why this isn't a good idea.
5066
5067 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5068
5069 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
5070
5071 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
5072 sit-for with 3rd arg non-nil to prevent redisplay.
5073
5074 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5075
5076 * image.el (image-type-from-file-header): If file doesn't
5077 have a directory part, add data-directory.
5078
5079 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5080
5081 * tooltip.el (tooltip-gud-tips-p): Set default to nil.
5082 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
5083 motion handling when tooltip-gud-tips-p is nil.
5084
5085 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5086
5087 * tooltip.el (tooltip-mode): Don't use `plusp'.
5088 (tooltip-active): Use initial value of nil.
5089
5090 * jit-lock.el (jit-lock-mode): Don't use `plusp'.
5091
5092 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5093
5094 * bindings.el (make-mode-line-mouse-sensitive): Add key
5095 definitions for `top-line'.
5096
5097 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5098
5099 * faces.el (top-line): New face.
5100
5101 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5102
5103 * image.el (image-type-regexps): Add regexp for PS files.
5104
5105 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5106
5107 * faces.el (set-face-attribute): Fix wrong handling of frame
5108 begin equal to t.
5109
5110 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5111
5112 * image.el (image-type-regexps): Add PNG format.
5113
5114 1999-07-21 Dave Love <fx@gnu.org>
5115
5116 * bindings.el (mode-line-modified): New variable.
5117 (mode-line-mode-menu-1): Switch to appropriate window before
5118 showing menu.
5119
5120 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5121
5122 * faces.el (face-underline): Removed.
5123 (face-underline-color): Ditto.
5124
5125 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5126
5127 * faces.el (face-x-resources): Fix typo.
5128
5129 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5130
5131 * faces.el: Remove handling of `:relief', extend handling of
5132 `:box'.
5133 (frame-set-background-mode): Choose new defface specs after
5134 frame parameters have changed.
5135
5136 * cus-face.el: Ditto.
5137
5138 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5139
5140 * custom.el (defface): Extend documentation to include new
5141 face attributes.
5142
5143 * cus-face.el (custom-face-attributes): Add overline,
5144 strike-through, box.
5145
5146 * faces.el (face-valid-attribute-values): Handle overline,
5147 strike-through, box.
5148 (face-attribute-name-alist): Add pairs for new face attributes.
5149 (describe-face): Handle new face attributes.
5150
5151 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5152
5153 * faces.el (face-x-resources): Add overline, strike-through, box.
5154
5155 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5156
5157 * enriched.el (enriched-translations): Add `display' and
5158 "x-display".
5159 (enriched-handle-display-prop): New.
5160 (enriched-decode-display-prop): New.
5161
5162 * format.el (top-level): Give `display' property
5163 `format-list-atomic-p.
5164 (format-annotate-single-property-change): Test that property.
5165 If present, treat list property values like atoms.
5166
5167 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5168
5169 * cus-face.el (custom-face-attributes): Use `choice' everywhere
5170 so that "*" can be entered.
5171
5172 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5173
5174 * cus-face.el (custom-face-attributes): Don't use `#''.
5175
5176 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5177
5178 * cus-face.el (custom-face-attributes): Return underline
5179 face attribute directly from the second lambda of underline.
5180
5181 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5182
5183 * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
5184
5185 * frame.el (after-setting-font-hooks): New variable.
5186 (set-frame-font): Run those hooks.
5187
5188 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
5189
5190 * faces.el (set-face-attribute): Fix doc string.
5191
5192 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5193
5194 * cus-face.el (custom-face-attributes): Accept color name.
5195
5196 * faces.el (face-underline-p): Accept unspecified underlining.
5197 (face-underline): Ditto. Fix doc string.
5198
5199 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5200
5201 * faces.el (face-underline-color): New function.
5202
5203 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5204
5205 * cus-face.el (custom-face-attributes): Support underline coloring.
5206 Added slot to choose a color.
5207
5208 * faces.el (face-underline): New function.
5209 (face-underline-p): Support underline coloring.
5210 Return nil only if the underline attribute is 'normal.
5211 (set-face-underline): New function.
5212 (face-valid-attribute-values): Support underline coloring.
5213
5214 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5215
5216 * image.el (insert-image): Use `display' instead of `glyph'
5217 as text property name.
5218 (put-image): Ditto.
5219 (image-type-from-file-header): Use insert-file-contents-literally.
5220
5221 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5222
5223 * easymenu.el (easy-menu-do-add-item): Don't use the empty
5224 string to indicate separators.
5225
5226 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5227
5228 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
5229 instead of message-log.
5230
5231 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5232
5233 * faces.el (bitmap-area): New face.
5234
5235 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5236
5237 * image.el (insert-image): New.
5238
5239 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5240
5241 * frame.el (blink-cursor): Set the symbol's value.
5242 (show-trailing-whitespace): Change group to font-lock.
5243
5244 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5245
5246 * jit-lock.el: New.
5247 * font-lock.el: Add jit-mode as new support mode.
5248
5249 * font-lock.el (font-lock-fontify-keywords-region): Stop when
5250 reaching end instead of letting re-search-forward signal an error.
5251 (demand-lock-mode): New.
5252 (font-lock-turn-on-thing-lock): Add demand-lock-mode.
5253 (font-lock-turn-off-thing-lock): Ditto.
5254 (font-lock-after-fontify-buffer): Ditto.
5255 (font-lock-after-unfontify-buffer): Ditto.
5256
5257 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5258
5259 * gs.el: New file.
5260
5261 * startup.el (command-line-1): Activate tooltip mode if
5262 interactive.
5263
5264 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5265
5266 * faces.el (toolbar): Grey default background.
5267 (modeline): Ditto.
5268
5269 * image.el (image-type-regexps): New.
5270 (image-type-from-file-header): New.
5271 (create-image): Call it.
5272
5273 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5274
5275 * image.el: New file.
5276
5277 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5278
5279 * bindings.el (mode-line-format): Replace `mode-name' with
5280 `(:eval mode-line-mode-name)'.
5281 (mode-line-mode-name): New.
5282 (make-mode-line-mouse-sensitive): Don't change default value
5283 of `mode-name'.
5284
5285 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5286
5287 * tooltip.el: New file.
5288
5289 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5290
5291 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
5292 instead of mouse-3 to pop up menus.
5293 (mode-line-kill-buffer): Removed.
5294 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
5295 buffer name.
5296 (mode-line-buffer-menu-1): Removed.
5297
5298 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
5299
5300 * bindings.el (mode-line-buffer-identification-keymap): New.
5301 (mode-line-buffer-menu-keymap): New.
5302 (mode-line-mode-menu-keymap): New.
5303 (mode-line-unbury-buffer): New.
5304 (mode-line-other-buffer): New.
5305 (mode-line-kill-buffer): New.
5306 (mode-line-buffer-menu-1): New.
5307 (mode-line-mode-menu-1): New.
5308 (make-mode-line-mouse-sensitive): New.
5309
5310 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5311
5312 * help.el (describe-key-briefly): Handle mode line strings
5313 with local-map properties.
5314 (describe-key): Ditto.
5315 (mode-line-key-binding): New.
5316
5317 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5318
5319 * scroll-bar.el (scroll-bar-timer): New.
5320 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
5321
5322 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5323
5324 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
5325 and `bottom'.
5326
5327 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5328
5329 * scroll-bar.el (scroll-bar-toolkit-scroll): New.
5330 (global): Use different key bindings if using tookit scroll bars.
5331
5332 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5333
5334 * faces.el (modeline): Define mode line face with relief for
5335 class color, only.
5336 (toolbar): New face.
5337
5338 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5339
5340 * frame.el (frame-initialize): Set frame-creation-function to
5341 tty-create-frame-with-faces.
5342
5343 * faces.el (frame-set-background-mode): Make it work for
5344 window-system nil.
5345
5346 * faces.el (tty-create-frame-with-faces): New.
5347 (face-set-after-frame-default): Make it work for TTY frames.
5348
5349 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5350
5351 * faces.el (face-valid-attribute-values): Use tty-defined-colors.
5352 Return a list of one font family for TTYs. Don't return bitmap
5353 file paths for TTY frames.
5354
5355 * faces.el: Add face specs for tty displays to basic faces.
5356
5357 * font-lock.el (font-lock-comment-face): Add spec for color tty.
5358 (font-lock-string-face): Ditto.
5359 (font-lock-keyword-face): Ditto.
5360 (font-lock-builtin-face): Ditto.
5361 (font-lock-function-name-face): Ditto.
5362 (font-lock-variable-name-face): Ditto.
5363 (font-lock-type-face): Ditto.
5364 (font-lock-constant-face): Ditto.
5365 (font-lock-warning-face): Ditto.
5366
5367 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5368
5369 * startup.el (command-line): Register default tty colors.
5370
5371 * faces.el (face-spec-set-match-display): Recognize `type tty'.
5372
5373 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5374
5375 * faces.el (modeline): For X frames, use a modeline with relief.
5376
5377 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5378
5379 * faces.el (frame-update-faces): Copied from 20.2.
5380 (frame-update-face-colors): Ditto. Code removed that isn't
5381 applicable in the new face implementation.
5382
5383 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5384
5385 * frame.el (show-trailing-whitespace): New.
5386
5387 * faces.el (trailing-whitespace): New basic face.
5388
5389 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5390
5391 * cus-face.el (custom-facep): Always define as alias for facep.
5392
5393 * cus-face.el (custom-face-attributes): Use choice widgets.
5394 Remove :bold and :italic.
5395
5396 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5397
5398 * faces.el (face-charset-registries): Removed since fontset.el
5399 is no always loaded.
5400
5401 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5402
5403 * faces.el (internal-get-face): Added as obsolete function for
5404 compatibility.
5405
5406 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5407
5408 * frame.el (blink-cursor-end): Call show-cursor.
5409 (blink-cursor-mode): Ditto.
5410
5411 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5412
5413 * faces.el (face-spec-reset-face): Reset all attributes to
5414 `unspecified'.
5415 (face-spec-set): Use it.
5416
5417 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5418
5419 * faces.el (read-all-face-attributes): Bug fix.
5420 (face-read-integer): Allow nil default value.
5421 (face-valid-attribute-values): Use symbol names of attribute
5422 values for completion list.
5423
5424 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5425
5426 * faces.el (internal-find-face): Define for compatibility with
5427 20.2.
5428 (face-id): Likewise.
5429
5430 * faces.el (face-id): Return the ID of a realized face for ASCII.
5431
5432 * fontset.el (x-charset-registries): Removed. Now in faces.el.
5433 (x-complement-fontset-spec): Use face-charset-registries.
5434
5435 * faces.el (face-font-selection-order): Set font selection order
5436 from Lisp.
5437 (face-alternative-font-family-alist): Set alternative font
5438 families from Lisp.
5439
5440 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5441
5442 * faces.el (set-face-charset-registries): Set symbol value.
5443
5444 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5445
5446 * faces.el (face-set-after-frame-default): Call function
5447 internal-merge-in-global-face.
5448
5449 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5450
5451 * faces.el (face-list): Return symbols from face-global-alist.
5452
5453 * faces.el (face-list): Return a copy of the face name list so
5454 that it cannot be modified from outside (facemenu.el uses
5455 nreverse, for example).
5456
5457 * cus-face.el (custom-face-attributes): Add :bold and :italic
5458 for compatibility with old code.
5459
5460 * faces.el (set-face-attributes-from-resources): Additional
5461 frame parameter.
5462 (make-face-x-resource-internal): Set attributes from resources
5463 for a given frame or all frames.
5464
5465 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5466
5467 * faces.el (all-faces): Removed.
5468
5469 * custom.el (defface): Add new face attributes to function
5470 comment.
5471
5472 * font-lock.el (font-lock-comment-face): Use new face attribute
5473 names.
5474 (font-lock-string-face): Ditto.
5475 (font-lock-keyword-face): Ditto.
5476 (font-lock-builtin-face): Ditto.
5477 (font-lock-function-name-face): Ditto.
5478 (font-lock-variable-name-face): Ditto.
5479 (font-lock-type-face): Ditto.
5480 (font-lock-reference-face): Ditto.
5481 (font-lock-warning-face): Ditto.
5482 ((boundp 'font-lock-face-attributes)): Ditto.
5483
5484 * cus-face.el (custom-face-attributes): Use new face attributes.
5485
5486 * faces.el (set-face-attribute-from-resource): Initialize
5487 from resources only for X and W32.
5488
5489 * cus-face.el (custom-declare-face): Don't make frame-local
5490 faces.
5491
5492 * faces.el (describe-face): Use princ instead of insert.
5493
5494 * faces.el: Add XLFD manipulation functions from 20.2 again
5495 because fontset.el uses them.
5496 (face-set-after-frame-default): Add empty definition.
5497
5498 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5499
5500 * faces.el (make-face): Correct typo.
5501 (set-face-attribute-from-resource): Use let*.
5502 (face-underline-p): Correct typo.
5503 (face-inverse-video-p): Ditto.
5504 (set-face-stipple): Ditto.
5505 (face-read-string): Make completion-list optional parameter.
5506
5507 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5508
5509 * faces.el (face-charset-registries): Alist mapping charset
5510 symbols to registries and encoding.
5511
5512 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5513
5514 * frame.el (blink-cursor-mode): Use interactive spec "P".
5515
5516 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5517
5518 * frame.el (blink-cursor-mode): Function to toggle blinking cursor
5519 mode. The cursor of selected_window blinks if the mode is enabled.
5520
5521 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5522
5523 * simple.el (next-history-element): Set point to the end of the
5524 prompt if minibuffer-prompt-in-buffer.
5525
5526 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5527
5528 * faces.el (x-font-regexp): Add sub-expression parentheses for
5529 several font name components.
5530
5531 1999-07-21 Gerd Moellmann <gerd@acm.org>
5532
5533 * faces.el (set-face-relief): Use index 12 for relief.
5534 (face-fill-in): Set relief from data.
5535 (internal-make-face): Init relief to zero.
5536
5537 * faces.el (face-spec-set): Call modify-face with additional
5538 parameters for relief and fixed-p.
5539
5540 1999-07-21 Gerd Moellmann <gerd@acm.org>
5541
5542 * cus-face.el: ':fixed and ':relief added.
5543
5544 * faces.el (describe-face): Add fixed font attribute and relief.
5545 (face-attr-match-p): Ditto.
5546 (face-attr-construct): Ditto.
5547 (face-spec-set): Ditto.
5548
5549 1999-07-21 Gerd Moellmann <gerd@acm.org>
5550
5551 * faces.el (internal-make-face): Function to create a Lisp vector
5552 suitable for representing a face.
5553 (make-face): Use it instead of make-vector.
5554 (x-create-frame-with-faces): Use it instead of vector.
5555 (internal-facep): Increase vector size to 14.
5556 (internal-make-face): Ditto.
5557 (face-relief): Access relief thickness.
5558 (face-fixed-p): Access fixed font attribute.
5559 (set-face-fixed-p): Set fixed font attribute.
5560 (set-face-relief): Set relief attribute.
5561 (internal-face-interactive-int): Read int attribute of face.
5562 (modify-face): Add fixed-p and relief parameters.
5563 (copy-face): Handle fixed-p and relief.
5564 (face-equal): Compare fixed-p and relief.
5565 (face-differs-from-default-p): Ditto.
5566 (face-nontrivial-p): Add fixed-p and relief.
5567
5568 1999-07-21 Gerd Moellmann <gerd@acm.org>
5569
5570 * faces.el (eval-when-compile): Add set-face-shadow-thickness.
5571 (internal-facep): Increase vector size.
5572 (make-face): Ditto.
5573 (face-shadow-thickness): Added.
5574 (set-face-shadow-thickness): Added.
5575 (modify-face): Add optional shadow-thickness parameter.
5576 (make-face-x-resource-internal): Add shadows.
5577 (copy-face): Ditto.
5578 (face-equal): Ditto.
5579 (face-differs-from-default-p): Ditto.
5580 (face-nontrivial-p): Ditto.
5581 (face-attr-match-p): Ditto.
5582 (face-attr-construct): Ditto.
5583 (face-spec-set): Ditto.
5584 (face-fill-in): Ditto.
5585
5586 1999-07-21 Gerd Moellmann <gerd@acm.org>
5587
5588 * bench.el (bench-mark-split-window): New bench mark.
5589
5590 1999-07-21 Gerd Moellmann <gerd@acm.org>
5591
5592 * faces.el (set-face-font): Don't pass default font to
5593 x-resolve-font so that font will not have to be of the same
5594 size.
5595
5596 1999-07-20 Dave Love <fx@gnu.org>
5597
5598 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
5599 unconditionally t.
5600
5601 1999-07-20 Karl Heuer <kwzh@gnu.org>
5602
5603 * font-lock.el (c++-font-lock-extra-types): Add "type_info".
5604
5605 1999-07-20 Dave Love <fx@gnu.org>
5606
5607 * help.el (describe-variable): Fix test for customizability.
5608
5609 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
5610 Check for readonly buffer in interactive spec.
5611 (zap-to-char, kill-line, kill-region, comment-region, kill-word)
5612 (backward-kill-word): Add * to interactive spec.
5613
5614 * underline.el (underline-region, ununderline-region): Add * to
5615 interactive spec.
5616
5617 * fill.el (canonically-space-region, justify-current-line): Add *
5618 to interactive spec.
5619 (fill-region-as-paragraph, fill-paragraph, fill-region)
5620 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
5621 readonly buffer in interactive spec.
5622
5623 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
5624 (backward-kill-sentence, kill-sentence): Add * to interactive
5625 spec.
5626
5627 1999-07-19 Richard M. Stallman <rms@gnu.org>
5628
5629 * dired-aux.el (dired-do-shell-command): Doc fix.
5630
5631 * shell.el (shell-unquote-argument): New function.
5632 (shell-directory-tracker): Use shell-unquote-argument.
5633 * comint.el (comint-arguments): Handle \ followed by space or tab.
5634
5635 1999-07-19 John Wiegley <jwiegley@borland.com>
5636
5637 * term.el (ansi-term-fg-faces-vector): Added support for ANSI
5638 color codes 39 and 49, which by the way lynx uses them seem to
5639 mean "foreground reset" and "background reset".
5640
5641 1999-07-19 Karl Heuer <kwzh@gnu.org>
5642
5643 * font-lock.el (c++-keywords): Add "typeid".
5644
5645 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
5646 selects no font, treat that as zero selections, not one.
5647
5648 1999-07-19 Dave Love <fx@gnu.org>
5649
5650 * info.el (Info-search): Don't lose with empty regexp.
5651
5652 * version.el: Cater for (free) `ident' program, not `which'.
5653
5654 * hl-line.el: New file.
5655
5656 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
5657 for modes which don't define menus.
5658
5659 1999-07-16 Richard M. Stallman <rms@gnu.org>
5660
5661 * webjump.el (webjump-sample-sites): Update some URLs.
5662
5663 1999-07-14 Richard Stallman <rms@gnu.org>
5664
5665 * Version 20.4 released.
5666
5667 1999-07-14 Andreas Schwab <schwab@gnu.org>
5668
5669 * compare-w.el (compare-windows): Try to find the next window in
5670 the current frame before looking at the other frames.
5671
5672 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
5673
5674 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
5675 Use cyrillic-jcuken as default input method.
5676
5677 1999-07-12 Richard Stallman <rms@gnu.org>
5678
5679 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
5680 Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
5681
5682 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
5683 (ispell-local-dictionary-alist): Add koi8-r for character set.
5684
5685 * textmodes/flyspell.el (flyspell-get-word):
5686 Add special handling for when ispell-otherchars is empty.
5687
5688 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no>
5689
5690 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
5691 when having nested functons.
5692 (pascal-indent-nested-functions) (pascal-indent-line)
5693 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
5694 indenting nested functions.
5695
5696 1999-07-09 Richard Stallman <rms@gnu.org>
5697
5698 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
5699
5700 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no>
5701
5702 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
5703 the `end' keyword was in the very beginning of the buffer.
5704
5705 1999-07-08 Richard Stallman <rms@gnu.org>
5706
5707 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
5708
5709 * term.el (term-emulate-terminal): Avoid infinite loop
5710 in strange case where minibuffer window is selected but not active.
5711
5712 1999-07-07 Stephen Eglen <stephen@gnu.org>
5713
5714 * progmodes/octave-inf.el (inferior-octave-directory-tracker):
5715 Change regexp so that it doesn't match commands beginning with `cd'.
5716
5717 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
5718
5719 * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
5720
5721 1999-07-06 Richard Stallman <rms@gnu.org>
5722
5723 * hscroll.el (hscroll-minibuffer-hook): New function.
5724 (hscroll-global-mode): Add and remove that hook.
5725 Set hscroll-old-truncate-was-global's default value.
5726
5727 1999-07-05 Richard Stallman <rms@gnu.org>
5728
5729 * files.el (revert-buffer): Don't preserve point here.
5730 (revert-buffer-insert-file-contents-function): Doc fix.
5731
5732 * isearch.el (isearch-process-search-char): Write octal 200 correctly.
5733
5734 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
5735 doing a `stat' when it isn't necessary because that can cause
5736 trouble when an NFS server is down.
5737
5738 1999-07-04 Richard Stallman <rms@gnu.org>
5739
5740 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
5741
5742 1999-07-03 Richard Stallman <rms@gnu.org>
5743
5744 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
5745 for \200...\240 also.
5746 (isearch-printing-char): Use unibyte-char-to-multibyte.
5747
5748 1999-07-02 Richard Stallman <rms@gnu.org>
5749
5750 * frame.el (minibuffer-frame-alist): Use defcustom.
5751 (pop-up-frame-alist): Likewise.
5752 (initial-frame-alist): Specify * in the doc string.
5753
5754 * hscroll.el (hscroll-mode): Make it a permanent local.
5755 (hscroll-mode): Don't cancel the timer
5756 if HScroll mode is enabled in some other buffer.
5757
5758 * isearch.el (isearch-done): If search ends in middle of intangible
5759 text (due to text property), move on to the limit of that text.
5760
5761 1999-07-01 Andrew Innes <andrewi@gnu.org>
5762
5763 * man.el (Man-build-man-command): Use value of null-device,
5764 instead of hard-coding "/dev/null".
5765
5766 * dos-w32.el (untranslated-canonical-name): Avoid expanding
5767 ange-ftp file names, which might force ange-ftp to prompt for a
5768 password.
5769
5770 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
5771 to prevent references to temp files.
5772
5773 1999-06-30 Richard Stallman <rms@gnu.org>
5774
5775 * progmodes/sh-script.el (sh-feature): If nothing is known
5776 about the given shell, use the values for `sh'.
5777
5778 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de>
5779
5780 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
5781 to make it non-recursive.
5782
5783 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
5784
5785 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5786
5787 * auto-show.el (auto-show-mode): Fix Typo in :set.
5788
5789 1999-06-29 Richard M. Stallman <rms@gnu.org>
5790
5791 * progmodes/sh-script.el (sh-mode): When setting syntax
5792 table, default to the standard one.
5793
5794 1999-06-27 Richard M. Stallman <rms@gnu.org>
5795
5796 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
5797
5798 1999-06-27 Stefan Monnier <monnier@cs.yale.edu>
5799
5800 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
5801 a frame when `return' is requested (even if pop-up-frames = t)
5802 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
5803 should only be set for the bibtex buffer.
5804
5805 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
5806
5807 * progmodes/compile.el: Deal with compilation-error-screen-columns
5808 being buffer-local.
5809
5810 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
5811
5812 * comint.el (comint-password-prompt-regexp): Allow "(again)".
5813
5814 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5815
5816 * cal-x.el (calendar-only-one-frame-setup): New function.
5817 * calendar.el (calendar): Call it if requested.
5818
5819 1999-06-24 Karl Heuer <kwzh@gnu.org>
5820
5821 * startup.el (iso-8859-n-locale-regexp): Doc fix.
5822
5823 1999-06-22 Richard M. Stallman <rms@gnu.org>
5824
5825 * mail/supercite.el (sc-emacs-features): Doc fix.
5826
5827 1999-06-22 Karl Heuer <kwzh@gnu.org>
5828
5829 * files.el (auto-mode-alist): Add pike-mode.
5830
5831 1999-06-20 Paul R. Eggert <eggert@twinsun.com>
5832
5833 * tar-mode.el (tar-header-block-tokenize): Don't assume that the
5834 last byte of a numeric field is a space or a NUL. Parse it as
5835 potentially part of the number. This is used by GNU tar
5836 1.12.64012 to handle larger values.
5837
5838 1999-06-20 Karl Heuer <kwzh@gnu.org>
5839
5840 * custom.el (custom-handle-keyword): Fix error message.
5841
5842 1999-06-18 Andrew Innes <andrewi@gnu.org>
5843
5844 * mail/smtpmail.el (smtpmail-send-it): Use
5845 convert-standard-filename to make file names for queued mail safe
5846 on Windows (`:' is invalid in file names on Windows).
5847
5848 1999-06-17 Kenichi Handa <handa@etl.go.jp>
5849
5850 * international/mule-cmds.el (describe-current-input-method):
5851 Current-input-method is string.
5852 (toggle-input-method): Docstring fixed.
5853
5854 * international/mule-diag.el
5855 (describe-current-coding-system-briefly): Fix format string.
5856
5857 * international/mule-util.el (coding-system-eol-type-mnemonic):
5858 Docstring modified. Return a string.
5859
5860 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch>
5861
5862 * sql.el (sql-input-ring-file-name): Doc fix.
5863
5864 1999-06-17 Richard M. Stallman <rms@gnu.org>
5865
5866 * calendar/cal-x.el (special-display-buffer-names):
5867 Don't put (get-file-buffer diary-file) on this list.
5868
5869 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov>
5870
5871 * play/mpuz.el (mpuz-try-proposal): Fix message call.
5872 Don't penalize player for certain impossible guesses.
5873
5874 1999-06-16 Andrew Innes <andrewi@gnu.org>
5875
5876 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
5877 return the string "Unk 0 0000" so at least it appears to be a
5878 valid timestamp to `dired-move-to-filename-regexp'.
5879
5880 1999-06-15 Ken'ichi Handa <handa@gnu.org>
5881
5882 * ps-print.el (ps-control-character): Fix previous change.
5883
5884 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5885
5886 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
5887 multiple output of the last message.
5888
5889 1999-06-14 Eli Zaretskii <eliz@gnu.org>
5890
5891 * term/internal.el (IT-display-table-setup): Do not remap \222 to
5892 the ASCII apostrophe, as most DOS codepages have some other glyph
5893 there.
5894
5895 1999-06-14 Ken'ichi Handa <handa@gnu.org>
5896
5897 * language/ethio-util.el (setup-ethiopic-environment-internal):
5898 Use quail-activate-hook instead of obsolete hook quail-mode-hook.
5899 (exit-ethiopic-environment): Likewize.
5900
5901 1999-06-12 Richard M. Stallman <rms@gnu.org>
5902
5903 * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
5904
5905 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5906
5907 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
5908 custom-initialize-default to avoid infinite loop.
5909 (crisp-mode): (defun) Call transient-mark-mode here, not when
5910 loading the file. Run crisp-mode-hook here, and run
5911 crisp-load-hook when loading the file.
5912
5913 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
5914 rmail-summary buffer, search for pattern in rmail-file.
5915
5916 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
5917
5918 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
5919
5920 * ps-print.el (ps-printer-name): Fix custom type.
5921
5922 1999-06-12 Reto Zimmermann <reto@synopsys.com>
5923
5924 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
5925 (vhdl-port-paste-generic-map): Fix indentation bug.
5926 (vhdl-port-paste-port-map): Fix indentation bug.
5927 (vhdl-scan-file-contents): Make scanning case insensitive.
5928
5929 1999-06-11 Richard M. Stallman <rms@gnu.org>
5930
5931 * files.el (write-file): When buffer is not already visiting a file,
5932 don't put buffer name in the minibuffer, just make it the default.
5933 Also handle just directory as arg usefully in that case.
5934
5935 * simple.el (sendmail-user-agent-compose):
5936 Ignore case when inserting the rest of the "other" headers.
5937
5938 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n.
5939
5940 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
5941 (info-lookup-interactive-arguments): Never insert the default
5942 into the minibuffer automatically.
5943
5944 * emacs-lisp/cl-extra.el (getf): Don't call get*.
5945
5946 1999-06-09 Richard M. Stallman <rms@gnu.org>
5947
5948 * simple.el (shell-command): Avoid printing "mark set" message.
5949
5950 1999-06-09 Dave Love <fx@gnu.org>
5951
5952 * progmodes/compile.el (compilation-error-regexp-alist): Allow
5953 digits in program name in first pattern.
5954
5955 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de>
5956
5957 * vc.el (vc-dired-mode): Don't match anything before the date in
5958 dired-move-to-filename-regexp.
5959
5960 1999-06-07 Ken'ichi Handa <handa@gnu.org>
5961
5962 * international/quail.el (quail-define-rules): Fix typo in
5963 docstring.
5964
5965 1999-06-05 Stephen Eglen <stephen@gnu.org>
5966
5967 * iswitchb.el (iswitchb-default-keybindings): Add
5968 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
5969 than when package is loaded.
5970
5971 1999-06-04 Richard M. Stallman <rms@gnu.org>
5972
5973 * startup.el (command-line): Don't set user-init-file directly;
5974 tell `load' to set it.
5975
5976 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
5977
5978 * simple.el (next-history-element):
5979 Handle minibuffer-text-before-history properly when reading sexps.
5980
5981 * disp-table.el (standard-display-european):
5982 For an interactive call by the user,
5983 don't set enable-multibyte-characters,
5984 and don't set the terminal coding system.
5985
5986 * textmodes/refbib.el: Don't print any messages or display
5987 a buffer when loading the library.
5988 (r2b-help): Doc fix.
5989 (r2b-help-message): Update the documentation.
5990 (r2b-load-quietly): Variable deleted.
5991 (r2b-convert-buffer): Doc fix.
5992
5993 1999-06-04 Dave Love <fx@gnu.org>
5994
5995 * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
5996
5997 * auto-show.el: Don't change hooks on loading.
5998 (auto-show-mode): Autoload. Default to nil. Add :set &c.
5999 (auto-show-mode): Add to hooks here.
6000
6001 1999-06-04 Richard Sharman <rsharman@pobox.com>
6002
6003 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
6004 recursion on bogus input.
6005
6006 1999-06-04 Eric M. Ludlam <zappo@ultranet.com>
6007
6008 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
6009 does not select a buffer from the buffers menu, then the attached
6010 frame is not switched to anything.
6011
6012 1999-06-03 Ken'ichi Handa <handa@gnu.org>
6013
6014 * language/vietnamese.el (ccl-encode-vscii): Typo fixed
6015 (viet-viscii-...->viet-vscii...).
6016
6017 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
6018
6019 1999-06-01 Dave Love <fx@gnu.org>
6020
6021 * progmodes/fortran.el: Add :link to defgroup.
6022 (fortran-blink-matching-if): Match ELSE statements too.
6023 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
6024 that filling is always done.
6025
6026 1999-05-31 Richard M. Stallman <rms@gnu.org>
6027
6028 * simple.el (append-next-kill): Use an arg to distinguish
6029 interactive calls from Lisp calls, rather than (interactive-p).
6030
6031 * international/iso-transl.el (iso-transl-language-alist):
6032 Interchange n and N.
6033
6034 1999-05-31 Dave Love <fx@gnu.org>
6035
6036 * msb.el Add to minor-mode-map-alist. Remove hook installation
6037 and keymap munging on load.
6038 (msb-mode): New option.
6039 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
6040 Doc fix.
6041 (msb-mode-map): New variable.
6042 (msb-mode): New command.
6043
6044 1999-05-31 Dave Love <fx@gnu.org>
6045
6046 * ispell.el: (ispell-alternate-dictionary): Fix custom type.
6047 (ispell-complete-word-dict): Likewise.
6048
6049 1999-05-31 Eli Zaretskii <eliz@gnu.org>
6050
6051 * forms.el (forms-save-buffer): Call set-buffer-modified-p to
6052 force the data buffer to be saved, even if the data didn't
6053 change, in case the write filter was modified. Restore the
6054 current record after read-file-filter finishes.
6055
6056 1999-05-29 Karl Heuer <kwzh@gnu.org>
6057
6058 * ispell4.el: Obsolete; file deleted.
6059
6060 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
6061
6062 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
6063 VALUE is a syntax table.
6064
6065 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
6066
6067 * simple.el (zap-to-char): Doc fix.
6068
6069 1999-05-27 Ken'ichi Handa <handa@gnu.org>
6070
6071 * isearch.el (isearch-quote-char): Don't assume character codes
6072 0200 - 0237 stand for characters in some single-byte character
6073 charset.
6074
6075 1999-05-27 Dave Love <fx@gnu.org>
6076
6077 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
6078
6079 1999-05-27 Andreas Schwab <schwab@gnu.org>
6080
6081 * dired-aux.el (dired-insert-subdir-doinsert): Check that the
6082 headerline does not exist already.
6083
6084 1999-05-26 Richard Stallman <rms@gnu.org>
6085
6086 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
6087 Avoid nested null-loops.
6088
6089 1999-05-26 Ken'ichi Handa <handa@gnu.org>
6090
6091 * international/characters.el: Typo fixed; prefered->preferred.
6092
6093 * international/mule-cmds.el (find-coding-systems-for-charsets):
6094 Typo fixed; prefered->preferred.
6095
6096 * map-ynp.el (map-y-or-n-p): Don't inherit the current input
6097 method in read-event.
6098
6099 * international/mule.el (charset-info): Doc-string fixed.
6100
6101 1999-05-25 Ken'ichi Handa <handa@gnu.org>
6102
6103 * mail/smtpmail.el (smtpmail-send-it): Bind
6104 smtpmail-code-conv-from properly.
6105 (smtpmail-send-data-1): If DATA is a multibyte string, encode it
6106 by smtpmail-code-conv-from.
6107
6108 1999-05-24 Richard Stallman <rms@gnu.org>
6109
6110 * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
6111 Binding deleted also.
6112
6113 1999-05-24 Karl Heuer <kwzh@gnu.org>
6114
6115 * comint.el (comint-bol-or-process-mark): Doc fix.
6116
6117 1999-05-23 Dave Love <fx@gnu.org>
6118
6119 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
6120 Enter it on minor-mode-map-alist.
6121 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed.
6122 Autoload. Add custom setter.
6123 (crisp-mark-line): Doc fix.
6124 (crisp-mode): Autoload. Re-write not to frob keymaps directly.
6125 (crisp-mode-hook): Define.
6126
6127 1999-05-23 Ken'ichi Handa <handa@gnu.org>
6128
6129 * files.el (recover-file): Recover buffer-file-coding-system.
6130
6131 1999-05-22 Richard Stallman <rms@gnu.org>
6132
6133 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
6134 regexp match the date, to avoid treating date as file size.
6135 Add YYYY S option to WESTERN/
6136
6137 * bookmark.el: Delete some XEmacs compatibility code.
6138 (bookmark-jump-noselect): Check vc-backend.
6139
6140 * subr.el (add-to-list): Doc fix.
6141
6142 1999-05-21 Stephen Eglen <stephen@gnu.org>
6143
6144 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
6145
6146 1999-05-18 Richard Stallman <rms@gnu.org>
6147
6148 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
6149 non-space after the @anchor command.
6150 (texinfo-format-var): Handle other nested constructs, using
6151 texinfo-parse-expanded-arg and texinfo-discard-command, not
6152 texinfo-parse-arg-discard.
6153
6154 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
6155 (debug): Bind and use debugger-outer-inhibit-redisplay.
6156 Bind inhibit-redisplay to nil.
6157 (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
6158
6159 1999-05-17 Dave Love <fx@gnu.org>
6160
6161 * help.el (describe-function-1): Extra arg, interactive-p.
6162 (describe-key, describe-function): Use it.
6163
6164 1999-05-17 Karl Heuer <kwzh@gnu.org>
6165
6166 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
6167
6168 1999-05-16 Dave Love <fx@gnu.org>
6169
6170 * cus-start.el (all): Delete selective-display. Add scroll-margin,
6171 scroll-preserve-screen-position, scroll-conservatively.
6172
6173 1999-05-16 Dave Love <fx@gnu.org>
6174
6175 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
6176
6177 1999-05-15 Reto Zimmermann <reto@Synopsys.COM>
6178
6179 * progmodes/vhdl-mode.el: Completely revised and massively extended.
6180
6181 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6182
6183 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
6184 magic number and is not associated with a file.
6185
6186 1999-05-14 Richard M. Stallman <rms@gnu.org>
6187
6188 * files.el (find-file-noselect-1): Fix previous change.
6189
6190 1999-05-14 Simon Marshall <simon@gnu.org>
6191
6192 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
6193
6194 1999-05-13 Ken'ichi Handa <handa@gnu.org>
6195
6196 * international/mule-diag.el (mule-diag): Change MULE to Mule in
6197 docstring.
6198
6199 * international/mule-cmds.el: Change MULE to Mule in docstrings
6200 and menus.
6201
6202 1999-05-10 Kenichi HANDA <handa@etl.go.jp>
6203
6204 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
6205 to correctly reflect the value of BaseLineOffset in
6206 RelativeCompose. Now the value of RelativeCompose is an array of
6207 low and high positions.
6208 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
6209 RLC for the above change.
6210
6211 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org>
6212
6213 * comint.el (comint-password-prompt-regexp): Modified to match the
6214 output of ksu and ssh-add.
6215
6216 1999-05-11 Kenichi HANDA <handa@etl.go.jp>
6217
6218 * language/korea-util.el (isearch-toggle-korean-input-method):
6219 Adjusted for the change of input method handling in isearch.el.
6220 (isearch-hangul-switch-symbol-ksc): Likewise.
6221 (isearch-hangul-switch-hanja): Likewise.
6222
6223 1999-05-10 Dave Love <fx@gnu.org>
6224
6225 * help.el (help-make-xrefs): Fix typo.
6226
6227 1999-05-10 Andreas Schwab <schwab@gnu.org>
6228
6229 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
6230 unibyte-display-via-language-environment.
6231
6232 * help.el (help-make-xrefs): Handle more cases when looking for
6233 commands in a keymap description.
6234
6235 1999-05-10 Eli Zaretskii <eliz@gnu.org>
6236
6237 * loadup.el: For ms-dos systems, load ccl and codepage.
6238
6239 1999-05-09 Ken'ichi Handa <handa@gnu.org>
6240
6241 * ps-print.el (ps-control-character): Call
6242 ps-mule-prepare-ascii-font to setup ASCII fonts.
6243
6244 * ps-mule.el (ps-mule-begin-job): Redo this change "if
6245 ps-multibyte-buffer is nil, use
6246 ps-mule-font-info-database-default."
6247
6248 1999-05-08 Ken Stevens <k.stevens@ieee.org>
6249
6250 * ispell.el (ispell-local-dictionary-alist): New variable for
6251 customizing local dictionaries not accessable by everyone.
6252 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
6253 (ispell-required-version): Changed format `(major minor
6254 revision)' to support general pattern matching.
6255 (ispell-tex-skip-alists): AMS Tex block comment and `\author'
6256 skip region commented out due to incorrect skip potential in std latex.
6257 (ispell-word): Removed `when' macro. Fixed bug of not restoring
6258 cursor point on small words for calls from `ispell-minor-mode'.
6259 (check-ispell-version): Tests and accepts versions major.minor
6260 and above, with adjustments for interactions in 3.1.0-3.1.11.
6261 (ispell-get-line): No longer skips ispell process special characters.
6262 (ispell-comments-and-strings): Removed `when' macro call.
6263 (ispell-minor-check): Requires ispell-word to restore cursor point.
6264 (ispell-buffer-local-parsing): Supports checking comments only.
6265
6266 1999-05-08 Karl Heuer <kwzh@gnu.org>
6267
6268 * comint.el (comint-password-prompt-regexp): Fix last change to be
6269 more specific.
6270
6271 1999-05-07 Richard M. Stallman <rms@gnu.org>
6272
6273 * subr.el (with-temp-message): Fix the other call to message
6274 to use %s.
6275
6276 1999-05-07 Michael Ernst <mernst@alum.mit.edu>
6277
6278 * gud.el (gud-format-command): "%F" means file sans extension.
6279 (jdb): Use %F, not %f, for gud-break.
6280
6281 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org>
6282
6283 * comint.el (comint-password-prompt-regexp): Modified so that it
6284 matches the output of kinit.
6285
6286 1999-05-06 Greg Stark <gsstark@mit.edu>
6287
6288 * timezone.el (timezone-parse-date): Recognize new format used in
6289 internet cookies.
6290
6291 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu>
6292
6293 * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
6294
6295 1999-05-04 Andrew Innes <andrewi@gnu.org>
6296
6297 * time.el (display-time-update): Allow for wrap-around when
6298 checking against display-time-server-down-time.
6299
6300 1999-05-04 Ken'ichi Handa <handa@gnu.org>
6301
6302 * international/mule-diag.el (describe-coding-system): Fix English
6303 message.
6304
6305 1999-05-03 Jason Rumney <jasonr@altavista.net>
6306
6307 * term/w32-win.el: Change the x-charset-registry property for the
6308 Japanese charsets that are supported by Japanese Windows fonts.
6309
6310 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
6311
6312 * diary-lib.el (diary-remind): Rewritten to behave sensibly for
6313 diary-block diary entries for which the reminders and the diary
6314 entries can overlap.
6315
6316 1999-05-02 Jason Rumney <jasonr@altavista.net>
6317
6318 * term/w32-win.el (mouse-set-font): Ensure constructed fontset
6319 matches the font selected in the dialog.
6320
6321 1999-05-02 Dave Love <fx@gnu.org>
6322
6323 * browse-url.el (browse-url-browser-function): Add :version.
6324
6325 * international/mule.el (auto-coding-alist): Add .tgz.
6326
6327 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il>
6328
6329 * international/codepage.el (cp-coding-system-for-codepage-1):
6330 Make the magnification parameter for the -dos encoder be 2.
6331
6332 1999-05-2 Andrew Innes <andrewi@gnu.org>
6333
6334 * term/w32-win.el (w32-drag-n-drop): Select file in window where
6335 it is dropped, rather than current window.
6336
6337 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
6338 after switching buffer, as case-fold-search is a buffer local
6339 variable.
6340
6341 * w32-fns.el (convert-standard-filename): Only convert directory
6342 separators to backslash if the interactive shell is one of the
6343 standard Windows shells that has DOS semantics.
6344
6345 * ls-lisp.el (ls-lisp-format-time): Trap errors from
6346 format-time-string, and return a suitable string to indicate the
6347 timestamp was invalid.
6348
6349 * hexl.el (hexlify-command): Apply shell-quote-argument after
6350 expanding hexl-program in case exec-directory contains a space.
6351 (dehexlify-command): Ditto.
6352
6353 * dos-w32.el (file-name-buffer-file-type-alist): Remove various
6354 file extension regexps which aren't necessarily binary files.
6355 (direct-print-region-helper): Use subst-char-in-string instead of
6356 binding directory-sep-char to convert filenames to DOS syntax.
6357 (direct-print-region-use-command-dot-com): New variable.
6358 (direct-print-region-helper): Use it to control whether to invoked
6359 command.com to print on Windows 9x.
6360
6361 * browse-url.el (browse-url-browser-function): Default to
6362 browse-url-default-windows-browser on windows-nt.
6363 (browse-url-default-windows-browser): New function.
6364
6365 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il>
6366
6367 * forms.el (forms-mode): Don't call forms-first-record or
6368 forms-last-record if the data file has zero records.
6369
6370 1999-04-29 Richard M. Stallman <rms@gnu.org>
6371
6372 * files.el (find-file-noselect-1): If buffer-file-name has changed
6373 after find-file-not-found-hooks runs, recompute the truename.
6374 And don't use FILENAME after that point.
6375
6376 1999-04-27 Dave Love <fx@gnu.org>
6377
6378 * paren.el (show-paren-mode)
6379 * which-func.el (which-func-mode-global)
6380 * type-break.el (type-break-mode)
6381 * time.el (display-time-mode)
6382 * rsz-mini.el (resize-minibuffer-mode)
6383 * mouse-sel.el (mouse-sel-mode)
6384 * icomplete.el (icomplete-mode)
6385 * hscroll.el (hscroll-global-mode)
6386 * help.el (temp-buffer-resize-mode)
6387 * font-lock.el (global-font-lock-mode)
6388 * delsel.el (delete-selection-mode)
6389 * avoid.el (mouse-avoidance-mode)
6390 * autoinsert.el (auto-insert-mode)
6391 * winner.el (winner-mode): Doc fix.
6392
6393 1999-04-26 Karl Heuer <kwzh@gnu.org>
6394
6395 * mail/rmail.el (rmail-next-same-subject): When searching, ignore
6396 the same whitespace that was ignored in choosing the subject string.
6397
6398 1999-04-26 Richard M. Stallman <rms@gnu.org>
6399
6400 * info.el (Info-find-node): Position properly after finding anchor.
6401
6402 * cus-start.el (all): Handle unibyte-display-via-language-environment.
6403
6404 * simple.el (indent-new-comment-line): Fix previous change.
6405
6406 * complete.el: Delete the wildcard expansion feature
6407 since that is now standard in find-file.
6408 (PC-try-load-many-files): Function deleted.
6409 (PC-after-load-many-files): Function deleted.
6410 (PC-many-files-list): Variable deleted.
6411 (PC-disable-wildcards): Variable deleted.
6412 (partial-completion-mode): Don't enable the wildcard feature.
6413
6414 * complete.el (PC-look-for-include-file): Don't set global variables
6415 `error', `buf' and `filename' here.
6416
6417 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
6418
6419 1999-04-26 John Wiegley <johnw@oneworld.new-era.com>
6420
6421 * textmodes/outline.el (outline-regexp): Doc fix.
6422
6423 1999-04-26 John Wiegley <johnw@borland.com>
6424
6425 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
6426 C++Builder 4.0 error message syntax.
6427
6428 1999-04-26 Mark Diekhans <markd@Grizzly.COM>
6429
6430 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
6431 supported, use find -exec.
6432
6433 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
6434
6435 * textmodes/texinfmt.el (texinfo-format-buffer): Bind
6436 coding-system-for-write, to avoid hanging when non-interactive.
6437
6438 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
6439
6440 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
6441 start with a newline.
6442
6443 1999-04-13 Ken'ichi Handa <handa@gnu.org>
6444
6445 * international/mule-conf.el (x-ctext): New coding system.
6446
6447 1999-04-12 Richard M. Stallman <rms@gnu.org>
6448
6449 * international/mule-cmds.el (input-method-function):
6450 Add permanent-local property.
6451
6452 1999-04-12 Dave Love <fx@gnu.org>
6453
6454 * jka-compr.el (jka-compr-insert-file-contents): Fix previous
6455 change to use jka-compr-byte-compiler-base-file-name.
6456
6457 * supercite.el (sc-scan-info-alist): Revert last change.
6458 (sc-attrib-selection-list): Fix :type here instead.
6459
6460 1999-04-11 Eli Zaretskii <eliz@gnu.org>
6461
6462 * international/mule.el (auto-coding-alist-lookup): Include ms-dos
6463 in the list of case-insensitive filesystems.
6464
6465 1999-04-09 Kenichi Handa <handa@etl.go.jp>
6466
6467 * international/fontset.el (create-fontset-from-fontset-spec):
6468 Don't register duplicated alias fontset names.
6469
6470 1999-04-08 Richard Stallman <rms@gnu.org>
6471
6472 * international/mule.el (auto-coding-alist-lookup): New function.
6473 (set-auto-coding): Use auto-coding-alist-lookup.
6474
6475 * jka-compr.el (jka-compr-insert-file-contents):
6476 Use auto-coding-alist-lookup to check for files that
6477 should not have eol conversion, in the unibyte case.
6478
6479 1999-04-07 Dave Love <fx@gnu.org>
6480
6481 * help.el (describe-variable): Check custom-loads property as well
6482 as custom-type.
6483
6484 * abbrev.el (abbrev-mode): Customizing sets the default value.
6485
6486 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de>
6487
6488 * vc.el (vc-backend-revert): For CVS files that were made
6489 writeable with "cvs edit", call "cvs unedit" to undo that.
6490
6491 1999-04-08 Dave Love <fx@gnu.org>
6492
6493 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
6494 more.
6495 (sc-emacs-features): Recognize Emacs 20.
6496 (sc-read-string): Use history arg.
6497 (sc-scan-info-alist): Check for rtnvalue a cons.
6498
6499 1999-04-08 Kenichi HANDA <handa@etl.go.jp>
6500
6501 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
6502 coding system to encode the message by
6503 select-message-coding-system.
6504
6505 1999-04-07 Richard Stallman <rms@gnu.org>
6506
6507 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
6508
6509 * winner.el: Reorder definitions.
6510
6511 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
6512
6513 * mail/rmail.el (rmail-decode-babyl-format):
6514 Undo previous change.
6515
6516 1999-04-06 Richard Stallman <rms@gnu.org>
6517
6518 * info.el (Info-find-node): Check for an anchor at the
6519 proper place, before reading an indirect file.
6520
6521 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
6522
6523 * jka-compr.el (jka-compr-insert-file-contents):
6524 Use raw-text-unix when we want no conversion.
6525
6526 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
6527
6528 * timezone.el (timezone-parse-date): Corrected regexp for
6529 style (5) date format so that tenths of seconds are optional.
6530
6531 1999-04-05 Eli Zaretskii <eliz@gnu.org>
6532
6533 * term/internal.el (dos-cpNNN-setup): New function, with the guts
6534 of dos-codepage-setup.
6535 (cjk-codepages-alist): New variable, an alist of Far-Eastern
6536 codepages for which there's no need to set up cpNNN coding
6537 systems.
6538 (dos-codepage-setup): Support Far-Eastern DOS terminals.
6539
6540 1999-04-05 Richard Stallman <rms@gnu.org>
6541
6542 * mail/rmail.el (rmail-ignored-headers): Doc fix.
6543
6544 1999-04-02 Richard Stallman <rms@gnu.org>
6545
6546 * progmodes/compile.el (compilation-handle-exit): Do right thing
6547 if (car status) doesn't end in a newline.
6548
6549 1999-04-01 Dave Love <fx@gnu.org>
6550
6551 * progmodes/sql.el (SQL): Add defgroup :version.
6552
6553 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6554
6555 * emacs-lisp/bytecomp.el (byte-compile-file): Clear
6556 buffer-file-coding-system. If the coding system used is raw-text,
6557 etc., make the *Compiler Input* buffer unibyte.
6558
6559 * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
6560
6561 * loadup.el: Don't write the fns-...el file if not dumping.
6562
6563 1999-03-31 Dave Love <fx@gnu.org>
6564
6565 * snmp-mode.el (snmp): Fix defgroup :version.
6566
6567 * hilit-chg.el (highlight-changes): Add defgroup :version.
6568
6569 1999-03-31 Andreas Schwab <schwab@gnu.org>
6570
6571 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
6572 the gnus-save-hidden-threads macro.
6573
6574 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk>
6575
6576 * faces.el (face-set-after-frame-default): Obey the
6577 `customized-face' for new faces.
6578
6579 1999-03-30 Dave Love <fx@gnu.org>
6580
6581 * international/mule-cmds.el (current-language-environment): Doc fix.
6582 * abbrev.el (abbrev-mode): Doc fix.
6583 * autoinsert.el (auto-insert-mode): Doc fix.
6584 * complete.el (partial-completion-mode): Doc fix.
6585 * avoid.el (mouse-avoidance-mode): Doc fix.
6586 * delsel.el (delete-selection-mode): Doc fix.
6587 * font-lock.el (global-font-lock-mode): Doc fix.
6588 * help.el (temp-buffer-resize-mode): Doc fix.
6589 * hscroll.el (hscroll-global-mode): Doc fix.
6590 * icomplete.el (icomplete-mode): Doc fix.
6591 * mouse-sel.el (mouse-sel-mode): Doc fix.
6592 * paren.el (show-paren-mode): Doc fix.
6593 * rsz-mini.el (resize-minibuffer-mode): Doc fix.
6594 * time.el (display-time-mode): Doc fix.
6595 * type-break.el (type-break-mode): Doc fix.
6596 * which-func.el (which-func-mode-global): Doc fix.
6597 * winner.el (winner-mode): Doc fix.
6598
6599 1999-03-30 Michael Ernst <mernst@alum.mit.edu>
6600
6601 * wid-edit.el (widget-before-change): Signal text-read-only rather
6602 than an ordinary error.
6603
6604 1999-03-30 Richard M. Stallman <rms@gnu.org>
6605
6606 * repeat.el: Don't require advice.
6607 (repeat): Do function-indirection in check for kbd macro.
6608 In self-insert case, use the *last* char in INSERTION.
6609
6610 1999-03-30 Karl Heuer <kwzh@gnu.org>
6611
6612 * progmodes/cc-cmds.el (c-indent-command): Doc fix.
6613
6614 1999-03-29 Andreas Schwab <schwab@gnu.org>
6615
6616 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
6617 comint-input-filter-functions. Make variables related to shell
6618 directory tracking local.
6619
6620 1999-03-26 Andreas Schwab <schwab@gnu.org>
6621
6622 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
6623
6624 * simple.el (shell-command-on-region): Cope with exit-status being
6625 nil, which happens if call-process-region was interrupted.
6626
6627 1999-03-26 Richard M. Stallman <rms@gnu.org>
6628
6629 * simple.el (indent-new-comment-line): Handle use at a point
6630 after a comment-end. Handle multiple comments.
6631
6632 * mail/rmail.el (rmail-decode-babyl-format):
6633 To prevent locking, bind buffer-file-name to nil.
6634
6635 1999-03-26 Karl Fogel <kfogel@red-bean.com>
6636
6637 * mail-hist.el (mail-hist-current-header-name): Don't make
6638 off-by-one-error when determining if in message body.
6639
6640 1999-03-25 Andrew Innes <andrewi@gnu.org>
6641
6642 * w32-fns.el (set-default-process-coding-system): Copied from
6643 dos-w32.el, but modified to use Unix line endings for process
6644 input, and to add a suitable entry to process-coding-system-alist
6645 for DOS shells.
6646
6647 * dos-fns.el (set-default-process-coding-system): Copied from
6648 dos-w32.el.
6649
6650 * dos-w32.el (set-default-process-coding-system): Move function to
6651 dos-fns.el; a different version is used in w32-fns.el.
6652
6653 1999-03-24 Dave Love <fx@gnu.org>
6654
6655 * info.el (Info-directory-list): Revert change to re-writing
6656 Info-default-directory-list, but put `alternative' first.
6657 (Info-insert-dir): Modify selecting the top dir file as a consequence.
6658
6659 1999-03-23 Simon Marshall <simon@gnu.org>
6660
6661 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
6662 on the line by itself.
6663 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if
6664 it is not in a declarative context.
6665
6666 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk>
6667
6668 * cus-edit.el (custom-variable-prompt): Allow customization of
6669 autoloaded symbols.
6670
6671 1999-03-22 Kenichi HANDA <handa@etl.go.jp>
6672
6673 * simple.el (what-cursor-position): Don't cause error when point
6674 is at invalid multibyte sequence.
6675
6676 1999-03-21 Karl Heuer <kwzh@gnu.org>
6677
6678 * complete.el (partial-completion-mode): Doc fix.
6679
6680 1999-03-19 Richard M. Stallman <rms@gnu.org>
6681
6682 * progmodes/cplus-md.el (old-c++): Remove :group.
6683
6684 * progmodes/c-mode.el (old-c): Remove :group.
6685
6686 1999-03-18 Simon Marshall <simon@gnu.org>
6687
6688 * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
6689 (java-font-lock-keywords-2): Added "strictfp" keyword.
6690
6691 1999-03-17 Jason Rumney <jasonr@altavista.net>
6692
6693 * w32-fns.el (set-w32-system-coding-system) New function.
6694 (w32-system-coding-system) Initialize to 'iso-latin-1.
6695
6696 1999-03-17 Eli Zaretskii <eliz@gnu.org>
6697
6698 * international/mule-cmds.el (set-language-environment): Fix
6699 previous change: don't use dos-codepage when unbound.
6700
6701 1999-03-17 Karl Heuer <kwzh@gnu.org>
6702
6703 * calendar/appt.el (appt-make-list): Fix previous change.
6704
6705 1999-03-16 Richard M. Stallman <rms@gnu.org>
6706
6707 * window.el (shrink-window-if-larger-than-buffer):
6708 Don't try to redisplay with the cursor at the end
6709 on its own line--that would force a scroll and spoil things.
6710
6711 1999-03-16 Eli Zaretskii <eliz@gnu.org>
6712
6713 * international/mule-cmds.el (set-language-environment): Don't use
6714 cpNNN-nonascii-translation-table if it is unbound.
6715
6716 * term/internal.el (dos-codepage-setup): Compute the unibyte
6717 syntax table and bind unibyte-display-via-language-environment
6718 here, rather than at top level, so that resetting to unibyte in
6719 .emacs works as expected.
6720
6721 1999-03-15 Simon Marshall <simon@gnu.org>
6722
6723 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
6724
6725 1999-03-14 Milan Zamazal <pdm@pvt.net>
6726
6727 * abbrev.el (inverse-add-abbrev): Inherit the current input method.
6728
6729 1999-03-14 Kenichi Handa <handa@etl.go.jp>
6730
6731 * international/mule-util.el (detect-coding-with-priority):
6732 Restore the internal database.
6733
6734 1999-03-14 Stephen Eglen <stephen@gnu.org>
6735
6736 * mail/sendmail.el (sendmail-send-it): Fix typo in error string
6737 if mail-from-style has invalid value.
6738
6739 1999-03-12 Karl Heuer <kwzh@gnu.org>
6740
6741 * vc.el (vc-delete-logbuf-window): New var.
6742 (vc-finish-logentry): Use it.
6743
6744 1999-03-12 Richard M. Stallman <rms@gnu.org>
6745
6746 * startup.el (command-line-1): Improve startup msg.
6747
6748 1999-03-12 Eric M. Ludlam <zappo@ultranet.com>
6749
6750 * speedbar.el: Added commentary about stealthy functions.
6751 (speedbar-message) new function.
6752 (speedbar-y-or-n-p): New function
6753 (speedbar-with-attached-buffer) Moved macro before reference.
6754 Now uses `save-selected-window'.
6755 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
6756 speedbar-generic-item-info, speedbar-item-info-file-helper,
6757 speedbar-item-delete, speedbar-insert-generic-list,
6758 speedbar-timer-fn, speedbar-check-vc-this-line,
6759 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
6760 speedbar-buffers-item-info) Use speedbar-message.
6761 (speedbar-item-info) Limit `message-log-max'.
6762 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
6763 speedbar-item-delete, speedbar-item-object-delete,
6764 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
6765
6766 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp>
6767
6768 * server.el (server-start): Set coding system for the server
6769 process to raw-text.
6770 (server-process-filter): Decode file names if necessary.
6771
6772 1999-03-12 Dave Love <fx@gnu.org>
6773
6774 * textmodes/fill.el (sentence-end-double-space): Doc fix.
6775
6776 * textmodes/paragraphs.el (sentence-end): Doc fix.
6777
6778 1999-03-11 Karl Heuer <kwzh@gnu.org>
6779
6780 * comint.el (comint-password-prompt-regexp): Accept "login password:"
6781
6782 1999-03-09 Karl Heuer <kwzh@gnu.org>
6783
6784 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
6785 (ispell-dictionary-alist-2): Likewise.
6786 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
6787 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
6788 (ispell-dictionary-alist): Build from six pieces, not just two.
6789
6790 * ps-bdf.el (bdf-directory-list): Doc fix.
6791
6792 * enriched.el (enriched-mode): Make var permanent-local.
6793
6794 1999-03-09 Dave Love <fx@gnu.org>
6795
6796 * textmodes/sgml-mode.el (html-mode): Use
6797 sentence-end-double-space when setting sentence-end.
6798
6799 1999-03-09 Ken'ichi Handa <handa@gnu.org>
6800
6801 * language/thai.el (tis-620): New alias coding system for thai-tis620.
6802
6803 1999-03-08 Felix Lee <flee@cygnus.com>
6804
6805 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
6806
6807 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
6808
6809 1999-03-08 Karl Heuer <kwzh@gnu.org>
6810
6811 * dired-aux.el (dired-do-copy-regexp): Doc fix.
6812 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
6813
6814 * dired.el (dired-do-copy-regexp): Doc fix.
6815 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
6816
6817 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com>
6818
6819 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
6820
6821 1999-03-08 Jason Rumney <jasonr@altavista.net>
6822
6823 * international/codepage.el (cp1250-decode-table)
6824 (cp1251-decode-table, cp1253-decode-table)
6825 (cp1257-decode-table): New translation tables for MS Windows codepages.
6826 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
6827
6828 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
6829
6830 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
6831
6832 1999-03-07 Eli Zaretskii <eliz@gnu.org>
6833
6834 * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
6835
6836 * term/internal.el (top level): Display character 255 as 8bit as well.
6837
6838 1999-03-06 Dave Love <fx@gnu.org>
6839
6840 * progmodes/cc-cmds.el (c-outline-level): Bind
6841 buffer-invisibility-spec.
6842
6843 * progmodes/c-mode.el (c-outline-level): Likewise.
6844
6845 * progmodes/ada-mode.el (ada-outline-level): Likewise.
6846
6847 1999-03-05 Felix Lee <flee@cygnus.com>
6848
6849 * textmodes/outline.el (outline-get-last-sibling): Doc fix.
6850
6851 1999-03-05 Richard M. Stallman <rms@gnu.org>
6852
6853 * bindings.el (complete-symbol): Invert meaning of prefix arg.
6854
6855 1999-03-05 Andrew Innes <andrewi@gnu.org>
6856
6857 * w32-fns.el (convert-standard-filename): Convert directory
6858 separators to Windows format.
6859
6860 1999-03-05 Andreas Schwab <schwab@gnu.org>
6861
6862 * international/skkdic-cnv.el: Provide skkdic-cnv.
6863 (skkdic-convert): Emit code to require skkdic-cnv at compile time.
6864 (batch-skkdic-convert): Doc fix.
6865
6866 1999-03-04 Dave Love <fx@gnu.org>
6867
6868 * custom.el (custom-set-variables): Protect against setter errors.
6869
6870 1999-03-04 Eli Zaretskii <eliz@gnu.org>
6871
6872 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
6873 the file sizes from overflowing.
6874 (ls-lisp-format): If file size is a float, use %8.0f to print it.
6875 Under -s, print the size in blocks with %4.0f, in case they have
6876 a *really* huge file.
6877
6878 1999-03-03 Dave Love <fx@gnu.org>
6879
6880 * options.el (edit-options): Doc fix.
6881 (list-options): Don't lose with unbound symbols. Maintain
6882 Edit-options-mode.
6883
6884 1999-03-01 Dave Love <fx@gnu.org>
6885
6886 * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
6887
6888 1999-02-28 Richard M. Stallman <rms@gnu.org>
6889
6890 * ispell.el (ispell-dictionary-alist-override): New variable.
6891 (ispell-dictionary-alist): Don't setq it,
6892 if ispell-dictionary-alist-override is set.
6893
6894 * simple.el (shell-command-default-error-buffer): Renamed from
6895 shell-command-on-region-default-error-buffer.
6896 (shell-command-on-region): Mention in echo area when there
6897 is some error output. Mention success or failure, too.
6898 Accumulate multiple error outputs
6899 going forward, with formfeed in between. Display the error buffer
6900 when we have put something in it.
6901 (shell-command): Add the ERROR-BUFFER argument feature.
6902
6903 1999-02-28 Karl Heuer <kwzh@gnu.org>
6904
6905 * mail/mh-utils.el (mh-lib): Doc fix.
6906 (mh-lib-progs, mh-nmh-p): New vars.
6907 (mh-find-progs): Set mh-lib-progs along with other vars.
6908 (mh-path-search): New arg FUNC-P; if specified, use that instead
6909 of mh-file-command-p.
6910 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
6911
6912 * mail/mh-comp.el (mh-repl-formfile): New var.
6913 (mh-smail-batch): Don't ignore all arguments.
6914 (mh-reply): Do the right thing when using nmh.
6915
6916 1999-02-27 Kenichi Handa <handa@etl.go.jp>
6917
6918 * international/mule-cmds.el (select-safe-coding-system): Be sure
6919 to show a buffer being decoded.
6920
6921 1999-02-26 Ken'ichi Handa <handa@gnu.org>
6922
6923 * ps-bdf.el (bdf-directory-list): Initialize it to
6924 '("/usr/local/share/emacs/fonts/bdf").
6925
6926 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6927
6928 * ps-print.el: PostScript programming fix.
6929 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
6930 setpagedevice operator).
6931
6932 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6933
6934 * ps-print.el: Doc fix, font size specifies landscape and portrait
6935 sizes.
6936 (ps-print-version): New version number (4.1.4).
6937 (ps-font-size, ps-header-font-size, ps-header-title-font-size):
6938 Specifies landscape and portrait sizes.
6939 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
6940 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
6941 fix.
6942 (ps-get-font-size): New fun.
6943 (ps-font-size-internal, ps-header-font-size-internal)
6944 (ps-header-title-font-size-internal): New vars.
6945
6946 * ps-mule.el: Change of ps-print font size variable name.
6947 (ps-mule-generate-font): Fun fix.
6948 (ps-mule-begin-job): Programming uniformization.
6949
6950 1999-02-25 Dave Love <fx@gnu.org>
6951
6952 * help.el (help-xref-info-regexp): Allow linebreaks and capital.
6953 (help-make-xrefs): Do Info case first.
6954
6955 * repeat.el: Don't require advice.
6956 (repeat-last-kill-command): Variable deleted.
6957
6958 1999-02-25 Richard Stallman <rms@gnu.org>
6959
6960 * simple.el (shell-command-on-region): Don't go into the REPLACE = t
6961 case just because the current buffer is the output buffer.
6962
6963 1999-02-25 Kenichi Handa <handa@etl.go.jp>
6964
6965 * simple.el (what-cursor-position): To show the character's
6966 encoding, use encoded-string-description instead of information
6967 of chaset-origin-alist.
6968
6969 * international/mule-cmds.el (iso-2022-control-alist): New variable.
6970 (encoded-code-description): New function.
6971 (encoded-string-description): New function.
6972 (encode-coding-char): New function.
6973
6974 1999-02-25 Andrew Innes <andrewi@gnu.org>
6975
6976 * startup.el (command-line) [windows-nt]: Fix typo in regexp
6977 checking for .emacs[.el[c]].
6978
6979 1999-02-24 Richard Stallman <rms@gnu.org>
6980
6981 * help.el (describe-function-1): Don't print a whole lambda-function.
6982
6983 1999-02-23 Ken'ichi Handa <handa@gnu.org>
6984
6985 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
6986 inputting ?\240.
6987
6988 1999-02-23 Karl Heuer <kwzh@gnu.org>
6989
6990 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
6991
6992 * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
6993 (clean-buffer-list-kill-buffer-names): Doc fix.
6994
6995 * gud.el (gud-jdb-massage-args): Spelling fix.
6996
6997 1999-02-23 Richard M. Stallman <rms@gnu.org>
6998
6999 * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
7000
7001 1999-02-22 Eli Zaretskii <eliz@gnu.org>
7002
7003 * arc-mode.el (archive-set-buffer-as-visiting-file): Save
7004 excursion while calling set-auto-coding-function.
7005
7006 * play/handwrite.el (handwrite): Require ps-print, and use
7007 ps-printer-name and ps-lpr-command. Call ps-print-region-function
7008 if it's defined, instead of forking ps-lpr-command unconditionally.
7009
7010 1999-02-22 Kenichi Handa <handa@etl.go.jp>
7011
7012 * international/codepage.el (cp-coding-system-for-codepage-1): Put
7013 charset-origin-alist property to a coding system for the codepage.
7014
7015 * international/mule.el: Modify comment for charset-origin-alist
7016 property of a coding system.
7017
7018 * simple.el (what-cursor-position): charset-origin-alist property
7019 of a coding system may be a translation table or a symbol of which
7020 `translation-table' property is a translation table.
7021
7022 1999-02-21 Richard Stallman <rms@gnu.org>
7023
7024 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
7025 to the "html" template.
7026
7027 1999-02-21 Peter Breton <pbreton@ne.mediaone.net>
7028
7029 * dirtrack.el (dirtrack): Added docstring. Now returns input.
7030
7031 1999-02-18 Peter Breton <pbreton@ne.mediaone.net>
7032
7033 * dirtrack.el (dirtrack): Check for the prompt in the input string
7034 instead of the buffer.
7035
7036 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch>
7037
7038 * sql.el: Set version to 1.4.1. Changed mail address to
7039 alex@gnu.org. Mention the mailing list sql.el@gnu.org.
7040 (sql-input-ring-separator): Doc fix.
7041 (sql-mode-syntax-table): double-dash starts comments is defined as
7042 ". 56" instead of ". 12b" for XEmacs.
7043 (sql-stop, sql-interactive-mode): Doc fixes.
7044 (sql-postgres): Queries for database and server, not just one.
7045 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
7046
7047 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
7048 changed. This is needed for master.el to work.
7049 (sql-set-sqli-buffer): Use the new hook.
7050
7051 * sql.el (sql-make-alternate-buffer-name): Function that sets
7052 sql-alternate-buffer-name.
7053 (sql-alternate-buffer-name): Possible name of SQLi buffers.
7054 (sql-interactive-mode): Set sql-alternate-buffer-name.
7055 (sql-rename-buffer): New command.
7056 (sql-interactive-mode-menu): Menu for SQLi buffers.
7057
7058 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator
7059 and sql-input-ring-file-name are used to temporarily set
7060 comint-input-ring-file-name and comint-input-ring-separator when
7061 reading and writing input history files.
7062
7063 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
7064 (sql-input-ring-file-name): New variable with customization.
7065 (sql-input-ring-separator): New variable with customization.
7066 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
7067 Callers changed.
7068 (sql-show-sqli-buffer): The message for "sql-buffer is not set"
7069 now includes the name of the current buffer.
7070
7071 (sql-mode): Set paragraph-separate and paragraph-start so that
7072 sql-send-paragraph sends the entire SQL statements, even if it
7073 contains indented lines.
7074
7075 1999-02-18 Dave Love <fx@gnu.org>
7076
7077 * format.el (format-encode-run-method, format-decode-run-method):
7078 Fix previous change.
7079
7080 1999-02-18 Ken'ichi Handa <handa@gnu.org>
7081
7082 * international/mule.el (coding-system-list): Moved here from
7083 mule-util.el to avoid autoloading mule-util by the call of
7084 select-safe-coding-system.
7085
7086 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
7087
7088 * simple.el (turn-on-auto-fill): Mark it as an option for
7089 `text-mode-hook'.
7090
7091 1999-02-17 Richard Stallman <rms@gnu.org>
7092
7093 * emacs-lisp/easymenu.el (easy-menu-get-map):
7094 Don't crash if (current-local-map) is nil.
7095
7096 1999-02-17 Peter Breton <pbreton@ne.mediaone.net>
7097
7098 * filecache.el (file-cache-filter-regexps): Added .class.
7099
7100 1999-02-17 Ken'ichi Handa <handa@gnu.org>
7101
7102 * international/mule-util.el (decompose-region): Use
7103 insert-buffer-substring instead of insert-buffer to avoid putting
7104 mark.
7105
7106 1999-02-17 Andreas Schwab <schwab@gnu.org>
7107
7108 * calendar/cal-move.el (scroll-calendar-left): Don't set
7109 displayed-month and displayed-year here, let generate-calendar do
7110 it, after range checking.
7111
7112 1999-02-17 Simon Marshall <simon@gnu.org>
7113
7114 * progmodes/cc-engine.el (c-at-toplevel-p): New function.
7115
7116 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
7117 correctly between an object declared via a constructor and a method.
7118 (font-lock-defaults-alist): Don't give `.' word syntax for Java.
7119 (java-font-lock-keywords-1): Fontify package names individually.
7120 (java-font-lock-extra-types): Ensure regexp matches capitalised only.
7121 (java-font-lock-keywords-2): Simplify type fontification.
7122 (java-font-lock-keywords-3): Likewise.
7123
7124 1999-02-17 Kenichi Handa <handa@etl.go.jp>
7125
7126 * language/japanese.el (iso-2022-jp-2): New coding system.
7127 ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
7128
7129 1999-02-16 Dave Love <fx@gnu.org>
7130
7131 * help.el (describe-function-1): Accept non-symbols.
7132
7133 1999-02-16 Paul Eggert <eggert@twinsun.com>
7134
7135 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
7136 find the last match if there are multiple matches.
7137
7138 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7139
7140 * tex-mode.el (tex-run-command, latex-run-command)
7141 (slitex-run-command, tex-command): Doc changes.
7142 (tex-start-options-string): Autoload it. Doc change. Provide
7143 a menu for customization. Allow nil. Quote backslashes only once.
7144 (tex-start-tex): Handle nil value of tex-start-options-string
7145 and apply shell-quote-argument to it.
7146
7147 1999-02-16 Eli Zaretskii <eliz@gnu.org>
7148
7149 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
7150 the size in blocks, since it can be a float.
7151 (ls-lisp-format): Likewise
7152
7153 1999-02-16 Ken'ichi Handa <handa@gnu.org>
7154
7155 * language/japanese.el (japanese-shift-jis): Add
7156 charset-origin-alist property.
7157
7158 1999-02-15 Richard Stallman <rms@gnu.org>
7159
7160 * progmodes/compile.el (compile-internal): Use save-selected-window.
7161
7162 * subr.el (momentary-string-display): Bind inhibit-read-only.
7163
7164 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
7165
7166 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il>
7167
7168 * mail/rmail.el (rmail-show-message): If an unseen message has a
7169 Summary-line in its header, get past one more line before looking
7170 for the X-Coding-System header.
7171
7172 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
7173
7174 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
7175 explicitly to accomodate Windows 9X lack of a useful copy program.
7176
7177 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
7178
7179 * wid-edit.el (widget-choice-value-create): Use `equal'
7180 instead of `eq'.
7181
7182 1999-02-14 Richard Stallman <rms@gnu.org>
7183
7184 * international/iso-transl.el:
7185 (iso-transl-ae): Renamed from iso-transl-e-slash.
7186 (iso-transl-a-ring): Renamed from iso-transl-a-slash.
7187 (iso-transl-AE): Renamed from iso-transl-E-slash.
7188 (iso-transl-A-ring): Renamed from iso-transl-A-slash.
7189 (iso-transl-char-map): Related changes.
7190
7191 * format.el (format-replace-strings): Fix value of TO in REVERSE case.
7192
7193 1999-02-13 Richard Stallman <rms@gnu.org>
7194
7195 * textmodes/texinfmt.el (texinfo-alias): New function.
7196 (texinfo-fold-nodename-case): Add defvar.
7197 (texinfo-format-node): Do case folding if specified.
7198
7199 * ffap.el (ffap-file-at-point): Test local file names
7200 immediately. Strip off line numbers.
7201
7202 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch>
7203
7204 * sql.el: Set version to 1.3.2
7205 (sql-solid-program): Added support for solid.
7206 (sql-help): Doc mentions sql-solid.
7207 (sql-solid): Entry function for Solid.
7208 (sql-buffer): Doc explains the use of the variable and how to
7209 change it.
7210 (sql-mode-menu): Included entries for sql-show-sqli-buffer and
7211 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
7212 disabled if sql-buffer doesn't have a process; sql-send-paragraph
7213 is new.
7214 (sql-show-sqli-buffer): New function to display the value of
7215 sql-buffer.
7216 (sql-change-sqli-buffer): New function to change sql-buffer.
7217 (sql-mode): Doc explains how to change sql-buffer.
7218 (sql-send-paragraph): New function to send a paragraph.
7219 (sql-mode-map): Added keybinding for sql-send-paragraph.
7220 (sql-mysql): Doc corrected.
7221 (sql-ms): Doc corrected.
7222
7223 * sql.el (sql-server): Doc fix.
7224 (sql-mysql): Added the use of sql-server to specify the host,
7225 sql-database now specifies database instead of host.
7226 (sql-mode-menu): Send... menu items are only active if sql-buffer
7227 is non-nil.
7228 (sql-help): Changed tag of entry functions a bit.
7229
7230 * sql.el: Added keywords from `finder-by-keyword'.
7231 (sql-mode): Made sql-buffer a local variable, changed the
7232 documentation: removed instructions to add *.sql files to
7233 auto-mode-alist, added documentation for having mutliple SQL
7234 buffers sending their stuff to different SQLi buffers, each
7235 running a different process.
7236 (sql-postgres): Quoted *SQL* in doc string.
7237 (sql-ms): Likewise.
7238 (sql-ingres): Likewise.
7239 (sql-ingres): Quoted *SQL* in doc string, added references to
7240 sql-user and sql-password used during login.
7241 (sql-sybase): Quoted *SQL* in doc string, added comma.
7242 (sql-oracle): Likewise.
7243 (sql-interactive-mode): Added extensive documentation for having
7244 mutliple SQL buffers sending their stuff to different SQLi
7245 buffers, each running a different process.
7246 (sql-buffer): Changed doc from *SQL* to SQLi.
7247 (sql-get-login): Doc fix.
7248
7249 1999-02-12 Ken'ichi Handa <handa@gnu.org>
7250
7251 * international/mule-conf.el (undecided): Set ascii in
7252 safe-charsets property.
7253
7254 1999-02-12 Richard Stallman <rms@gnu.org>
7255
7256 * textmodes/paragraphs.el (paragraph-separate): Doc fix.
7257
7258 1999-02-12 Ken'ichi Handa <handa@gnu.org>
7259
7260 * ps-mule.el (ps-mule-font-info-database-default): Set the initial
7261 value to ps-mule-font-info-database-latin.
7262
7263 1999-02-13 Kenichi HANDA <handa@etl.go.jp>
7264
7265 * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
7266 (ps-mule-font-info-database-default): New variable.
7267 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
7268 ps-mule-font-info-database-default.
7269
7270 1999-02-12 Dave Love <fx@gnu.org>
7271
7272 * timezone.el (timezone-make-date-sortable)
7273 (timezone-make-date-arpa-standard): Doc fix.
7274
7275 1999-02-12 Ken'ichi Handa <handa@gnu.org>
7276
7277 * international/quail.el (quail-show-kbd-layout): Bind
7278 blink-matching-paren to nil.
7279
7280 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
7281 for ASCII and Latin-1.
7282
7283 1999-02-12 Andreas Schwab <schwab@gnu.org>
7284
7285 * gud.el (jdb): Fix regexp for comint-prompt-regexp.
7286
7287 1999-02-12 Kenichi Handa <handa@etl.go.jp>
7288
7289 * international/mule-cmds.el (language-info-alist): Remove
7290 description about charset-origin-alist.
7291
7292 * international/mule.el: Comment added for a new coding system
7293 property `charset-origin-alit'.
7294 (make-translation-table): This variable deleted.
7295
7296 * language/chinese.el (chinese-big5): Add charset-origin-alist
7297 property.
7298 ("Chinese-CNS"): Remove charset-origin-alist property.
7299
7300 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
7301 property.
7302 (cyrillic-alternativnyj): Likewise.
7303 ("Cyrillic-KOI8"): Remove charset-origin-alist property.
7304 ("Cyrillic-ALT"): Likewise.
7305
7306 * language/vietnamese.el (vietnamese-viqr): Add
7307 charset-origin-alist property.
7308 ("Vietnamese"): Remove charset-origin-alist property.
7309
7310 * simple.el (what-cursor-position): Don't use the varialbe
7311 charset-origin-alist, but use charset-origin-alist property of
7312 buffer-file-coding-system to decide external character set code.
7313
7314 1999-02-10 Richard Stallman <rms@gnu.org>
7315
7316 * shadowfile.el: Don't turn on the mode when the file is loaded.
7317
7318 1999-02-09 Richard Stallman <rms@gnu.org>
7319
7320 * progmodes/compile.el (compile-auto-highlight): Customize.
7321
7322 * add-log.el (add-log-file-name-function): New variable.
7323 (add-change-log-entry): Call that function, if non-nil.
7324
7325 1999-02-09 Michael Ernst <mernst@alum.mit.edu>
7326
7327 * rmail.el (rmail-search): Track match with a marker, not an integer.
7328
7329 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7330
7331 * progmodes/compile.el (compilation-setup): Set value of
7332 compilation-directory-stack as in compilation-forget-errors.
7333 (compile-reinitialize-errors): Bind buffer-undo-list and
7334 deactivate-mark.
7335 (compilation-forget-errors): Likewise.
7336
7337 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com>
7338
7339 * textmodes/texinfo.el (texinfo-environment-regexp): Add the
7340 def... constructs.
7341
7342 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
7343 Remove calls to sleep-for.
7344
7345 1999-02-08 Eli Zaretskii <eliz@gnu.org>
7346
7347 * international/codepage.el (cp-coding-system-for-codepage-1): On
7348 MS-DOS, use dos-unsupported-char-glyph for characters not
7349 supported by the codepage.
7350 (cp-make-coding-systems-for-codepage): Likewise.
7351
7352 1999-02-08 Andreas Schwab <schwab@gnu.org>
7353
7354 * international/mule-util.el (coding-system-list): Don't sort
7355 coding-system-list here.
7356
7357 * international/mule.el (coding-system-lessp): Moved here from
7358 mule-util.el
7359 (add-to-coding-system-list): New function.
7360 (make-subsidiary-coding-system, make-coding-system,
7361 define-coding-system-alias): Use it instead of setting
7362 coding-system-list directly.
7363
7364 1999-02-07 Dave Love <fx@gnu.org>
7365
7366 * calendar/appt.el (appt-make-list): Don't splice quotes and date
7367 onto message.
7368
7369 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7370
7371 * imenu.el (imenu--last-menubar-index-alist): Add doc.
7372 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist.
7373
7374 1999-02-06 Richard Stallman <rms@gnu.org>
7375
7376 * language/european.el (setup-slovenian-environment): New function.
7377 ("Slovenian"): New language environment.
7378
7379 * progmodes/sql.el (sql-help): Doc fix.
7380 (sql-mysql): Doc fix.
7381
7382 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7383
7384 * tex-mode.el: When compiling, require compare-w and skeleton
7385 to pacify the byte-compiler. Move the def's of the tex-commands
7386 together. Add a comment on kill-process vs. quit-process.
7387
7388 1999-02-05 Dave Love <fx@gnu.org>
7389
7390 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
7391 null markers.
7392 (compile-goto-error): Likewise.
7393
7394 1999-02-05 Stephen Gildea <gildea@alum.mit.edu>
7395
7396 * time-stamp.el (time-stamp-format): Format doc tighter.
7397 (time-stamp-line-limit): 0 searches the entire buffer (careful!).
7398 (time-stamp): Don't re-write the time stamp if it didn't change.
7399
7400 1999-02-05 Alex Schroeder <asc@bsiag.com>
7401
7402 * progmodes/sql.el: Changed version to 1.2.1.
7403 (sql-pop-to-buffer-after-send-region): Improved documentation.
7404 (sql-mysql-program): Added MySQL support.
7405 (sql-prompt-length): Made prompt-length configurable.
7406 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
7407 (sql-help): Added MySQL support, changed documentation.
7408 (sql-send-region): A message is displayed if something is sent.
7409 (sql-mode): Added buffer-local comment-start.
7410 (sql-interactive-mode): Use sql-prompt-length to set left-margin.
7411 (sql-interactive-mode): Added buffer-local comment-start.
7412 (sql-oracle): Set sql-prompt-length.
7413 (sql-sybase): Set sql-prompt-length.
7414 (sql-mysql): Added MySQL support.
7415 (sql-ingres): Set sql-prompt-length.
7416 (sql-ms): Set sql-prompt-length.
7417 (sql-postgres): Set sql-prompt-length.
7418
7419 1999-02-04 Eli Zaretskii <eliz@gnu.org>
7420
7421 * term/internal.el (dos-codepage-setup): Set selection coding
7422 system to cpNNN-dos.
7423
7424 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7425
7426 * international/characters.el: Let ethiopic use iso-2022-7bit.
7427
7428 1999-02-02 Dave Love <fx@gnu.org>
7429
7430 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
7431 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
7432
7433 1999-02-02 Karl Heuer <kwzh@gnu.org>
7434
7435 * terminal.el (terminal-emulator): Doc fix.
7436
7437 1999-02-02 Ken'ichi Handa <handa@gnu.org>
7438
7439 * international/mule-util.el (compose-chars): Doc-string
7440 modified. Correctly handle a composition character in ARGS.
7441
7442 1999-02-01 Richard Stallman <rms@gnu.org>
7443
7444 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
7445 (makefile-menu-index-function): Function deleted.
7446 (makefile-mode): Use makefile-imenu-generic-expression.
7447
7448 1999-02-01 Geoff Voelker <voelker@cs.washington.edu>
7449
7450 * term/w32-win.el (w32-create-initial-fontsets): Back out previous
7451 change, invoke from before-init-hook.
7452
7453 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu>
7454
7455 * subr.el (remove-from-invisibility-spec): Cope with the case when
7456 buffer-invisibility-spec is t.
7457
7458 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu>
7459
7460 * calendar/calendar.el (calendar-mode-map): Fix bindings for
7461 appt-add and appt-delete.
7462
7463 1999-02-01 Eli Zaretskii <eliz@gnu.org>
7464
7465 * term/pc-win.el (msdos-approximate-color): New function.
7466 (msdos-color-translate): Call it to find a DOS color that best
7467 approximates an X-style "#NNNNNN" color specification.
7468
7469 1999-02-01 Ken'ichi Handa <handa@gnu.org>
7470
7471 * international/mule-util.el (compose-chars-component): Add
7472 autoload cookie.
7473
7474 1999-01-31 Ken'ichi Handa <handa@gnu.org>
7475
7476 * international/quail.el (quail-lookup-key): If cdr of MAP is a
7477 function, replace cdr of MAP by the return value of the function
7478 unconditionally.
7479
7480 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7481
7482 * progmodes/compile.el (compilation-next-error-locus): Don't
7483 decrease argument FIND-AT-LEAST of compilation-next-error-locus.
7484
7485 1999-01-31 Eli Zaretskii <eliz@gnu.org>
7486
7487 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
7488 and NLs before "charset", and allow the charset name be in double
7489 quotes.
7490
7491 1999-01-31 Richard Stallman <rms@gnu.org>
7492
7493 * imenu.el (imenu-sort-function): Fix custom type.
7494
7495 1999-01-30 Richard Stallman <rms@gnu.org>
7496
7497 * speedbar.el (speedbar-line-token): Match {...} instead of [...].
7498 (speedbar-line-token): Likewise.
7499
7500 * play/gametree.el (gametree-default-score): Use defcustom.
7501 (gametree-score-regexp, gametree-score-closer): Likewise.
7502 (gametree-score-manual-flag, gametree-score-opener): Likewise.
7503
7504 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7505
7506 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
7507 decoding.
7508
7509 1999-01-29 Markus Rost <rost@gnu.org>
7510
7511 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
7512 tex-validate-buffer.
7513 (plain-tex-mode, latex-mode, slitex-mode): Likewise.
7514 (tex-validate-buffer): Renamed from validate-tex-buffer. Works
7515 now with recent occur-mode.
7516 (tex-validate-region): Really walk through all Sexps.
7517 (tex-region): Bind shell-dirtrack-verbose.
7518 (tex-file, tex-bibtex-file): Likewise.
7519
7520 1999-01-29 Dave Love <fx@gnu.org>
7521
7522 * finder.el: (finder-commentary): Fix interactive spec. Try
7523 appending .el to file name.
7524 (finder-find-library, finder-commentary): Doc fixes.
7525
7526 1999-01-29 Andrew Innes <andrewi@gnu.org>
7527
7528 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
7529 where the userid contains directory separators.
7530
7531 1999-01-29 Dave Love <fx@gnu.org>
7532
7533 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
7534 (lm-commentary): Doc fix.
7535
7536 1999-01-29 Andreas Schwab <schwab@gnu.org>
7537
7538 * files.el (file-expand-wildcards): Never consider `.' and `..' a
7539 wildcard match. Fix regexp that tests if dirpart contains
7540 wildcard characters.
7541
7542 1999-01-28 Richard Stallman <rms@gnu.org>
7543
7544 * font-lock.el (font-lock-default-unfontify-region):
7545 If not font-lock-syntactic-keywords, don't remove syntax-table prop.
7546
7547 1999-01-27 Jason Rumney <jasonr@altavista.net>
7548
7549 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
7550 from FAMILY field.
7551 (w32-create-initial-fontsets): Do not use before-init-hook.
7552 (mouse-set-font): Document. Automatically create and use fontsets.
7553
7554 * dos-w32.el (direct-print-region-helper): Check for printer
7555 being t as well as a string.
7556
7557 1999-01-27 Kenichi Handa <handa@etl.go.jp>
7558
7559 * mail/rmail.el (rmail-decode-mime-charset): New variable.
7560 (rmail-mime-charset-pattern): New variable.
7561 (rmail-convert-to-babyl-format): Decode by MIME-charset if
7562 rmail-decode-mime-charset is non-nil.
7563
7564 1999-01-27 Ken'ichi Handa <handa@gnu.org>
7565
7566 * international/characters.el: Set category `q' for all characters
7567 in tibetan and tibetan-1-column.
7568
7569 1999-01-27 Andrew Innes <andrewi@gnu.org>
7570
7571 * frame.el (select-frame-by-name): Obey focus-follows-mouse.
7572 (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
7573
7574 1999-01-27 Dave Love <fx@gnu.org>
7575
7576 * international/mule-cmds.el (current-language-environment):
7577 Provide :link, :type (choices) and appropriate :get.
7578
7579 1999-01-27 Eli Zaretskii <eliz@gnu.org>
7580
7581 * startup.el (command-line): Set default eol-mnemonic-* strings to
7582 display end-of-line format in mode line.
7583
7584 * cus-start.el (all): Add eol-mnemonic-* variables.
7585
7586 1999-01-26 Dave Love <fx@gnu.org>
7587
7588 * startup.el (command-line-1): Up-date copyright.
7589
7590 * paths.el (Info-default-directory-list): Use configdir twice.
7591
7592 * info.el (Info-directory-list): Don't set path-separator now
7593 we're not shipped with Texinfo. Simplify path definition.
7594 Substitute all occurrences of instdir in Info-default-directory-list.
7595
7596 1999-01-25 Richard Stallman <rms@gnu.org>
7597
7598 * startup.el (normal-top-level-add-subdirs-to-load-path):
7599 Record the inode numbers of the dirs processed, to avoid loop.
7600
7601 * textmodes/tex-mode.el (tex-run-command): Doc fix.
7602
7603 1999-01-25 Dave Love <fx@gnu.org>
7604
7605 * browse-url.el (browse-url-netscape-program): Doc addition.
7606
7607 * help.el (help-make-xrefs): Default info references to an `(emacs)'
7608 prefix.
7609
7610 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
7611 auto-mode-alist.
7612
7613 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7614
7615 * calendar/diary-lib.el (mark-diary-entries): Use
7616 assoc-ignore-case and do not capitalize when matching month and
7617 day names.
7618
7619 * calendar/calendar.el (calendar-read-date): Ditto.
7620
7621 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
7622 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
7623
7624 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
7625
7626 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
7627
7628 * calendar/cal-islam.el (calendar-goto-islamic-date)
7629 (mark-islamic-diary-entries): Ditto.
7630
7631 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
7632
7633 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
7634 (calendar-read-mayan-tzolkin-date): Ditto.
7635
7636 * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
7637
7638 1999-01-22 Michael Ernst <mernst@alum.mit.edu>
7639
7640 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
7641
7642 1999-01-25 Karl Heuer <kwzh@gnu.org>
7643
7644 * faces.el (list-faces-display): Multiline case of previous fix.
7645
7646 1999-01-25 Andreas Schwab <schwab@gnu.org>
7647
7648 * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
7649
7650 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
7651
7652 * files.el (find-file): If find-file-noselect returns a list,
7653 do switch-to-buffer on each element.
7654 (find-file-other-window): Likewise for all but the first element.
7655 (find-file-other-frame): Same.
7656 (find-file-noselect): When we expand a wildcard, return a list
7657 of buffers.
7658
7659 1999-01-24 Eli Zaretskii <eliz@gnu.org>
7660
7661 * term/internal.el (dos-codepage-setup): Call prefer-coding-system
7662 to set the appropriate cpNNN-dos coding system as the
7663 highest-priority coding system.
7664
7665 1999-01-23 Ken'ichi Handa <handa@gnu.org>
7666
7667 * international/fontset.el (generate-fontset-menu): Return a
7668 sorted list by plain names of fontsets.
7669
7670 * international/mule-diag.el (list-fontsets): Sort fontsets by
7671 plain names.
7672
7673 * language/tibet-util.el (tibetan-vertical-stacking): If the arg
7674 FIRST is a composite character, decompose it at first.
7675
7676 1999-01-23 Dave Love <fx@gnu.org>
7677
7678 * format.el: Doc fixes.
7679 (format-encode-run-method): Have things happen in the right buffer.
7680 Deal with errors from method. Set coding-system-for-write.
7681 (format-decode-run-method): Have things happen in the right buffer.
7682 Deal with errors from method. Set coding-system-for-read.
7683 (format-alist): Use nil instead of unmatchable regexps.
7684
7685 * simple.el (shell-command-on-region): Return command's exit status.
7686
7687 1999-01-23 Eric Ludlam <zappo@gnu.org>
7688
7689 * speedbar.el (speedbar-item-info-file-helper): Add optional arg
7690 of the file whose info we want to display.
7691 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
7692 (speedbar-add-mode-functions-list) Improve doc.
7693 (speedbar-line-token) New function.
7694 (speedbar-dired) Fix order of directories in -shown-directories.
7695 (speedbar-line-path): Default return is default-directory
7696 (speedbar-buffers-line-path): Return is dir name only.
7697 (speedbar-mode-functions-list): New variable.
7698 (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
7699 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
7700 speedbar-files-item-info speedbar-buffers-item-info): New functions.
7701 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
7702 New functions.
7703 (speedbar-line-file): Broke out part that fetches file from a line.
7704 (speedbar-line-text): New function extracted from speedbar-line-file.
7705 (speedbar-line-path): Converted into a replaceable function.
7706 (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
7707
7708 1999-01-23 Ken'ichi Handa <handa@gnu.org>
7709
7710 * international/fontset.el (create-fontset-from-x-resource): Make
7711 style variants.
7712
7713 1999-01-22 Dave Love <fx@gnu.org>
7714
7715 * paths.el (Info-default-directory-list): Put sysdir after start.
7716
7717 1999-01-22 Sam Steingold <sds@goems.com>
7718
7719 * midnight.el (clean-buffer-list): Do not kill a buffer if it has
7720 a process associated with it.
7721
7722 1999-01-22 Jason Rumney <jasonr@altavista.net>
7723
7724 * term/w32-win.el (w32-standard-fontset-spec): Simplified.
7725
7726 1999-01-22 Felix Lee <flee@cygnus.com>
7727
7728 * vc.el (vc-annotate-display): Delete old overlays. Fix check for
7729 major-mode.
7730 (vc-annotate-mode): Delete variable.
7731
7732 1999-01-22 Andrew Innes <andrewi@gnu.org>
7733
7734 * startup.el (command-line): [windows-nt]: Check for existence of
7735 .emacs file so as to notice .emacs.el or .emacs.elc and use them
7736 in preference to _emacs.
7737
7738 1999-01-22 Dave Love <fx@gnu.org>
7739
7740 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
7741
7742 1999-01-20 Richard Stallman <rms@gnu.org>
7743
7744 * files.el (find-file-noselect): Do wildcard processing only
7745 if new arg WILDCARDS is non-nil.
7746 (find-file, find-file-other-window): New arg WILDCARDS.
7747 Default it to non-nil if interactive.
7748 (find-file-other-frame): Likewise.
7749 (find-file-read-only): Likewise.
7750 (find-file-read-only-other-window): Likewise.
7751 (find-file-read-only-other-frame): Likewise.
7752
7753 * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
7754 (widget-plist-convert-option): Delete spurious comma.
7755
7756 1999-01-19 Jason Rumney <jasonr@altavista.net>
7757
7758 * term/w32-win.el (w32-standard-fontspec-spec): Change
7759 iso8859-5 to koi8-r. Add iso8859-9.
7760
7761 1999-01-19 Dave Love <fx@gnu.org>
7762
7763 * browse-url.el (browse-url-maybe-new-window): Delete macro and
7764 its uses.
7765
7766 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
7767 is active.
7768 (fortran-indent-subprogram): Likewise.
7769
7770 1999-01-19 Dave Love <d.love@dl.ac.uk>
7771
7772 * paths.el (Info-default-directory-list): Perhaps add /usr/info.
7773
7774 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
7775
7776 * wid-edit.el (alist): Use sexp as default key-type.
7777
7778 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7779
7780 * textmodes/tex-mode.el (tex-define-common-keys):
7781 Remove key binding of tex-feed-input.
7782 (tex-mode-map): Bind tex-feed-input here.
7783 (tex-start-shell): Use compilation-shell-minor-mode. Set
7784 comint-input-filter-functions before running tex-shell-hook.
7785 (tex-start-tex): Forget compilation errors.
7786 (tex-compilation-parse-errors): Rewritten to work also with
7787 compile-mouse-goto-error and compile-goto-error. Adjusted to
7788 change in tex-region.
7789 (tex-region): For the temp file use file-name without directory.
7790 (tex-file): Expand file name of tex-print-file.
7791
7792 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7793
7794 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call.
7795
7796 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no>
7797
7798 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
7799 beginning could cause Emacs to hang. Fixed.
7800
7801 1999-01-18 Ken'ichi Handa <handa@gnu.org>
7802
7803 * international/ccl.el (ccl-compile-translate-character): Handle
7804 the case that a tranlation table is CCL register correctly.
7805
7806 * international/mule-cmds.el (select-safe-coding-system):
7807 Hightlight at most 256 characters.
7808
7809 1999-01-18 Dave Love <fx@gnu.org>
7810
7811 * startup.el (command-line): If the init file changes operation to
7812 unibyte, make all buffers unibyte and re-set language environment.
7813
7814 * disp-table.el (standard-display-european): Make all existing
7815 buffers unibyte. Fix doc.
7816
7817 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu>
7818
7819 * wid-edit.el (coding-system): Define this unconditionally.
7820
7821 * simple.el (shell-command-on-region-default-error-buffer): New var.
7822 (shell-command-on-region): Use that variable as interactive
7823 value of ERROR-BUFFER argument.
7824
7825 1999-01-17 Sam Steingold <sds@goems.com>
7826
7827 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
7828
7829 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7830
7831 * progmodes/compile.el (compilation-goto-locus): If already in the
7832 compilation buffer's window, keep it in that window.
7833 (compile-mouse-goto-error): Add Doc. Don't play with windows.
7834 (compile-goto-error): Don't play with windows.
7835
7836 * textmodes/tex-mode.el (latex-run-command): Doc fix.
7837 (tex-command): Doc fix.
7838 (tex-compilation-parse-errors): Doc fix.
7839 (tex-generate-zap-file-name): Don't start the name with -.
7840 (tex-expand-files): Works now also with strings ending with ":".
7841
7842 1999-01-17 Ian T Zimmerman <itz@transbay.net>
7843
7844 Patch failed to install:
7845 * gametree.el: Document scoring functionality.
7846 (gametree-score-regexp): Add optional plus sign.
7847 (gametree-score-opener): Replace `:' with `=' as the former
7848 conflicts with gametree-half-ply-regexp.
7849 (gametree-transpose-following-leaves): Add.
7850 (gametree-insert-new-leaf): Make modifying commands barf in read
7851 only buffers.
7852 (gametree-break-line-here): Add a call to
7853 `gametree-transpose-following-leaves'. This maintains the
7854 necessary invariant that on each level all leaf children precede
7855 all nonleaf children. This has always been implied, but left to
7856 the user, and, unfortunately, undocumented.
7857
7858 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk>
7859
7860 * wid-edit.el (plist, alist): New widget types.
7861
7862 1999-01-17 Dave Love <fx@gnu.org>
7863
7864 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
7865 fix scope of condition-case therein.
7866
7867 1999-01-17 Andrew Innes <andrewi@gnu.org>
7868
7869 * dos-w32.el: (find-buffer-file-type-coding-system): Use
7870 default-buffer-file-coding-system when file doesn't exist (and
7871 isn't covered by a special case) instead of forcing undecided-dos
7872 against the user's wishes.
7873
7874 * dos-w32.el (direct-print-region-helper): New function based on
7875 direct-print-region-function; sends data to specified printer port
7876 without further translation. Recognize and handle specially the
7877 standard `print' and `nprint' programs, as well as `lpr' and
7878 similar programs. Only write directly to the printer port if no
7879 print program is specified. Work around a bug in Windows 9x
7880 affecting Win32 version of Emacs by invoking command.com to write
7881 to the printer port instead of writing directly.
7882 (direct-print-region-function): Use direct-print-region-helper to
7883 do most of the work.
7884 (direct-ps-print-region-function): New function; analogue of
7885 direct-print-region-function for ps-print.
7886 (ps-lpr-command): Comment out setq; leave as example usage.
7887 (ps-lpr-switches): Ditto.
7888
7889 * lpr.el: (printer-name): Update docstring about usage on MS-DOS
7890 and MS-Windows.
7891 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
7892 DOS and Windows platforms, to indicate direct printing. Update
7893 the docstring accordingly.
7894
7895 * ps-print.el: (ps-printer-name): Update docstring about usage on
7896 MS-DOS and MS-Windows.
7897 (ps-lpr-command): Update docstring as for lpr-command.
7898 (ps-print-region-function): New variable.
7899 (ps-do-despool): Use it.
7900 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
7901 DOS/Windows.
7902
7903 * subr.el (subst-char-in-string): New function.
7904
7905 1999-01-17 Eli Zaretskii <eliz@gnu.org>
7906
7907 * international/codepage.el (cp852-decode-table): Fill a nil entry.
7908
7909 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
7910 (bdf-find-font-info): New function, looks for the first readable
7911 file from a list of alternatives.
7912 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
7913 instead of bdf-get-font-info.
7914 (bdf-generate-glyphs): If font-name is a cons cell, pass its car
7915 to ps-mule-generate-bitmap-glyph.
7916
7917 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
7918 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can
7919 now be a list of alternative names.
7920 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
7921 (ps-mule-prepare-font): Likewise.
7922
7923 * international/codepage.el (cp855-decode-table,
7924 cp850-decode-table): Fill some nil entries.
7925
7926 1999-01-16 Dave Love <fx@gnu.org>
7927
7928 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
7929 last change.
7930
7931 1999-01-15 Dave Love <fx@gnu.org>
7932
7933 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
7934 and change regexp for command names.
7935 (help-xref-go-back, function-called-at-point, symbol-file)
7936 (where-is): Doc fixes.
7937 (help-xref-go-back): Remove interactive spec.
7938 (describe-function-1): Fix message for alias. Buttomize alias
7939 name.
7940
7941 * simple.el (join-line): New alias.
7942
7943 1999-01-15 Johan Vromans <jvromans@squirrel.nl>
7944
7945 * forms.el: (forms--show-record): Convert integers to string
7946 expicitly since concat will no longer accept integers.
7947 (forms-print): Use local `total-nb-records' since
7948 `forms--total-records' will be inaccessible after buffer switching.
7949
7950 1998-01-14 Felix Lee <flee@cygnus.com>
7951
7952 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
7953
7954 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu>
7955
7956 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
7957
7958 1999-01-14 Eli Zaretskii <eliz@gnu.org>
7959
7960 * international/codepage.el (cp850-decode-table): Fix previous change.
7961
7962 1999-01-14 Simon Marshall <simon@gnu.org>
7963
7964 * shell.el (shell-dirtrack-verbose): New custom variable.
7965 (shell-dirstack-message): Use it.
7966
7967 1999-01-14 Kenichi Handa <handa@etl.go.jp>
7968
7969 * international/mule-conf.el: Coding system alias `dos' for
7970 `undecided-dos', `mac' for `undecided-mac'.
7971
7972 * international/mule-cmds.el (describe-language-environment):
7973 Don't alter input-method-alist.
7974
7975 1999-01-13 Eli Zaretskii <eliz@gnu.org>
7976
7977 * international/codepage.el (cp850-decode-table): Replace nil
7978 entries with codes of similary looking glyphs. (Suggested by
7979 Jason Rumney <jasonr@altavista.net>.)
7980
7981 1999-01-13 Dave Love <fx@gnu.org>
7982
7983 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
7984
7985 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
7986
7987 1999-01-12 Karl Heuer <kwzh@gnu.org>
7988
7989 * files.el (auto-save-hook): Defvar this.
7990
7991 1999-01-12 Alex Schroeder <asc@bsiag.com>
7992
7993 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
7994 faces, eliminating the need to load font-lock before loading sql.
7995 (sql-mode-oracle-font-lock-keywords): Likewise.
7996 (sql-mode-postgres-font-lock-keywords): Likewise.
7997
7998 1999-01-11 Dave Love <fx@gnu.org>
7999
8000 * cus-start.el: Add inhibit-eol-conversion.
8001
8002 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
8003 the values round.
8004
8005 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu>
8006
8007 * help.el (help-mode-finish): Renamed from help-mode-maybe.
8008 Don't switch to Help mode here.
8009 (temp-buffer-setup-hook): Use help-mode-finish.
8010 (help-mode-setup): New function.
8011 (temp-buffer-setup-hook): Use help-mode-setup.
8012
8013 * progmodes/sql.el: New file.
8014
8015 * files.el (auto-mode-alist): Add sql-mode.
8016
8017 * faces.el (list-faces-display): Improve the formatting
8018 by computing the maximum length required for any face-name.
8019
8020 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8021
8022 * progmodes/compile.el (compilation-shell-minor-mode): New function.
8023
8024 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu>
8025
8026 * term.el (term_send_home): Change the string to
8027 be the same as the one emitted by xterm and consistent with the
8028 ones emitted by prior and next.
8029 (term_send_end): Likewise.
8030
8031 1999-01-10 Dave Love <fx@gnu.org>
8032
8033 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
8034 bindings.
8035
8036 1999-01-10 Eli Zaretskii <eliz@gnu.org>
8037
8038 * international/codepage.el (codepage-setup): Doc fix.
8039 (cp-decoding-vector-for-codepage): Likewise.
8040
8041 1999-01-10 Markus Rost <rost@gnu.org>
8042
8043 * cus-edit.el (custom-save-delete): First scan the custom-file.
8044
8045 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu>
8046
8047 * international/iso-transl.el: Define a "function name" for
8048 each translation that isn't ASCII. Use these function names
8049 in iso-transl-char-map.
8050
8051 1999-01-08 Kenichi Handa <handa@etl.go.jp>
8052
8053 * international/mule-util.el (decompose-region): Do decomposition
8054 on temporary unibyte buffer.
8055
8056 * international/mule.el (make-char): Doc-string modified.
8057
8058 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu>
8059
8060 * simple.el (comment-region): Delete spaces only if we
8061 deleted a comment starter.
8062
8063 1999-01-07 Dave Love <fx@gnu.org>
8064
8065 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
8066
8067 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
8068 like eval-defun does.
8069
8070 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
8071
8072 * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
8073 constructions. Doc fixes.
8074 (generic-create-generic-function): Use defalias, not fset.
8075
8076 * find-func.el: More doc fixes.
8077
8078 1999-01-06 Stephen Eglen <stephen@gnu.org>
8079
8080 * files.el (save-buffers-kill-emacs): Show the list of current
8081 processes before prompting to kill them and exit.
8082
8083 1999-01-06 Dave Love <fx@gnu.org>
8084
8085 * emacs-lisp/find-func.el: Doc fixes.
8086 (find-function-regexp): Extend for define-generic-mode,
8087 define-derived-mode, easy-mmode-define-minor-mode.
8088
8089 1999-01-06 Dave Love <fx@gnu.org>
8090
8091 * progmodes/fortran.el (fortran-window-create): Account for scroll
8092 bar width.
8093
8094 * browse-url.el: Require (noerror) w3-auto when compiling.
8095 (browse-url-maybe-new-window): Make it a macro and revert last
8096 change to callers.
8097 (browse-url-w3): Require w3 for w3-fetch-other-window.
8098
8099 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8100
8101 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
8102 argument.
8103
8104 1999-01-06 Simon Marshall <simon@gnu.org>
8105
8106 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix.
8107
8108 * font-lock.el (font-lock-default-fontify-buffer): When using
8109 with-temp-message, use nil rather than current-message.
8110
8111 * lazy-lock.el (lazy-lock-unstall):
8112 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
8113 rather than current-message.
8114
8115 * fast-lock.el (fast-lock-save-cache-1):
8116 (fast-lock-cache-data): When using with-temp-message, use nil rather
8117 than current-message.
8118
8119 1999-01-06 Eli Zaretskii <eliz@gnu.org>
8120
8121 * international/codepage.el (cp-coding-system-for-codepage-1): Add
8122 the valid-codes property.
8123
8124 * international/mule-cmds.el (prefer-coding-system): Call
8125 set-coding-priority, so that the internal array of priorities is
8126 also updated.
8127
8128 * international/mule-util.el:
8129 (coding-system-change-eol-conversion,
8130 coding-system-change-text-conversion): Don't define here.
8131
8132 * international/mule-cmds.el: Define them here. Remove the
8133 autoload cookies.
8134
8135 1999-01-06 Andreas Schwab <schwab@gnu.org>
8136
8137 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
8138 if it was enabled before.
8139
8140 * view.el (View-revert-buffer-scroll-page-forward): Bind
8141 view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
8142
8143 * files.el (recover-session): Preserve point when inserting
8144 explanation.
8145
8146 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu>
8147
8148 * cus-edit.el (custom-save-delete): Don't delete whitespace
8149 and comments before the sexp that is replaced.
8150
8151 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8152
8153 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
8154
8155 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de>
8156
8157 * vc.el (vc-dired-hook): Use the original value of
8158 dired-move-to-filename-regexp on lines that have not been
8159 reformatted yet.
8160 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
8161 file lines have already been reformatted.
8162
8163 1999-01-05 Dave Love <fx@gnu.org>
8164
8165 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
8166 buffer-local.
8167
8168 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se>
8169
8170 * progmodes/f90.el: Change of regular expressions for type to
8171 correct highlighting and identation. Some small fixes for
8172 compatibility with XEmacs.
8173
8174 1999-01-05 Stephen Eglen <stephen@gnu.org>
8175
8176 * mspools.el (mspools-vm-system-mail): Provide an alternative
8177 value based on rmail-spool-directory if $MAIL is not defined.
8178
8179 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
8180
8181 * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
8182 (reftex-section-info): Handle negative section levels.
8183 (reftex-view-crossref-extra): New option.
8184 (reftex-view-crossref): Generalized to work in more places.
8185 (reftex-find-citation-regexp-format, reftex-find-reference-format,
8186 reftex-macros-with-labels, reftex-global-search-marker): New variables.
8187 (reftex-view-cite-locations-from-bibtex): New command.
8188 (reftex-view-regexp-match, reftex-global-search,
8189 reftex-global-search-continue): New functions.
8190 (reftex-extract-bib-entries): No error for non-existing BibTeX
8191 file, just a message.
8192 (reftex-extract-bib-entries): Better error handling.
8193 (reftex-select-with-char): Use `*RefTeX Select*' for selection
8194 help and force it on current frame.
8195 (reftex-default-bibliography): New function.
8196 (reftex-access-parse-file): Check consistency after loading a
8197 parse file. When inconsistent, enfore rescan.
8198 (reftex-check-parse-consistency): New function.
8199 (easy-menu-define): Options section drastically shortened.
8200
8201 1999-01-05 Kenichi Handa <handa@etl.go.jp>
8202
8203 * language/thai-util.el (thai-compose-string): New function.
8204
8205 1999-01-04 Inge Frick <inge@nada.kth.se>
8206
8207 * easymenu.el (easy-menu-define): Doc fix.
8208 (easy-menu-create-menu): New keyword :included.
8209 (easy-menu-do-add-item): New keyword :included. SUFFIX may
8210 be an expression, not only a string. Simulate style `button'.
8211 Use easy-menu-define-key-intern instead of easy-menu-define-key.
8212 (easy-menu-define-key-intern): New function.
8213 (easy-menu-add-item): Understand value returned from
8214 easy-menu-item-present-p and easy-menu-remove-item.
8215 (easy-menu-return-item): New function.
8216 (easy-menu-item-present-p, easy-menu-remove-item): Use it.
8217
8218 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu>
8219
8220 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
8221 Use rmail-output-read-rmail-file-name to read the file name.
8222 Always call rmail-output-to-rmail-file noninteractively.
8223 When count > 1, do the loop here.
8224 Handle rmail-delete-after-output here.
8225 (rmail-summary-output): Similar changes.
8226
8227 * mail/rmailout.el: Provide `rmailout'.
8228 (rmail-output-read-rmail-file-name): New function.
8229 (rmail-output-to-rmail-file): Use that.
8230 (rmail-output-read-file-name): New function.
8231 (rmail-output): Use that.
8232
8233 * files.el (find-file-noselect): Let /: suppress wildcard matching.
8234 Error if wildcard matches no files.
8235
8236 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu>
8237
8238 * menu-bar.el (clipboard-yank): Doc fix.
8239
8240 * info.el (Info-insert-dir): Chase symlinks for file-attributes.
8241
8242 1998-12-31 Markus Rost <rost@delysid.gnu.org>
8243
8244 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
8245
8246 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk>
8247
8248 * rmail.el (rmail-encode-string): Make sure mask value is
8249 positive; (emacs-pid) returns a negative number on Windows 9x
8250 which causes odd behaviour.
8251
8252 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org>
8253
8254 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
8255 and about w32-* variables unless on Windows/NT.
8256
8257 1998-12-31 Boris Goldowsky <boris@alum.mit.edu>
8258
8259 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
8260 if buffer is modified; ask about all modified buffers.
8261
8262 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu>
8263
8264 * simple.el (what-cursor-position): Fix previous change.
8265
8266 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu>
8267
8268 * mail/sendmail.el (mail-mode): Eliminate ambiguous match
8269 from paragraph-start.
8270
8271 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org>
8272
8273 * international/mule-cmds.el (prefer-coding-system): If the
8274 argument requires specific EOL conversion type, make the default
8275 coding systems use that.
8276
8277 1998-12-30 Drew Csillag <drew_csillag@geocities.com>
8278
8279 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
8280 Use shell-command-on-region.
8281 (m4-start-m4, m4-end-m4): Functions deleted.
8282
8283 1998-12-30 Michael Ernst <mernst@alum.mit.edu>
8284
8285 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
8286
8287 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8288
8289 * browse-url.el (browse-url-mail): Give argument SEND-ACTION
8290 to compose-mail in the correct places and as a list.
8291
8292 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp>
8293
8294 * page-ext.el: Added mouse-selection feature for pages directory buffer.
8295 (pages-directory-map): Bind mouse-2
8296 (pages-copy-header-and-position): Put text property.
8297 (pages-directory-goto-with-mouse): New function.
8298
8299 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org>
8300
8301 * international/codepage.el (cp-make-coding-systems-for-codepage):
8302 Doc fix.
8303 (cp-coding-system-for-codepage-1): Likewise.
8304
8305 1998-12-29 Kenichi Handa <handa@etl.go.jp>
8306
8307 * language/thai-util.el (thai-post-read-conversion): Handle Thai
8308 composition sequence correctly here instead of calling
8309 thai-compose-region.
8310
8311 * textmodes/fill.el (fill-region-as-paragraph): While deleting a
8312 newline in multibyte buffer, if previous or next character is a
8313 composite char, check the first component of the composite char.
8314
8315 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org>
8316
8317 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
8318 and track-mouse.
8319
8320 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8321
8322 * mail/sendmail.el (mail-yank-original): Remove text properties
8323 after insertion.
8324 (mail-yank-region): Barf if no mark is set in the message
8325 being replied to.
8326
8327 * help.el (function-called-at-point): First look for function at point.
8328
8329 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu>
8330
8331 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
8332
8333 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
8334
8335 * simple.el (what-cursor-position): Print character encoding also.
8336
8337 1998-12-26 Dave Love <fx@gnu.org>
8338
8339 * textmodes/flyspell.el: If local-maps work, don't put
8340 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
8341 in flyspell-mouse-map (only).
8342 (flyspell-use-local-map): New variable.
8343 Use a different mouse-2 binding in that case,
8344 and don't add to minor-mode-map-alist.
8345 (make-flyspell-overlay, flyspell-correct-word):
8346 Test flyspell-use-local-map.
8347
8348 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
8349
8350 * files.el (file-expand-wildcards): Handle wildcards in directory name.
8351 Be careful about whether to return a relative file name,
8352 and if so, relative to what directory.
8353
8354 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
8355
8356 * emacs-lisp/easymenu.el (easy-menu-get-map):
8357 Change global map only if this menu exists in the global map already,
8358 and not in the local map.
8359 (easy-menu-do-add-item): Fix error message.
8360
8361 * foldout.el (foldout-inhibit-key-bindings):
8362 Avoid concatenating onto outline-minor-mode-prefix.
8363 Make a new keymap for that prefix, if it does not already have one.
8364
8365 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu>
8366
8367 * cperl-mode.el:
8368 Can use linear algorithm for indentation if Emacs supports it.
8369 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp.
8370 (cperl-after-block-p): Likewise.
8371 (cperl-after-block-and-statement-beg): Likewise.
8372 (cperl-after-block-p): After END/BEGIN we are a block.
8373 (cperl-after-expr-p): Skip labels when checking
8374 (cperl-indent-region): Make a marker for END - text added/removed.
8375 Disable hooks during the call (how to call them later?).
8376 Now indents 820-line-long function in 6.5 sec (including
8377 syntaxification) the first time (when buffer has few
8378 properties), 7.1 sec the second time.
8379 (cperl-indent-region): Do not indent whitespace lines
8380 (cperl-style-alist)
8381 Include `cperl-merge-trailing-else' where the value is clear.
8382 (cperl-styles-entries): Likewise.
8383 (cperl-problems): Improvements to docs.
8384 (cperl-tips): Likewise.
8385 (cperl-non-problems): Likewise.
8386 (cperl-mode): Make lazy syntaxification possible.
8387 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
8388 `font-lock-unfontify-region-function' was set to a wrong function.
8389
8390 (cperl-find-pods-heres): Safe a position in buffer where it is safe to
8391 restart syntaxification. Changed so that -d ?foo? is a RE. Do
8392 not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
8393 but 1<<6 was considered as HERE-doc.
8394 <file/glob> made into a string.
8395 Postpone addition of faces after syntactic step.
8396 Recognition of <FH> was wrong.
8397 Highlight `gem' in s///gem as a keyword. `qr' recognized.
8398 Knows that split// is null-RE.
8399 Highlights separators in 3-parts expressions as labels.
8400 <> was considered as a glob.
8401 Would err if the last line is `=head1'.
8402 $a-1 ? foo : bar; was a considered a regexp.
8403 `<< (' was considered a start of HERE-doc.
8404 mark qq[]-etc sections as syntax-type=string
8405 Was not processing sub protos after a comment ine.
8406 Was treating $a++ <= 5 as a glob.
8407 Tolerate unfinished REx at end-of-buffer.
8408 `unwind-protect' was left commented.
8409 / and ? after : start a REx.
8410
8411 (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
8412 Better default, customizes to `message' too, off in text-mode.
8413
8414 (cperl-array-face): Renamed from `font-lock-emphasized-face',
8415 `defface'd.
8416 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
8417 `defface'd.
8418 (cperl-emacs-can-parse): New state variable.
8419 (cperl-indent-line): Corrected to use global state.
8420 (cperl-calculate-indent): Likewise.
8421 (cperl-fix-line-spacing): Likewise (not used yet).
8422 (cperl-calculate-indent): Did not consider `,' as
8423 continuation mark for statements.
8424 (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
8425 Remove another parse-data optimization at toplevel: would
8426 indent correctly.
8427 Correct for labels when calculating indentation of continuations.
8428 Docstring updated.
8429 (cperl-choose-color): Converted to a function (to be
8430 compilable in text-mode).
8431 (cperl-dark-background): Disable without window-system.
8432 Do `defface' only if window-system.
8433 (cperl-fix-line-spacing): Sped up to bail out early.
8434 (x-color-defined-p): Was not compiling on XEmacs
8435 Was defmacro'ed with a tick. Remove another def.
8436 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
8437 (cperl-unwind-to-safe): New function.
8438 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
8439 (cperl-fontify-syntaxically): Unwinds start and end to go out of
8440 long strings (not very successful).
8441 (cperl-forward-re): Highlight the trailing / in s/foo// as string.
8442 Highlight the starting // in s//foo/ as function-name.
8443 Emit a meaningful error instead of a cryptic one for an
8444 uncomplete REx near end-of-buffer.
8445
8446 (cperl-electric-keyword): `qr' recognized.
8447 (cperl-electric-else): Likewise
8448 (cperl-to-comment-or-eol): Likewise
8449 (cperl-make-regexp-x): Likewise
8450 (cperl-init-faces): Likewise, and `lock' (as overridable?).
8451 Corrected to use new macros;
8452 `if' for copying `reference-face' to `constant-face' was backward.
8453 remove init `font-lock-other-emphasized-face',
8454 `font-lock-emphasized-face', `font-lock-keyword-face'.
8455 Interpolate `cperl-invalid-face'.
8456 (cperl-make-regexp-x): Misprint in a message.
8457 (cperl-syntaxify-unwind): New configuration variable
8458 (cperl-fontify-m-as-s): New configuration variable
8459 (cperl-electric-pod): Check for after-expr was performed
8460 inside of POD too.
8461 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
8462 (cperl-clobber-mode-lists): New configuration variable.
8463 (cperl-not-bad-style-regexp): Updated.
8464 Init: `cperl-is-face' was busted.
8465 (cperl-make-face): New macros.
8466 (cperl-force-face): New macros.
8467 (font-lock-other-type-face): Done via `defface' too.
8468 (cperl-nonoverridable-face): New face. Renamed from
8469 `font-lock-other-type-face'.
8470 (cperl-init-faces-weak): Use `cperl-force-face'.
8471 (cperl-comment-indent): Commenting __END__ was not working.
8472 (cperl-indent-for-comment): Likewise.
8473 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'.
8474 When removing old TAGS info was not relativizing filename.
8475 (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
8476 Another try to work around XEmacs problems. Better progress messages.
8477 (toplevel): Require custom unprotected => failure on 19.28.
8478 (cperl-xemacs-p): Defined when compile too
8479 (cperl-find-tags): Was writing line/pos in a wrong order,
8480 pos off by 1 and not at beg-of-line.
8481 (cperl-etags-snarf-tag): New macro
8482 (cperl-etags-goto-tag-location): New macro
8483 (cperl-version): New variable. New menu entry
8484 random docstrings: References to "future" 20.3 removed.
8485 Menu was described as `CPerl' instead of `Perl'
8486 (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
8487 (cperl-toggle-construct-fix): Was toggling to t instead of 1.
8488 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face'
8489 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
8490 `font-lock-reference-face', `font-lock-keyword-face'.
8491 Use `eval-after-load'.
8492 Remove not-CPerl-related faces.
8493 (cperl-tips-faces): New variable and an entry into Mini-docs.
8494 (cperl-indent-exp): Was not processing else-blocks.
8495 (cperl-get-state): NOP line removed.
8496 (cperl-ps-print): New function and menu entry.
8497 (cperl-ps-print-face-properties): New configuration variable.
8498 (cperl-invalid-face): New configuration variable.
8499 (perl-font-lock-keywords): Highlight trailing whitespace
8500 (cperl-contract-levels): Documentation corrected.
8501 (cperl-contract-level): Likewise.
8502 (cperl-ps-extend-face-list): New macro.
8503 (cperl-invalid-face): Change to ''underline.
8504
8505 1998-12-25 Markus Rost <rost@delysid.gnu.org>
8506
8507 * mail/rmailout.el (rmail-output): Abbreviate name of default-file
8508 for read-file-name.
8509 (rmail-output-to-rmail-file): Likewise.
8510
8511 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
8512
8513 * emacs-lisp/easymenu.el (easy-menu-get-map):
8514 If MENU is nil, use global menu-bar map.
8515 (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
8516 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
8517
8518 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8519
8520 * ps-mule.el (ps-mule-begin-job): Programming uniformization.
8521
8522 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8523
8524 * ps-print.el (ps-print-version): New version number (4.1.3).
8525
8526 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org>
8527
8528 * international/mule-cmds.el: Use make-sparse-keymap instead of
8529 define-prefix-key when defining MULE menu items.
8530
8531 * info.el (Info-node-at-bob-matching): New function.
8532 (Info-find-node, Info-build-node-completions): Call it.
8533
8534 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org>
8535
8536 * help.el (describe-function-1): Say "keymap", not "Lisp macro",
8537 when this is an autoloaded keymap.
8538
8539 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org>
8540
8541 * international/codepage.el (cp-coding-system-for-codepage-1):
8542 Create separate encoders and decoders, for DOS and Unix. Make the
8543 usual family of 3 coding systems, so that automatic detection of
8544 EOL type works.
8545 (cp-make-coding-systems-for-codepage): Don't intern DOS- and
8546 Unix-specific symbols here, and don't call
8547 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi
8548 Handa <handa@etl.go.jp>.)
8549
8550 * dos-vars.el (dos-codepage-setup-hook): New defcustom.
8551
8552 * term/internal.el (IT-character-translations): New variable, an
8553 alist used to display characters for which there's no glyphs in
8554 the current codepage.
8555 (IT-display-table-setup): New function, sets up the DOS terminal
8556 for a given codepage.
8557 (dos-codepage-setup): New function, sets up the MULE environment
8558 for the current value of dos-codepage.
8559 (top-level if): In the multibyte mode, turn on
8560 unibyte-display-via-language-environment. In the unibyte mode,
8561 set up the special syntax tables to map lower- to upper case and
8562 back.
8563
8564 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org>
8565
8566 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
8567 (speedbar-frame-plist) Remove useless comments.
8568 (speedbar-frame-mode) Do not specify height if it is in the param list.
8569 Use default y position w/out changing it.
8570 If default x position is a list, keep, calculate the non-list X
8571 value when devining an initial position.
8572 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
8573 (speedbar-tag-group-name-minimum-length): New variable.
8574 (speedbar-frame-parameter): New compatibility function.
8575 (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
8576 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
8577 groups to keep things in the right order, and to help with some
8578 naming conventions.
8579 (speedbar-create-tag-hierarchy): Enable buffer local version of
8580 `speedbar-tag-hierarchy-method' in the buffer we are tagging.
8581 (speedbar-line-path) Make DEPTH param optional. Devine it if absent.
8582 the case, derive it from the cursor location in speedbar.
8583
8584 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org>
8585
8586 * international/mule-cmds.el (set-language-environment): On MS-DOS
8587 terminals, install DOS-specific nonascii-translation-table if the
8588 language info doesn't specify one. Pass the default eol-type to
8589 set-language-environment-coding-systems.
8590 (set-default-coding-systems): Copy the eol-type property for the
8591 new default values of {buffer-file,process}-coding-system from the
8592 old defaults.
8593 (set-language-environment-coding-systems): Accept an optional
8594 argument EOL-TYPE, and set the eol-type property of the default
8595 coding systems accordingly.
8596 (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
8597 (set-keyboard-coding-system): Likewise.
8598 (set-default-coding-systems): Don't set
8599 default-terminal-coding-system on MS-DOS to anything but nil.
8600 (prefer-coding-system): Describe in the doc string that
8601 default-terminal-coding-system is not changed on MS-DOS.
8602 (set-language-environment): For MS-DOS, set standard syntax table
8603 and display table for all characters with code above 127.
8604 (standard-display-european-internal): For MS-DOS, pass all
8605 characters with code above 127 directly to the terminal, and don't
8606 remap characters 160 and 146 in the unibyte case.
8607
8608 * international/codepage.el: New file.
8609
8610 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8611
8612 * diary-lib.el (diary-float): Fix end-of-year error and typos in
8613 comments.
8614
8615 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
8616
8617 * map-ynp.el (map-y-or-n-p): Ignore input methods.
8618
8619 * subr.el (read-passwd): Likewise.
8620
8621 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org>
8622
8623 * info.el (Info-find-node): Add 1 to the position read from the
8624 tag table. Don't fail if the node delimiter ^_ is the first
8625 character in the file.
8626 (Info-insert-dir): Don't fail when the node delimiter ^_ is the
8627 first character in the file.
8628 (Info-read-subfile): Likewise.
8629 (Info-select-node): Likewise.
8630 (Info-build-node-completions): Likewise.
8631
8632 1998-12-16 Richard Stallman <rms@gnu.org>
8633
8634 * term/x-win.el (x-cut-buffer-or-selection-value):
8635 If clipboard is enabled, try it before PRIMARY selection.
8636
8637 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
8638
8639 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
8640 insert c-cedilla and C-cedilla respectively, like in latin-1.
8641
8642 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org>
8643
8644 * language/hebrew.el: Don't use sublists in the flags argument
8645 passed to make-coding-system.
8646
8647 1998-12-15 Kenichi Handa <handa@etl.go.jp>
8648
8649 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
8650 list of character sets found by find-charset-region.
8651
8652 * ps-mule.el: Always require ps-print. Move some function
8653 definitions for Emacs 20.2 and the earlier to ps-print.el.
8654 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
8655
8656 * ps-print.el: Define several functions for Emacs 20.2 and the
8657 earlier version.
8658 (ps-printer-name): Check if printer-name is bound.
8659
8660 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8661
8662 * ps-mule.el: Programming uniformization and little code improvement.
8663 (ps-mule-prepare-font): Programming uniformization.
8664 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
8665 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
8666
8667 * ps-bdf.el: Programming uniformization and little code improvement.
8668 (bdf-search-and-read): New fun.
8669 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
8670 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
8671 (bdf-info-relative-compose, bdf-info-baseline-offset)
8672 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
8673 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
8674 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
8675 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
8676 improvement.
8677
8678 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8679
8680 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
8681 and mule related code extraction. Autoload ps-mule funs.
8682
8683 * ps-mule.el: Doc fix. Require ps-print only when compiled.
8684 (ps-mule-prologue-generated): New fun.
8685 (ps-mule-plot-string): Add autoload cookie.
8686 (ps-mule-begin-job): Call ps-mule-prologue-generated.
8687
8688 1998-12-15 Kenichi Handa <handa@etl.go.jp>
8689
8690 * ps-bdf.el: Require ps-mule instead of ps-print.
8691 (bdf-directory-list): Add autoload cookie.
8692
8693 * ps-mule.el: New file. Mule related code extracted from
8694 ps-print.el. Require ps-print, provide ps-mule.
8695 (ps-multibyte-buffer): Add autoload cookie.
8696 (ps-mule-prepare-ascii-font): New fun.
8697 (ps-mule-set-ascii-font): New fun.
8698 (ps-mule-skip-same-charset): Fun deleted.
8699 (ps-mule-plot-string): Set ps-mule-current-charset.
8700 (ps-mule-initialize): Add autload cookie. Don't set
8701 ps-mule-font-info-database here.
8702 (ps-mule-begin-job): Renamed from ps-mule-begin. Update
8703 ps-mule-font-info-database and ps-control-or-escape-regexp.
8704 (ps-mule-begin-page): New fun.
8705
8706 * ps-print.el: Mule related code moved to ps-mule.el.
8707 (ps-begin-job): While setting ps-control-or-escape-regexp, don't
8708 check ps-mule-charset-list.
8709 (ps-begin-page): Don't set ps-mule-current-charset, instead call
8710 ps-mule-begin-page.
8711 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
8712 (ps-plot-region): Don't set ps-mule-current-charset, instead call
8713 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset,
8714 instead skip same charsets by itself.
8715 (ps-generate): Call ps-mule-initialize of needs-begin-file is
8716 non-nil. Call ps-mule-begin-job.
8717
8718 1998-12-15 Kenichi Handa <handa@etl.go.jp>
8719
8720 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf
8721 instead of bdf.
8722
8723 * ps-print.el (ps-mule-font-info-database): Doc-string modified.
8724 (ps-mule-external-libraries): New element FEATURE.
8725 (ps-mule-init-external-library): Ajusted for the above change.
8726 (ps-mule-generate-font): Likewise.
8727 (ps-mule-generate-glyphs): Likewise.
8728 (ps-mule-prepare-font): Likewise.
8729 (ps-mule-initialize): Likewise.
8730 (ps-begin-file): Superfluous tailing parenthesis deleted.
8731
8732 1998-12-15 Kenichi Handa <handa@etl.go.jp>
8733
8734 * international/fontset.el (x-decompose-font-name): If PATTERN
8735 doesn't have any wild cards, return a vector made from a name that
8736 is found by x-resolve-font-name found. Comments added.
8737
8738 * international/mule-cmds.el (find-coding-systems-for-charsets):
8739 Handle the case of unknown charset.
8740 (find-multibyte-characters): If invalid multibyte characters are
8741 found, return the corresponding strings instead of character
8742 codes.
8743 (find-multibyte-characters): Adjusted for the above change.
8744 (select-safe-coding-system): For a unibyte buffer, always returns
8745 DEFAULT-CODING-SYSTEM.
8746 (get-charset-property): Fix previous change. Make it a function.
8747 (put-charset-property): Make it a function.
8748
8749 * international/mule.el (make-coding-system): Set mime-charset
8750 property of *-with-esc coding system to nil.
8751
8752 * international/quail.el (quail-point-in-conversion-region): New
8753 function.
8754 (quail-conversion-backward-delete-char): When a key sequence is
8755 being translated, call quail-delete-last-char.
8756
8757 * language/devan-util.el
8758 (devanagari-reorder-glyphs-for-decomposition): Fix the way to
8759 handle devanagari-decomposition-rules.
8760
8761 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org>
8762
8763 * textmodes/texinfo.el (texinfo-tex-buffer): Bind
8764 tex-start-options-string to empty string.
8765 (texinfo-tex-region): Use texinfo-tex-trailer as documented.
8766
8767 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org>
8768
8769 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
8770 5xx responses are already handled properly).
8771
8772 1998-12-13 Richard Stallman <rms@gnu.org>
8773
8774 * progmodes/compile.el (compilation-error-regexp-alist): Insist
8775 on a non-digit in the file name.
8776
8777 * simple.el (comment-region): Handle comment-padding
8778 separately for insertion and for deletion, in the right way for each.
8779
8780 1998-12-13 Felix Lee <flee@cygnus.com>
8781
8782 * progmodes/compile.el (compilation-error-regexp-alist): Fix
8783 regexp to match "ChangeLog:1:1998-12-09 ..."
8784
8785 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org>
8786
8787 * cus-start.el (dos-unsupported-char-glyph): Add.
8788
8789 1998-12-11 Dave Love <fx@gnu.org>
8790
8791 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
8792 forward-sexp in condition-case.
8793
8794 * emacs-lisp/find-func.el (find-function-search-for-symbol):
8795 Remove unnecessary test on `library' for explicit file name.
8796 Widen scope of save-match-data.
8797
8798 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org>
8799
8800 * international/mule.el (load-with-code-conversion): If the loaded
8801 file was inserted with no-conversion or raw-text coding system,
8802 make the buffer unibyte.
8803
8804 1998-12-09 Richard Stallman <rms@gnu.org>
8805
8806 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
8807 Get rid of nested loops.
8808
8809 * mouse.el (mouse-drag-vertical-line):
8810 If WHICH-SIDE is not `right', then scroll bars are on the left.
8811
8812 * loadhist.el (load-history-loaded): defvar moved to help.el.
8813
8814 * help.el (symbol-file-load-history-loaded): Variable renamed,
8815 and defvar moved from loadhist.el.
8816 (symbol-file): Renamed from describe-function-find-file.
8817 Load fns-VERSION.el here.
8818 (describe-variable, describe-function-1): Use symbol-file.
8819
8820 * textmodes/tex-mode.el (tex-generate-zap-file-name):
8821 Don't start the name with #.
8822
8823 * ispell.el: Take out the eval-when's.
8824
8825 1998-12-09 Peter Breton <pbreton@ne.mediaone.net>
8826
8827 * dirtrack.el (dirtrack-directory-change-hook): New hook.
8828 (dirtrack): Run it. Make debug message more verbose.
8829
8830 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
8831
8832 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
8833 name of the abbrev table, and provide support for XEmacs.
8834 (octave-xemacs-p): New variable.
8835
8836 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
8837
8838 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
8839 exit, when mail-interactive is nil.
8840
8841 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
8842
8843 * files.el (after-find-file): Message fix.
8844
8845 1998-12-09 Ken Stevens <stevens@kdstevens.com>
8846
8847 * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
8848
8849 1998-12-09 Geoff Voelker <voelker@cs.washington.edu>
8850
8851 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
8852 filenames using backslashes.
8853
8854 1998-12-09 Dave Love <fx@gnu.org>
8855
8856 * browse-url.el (browse-url-mail): Call compose-mail-other-window
8857 with correct number of args.
8858 (browse-url-maybe-new-window): New arg. Callers changed.
8859
8860 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
8861 comment.
8862
8863 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
8864
8865 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
8866
8867 1998-12-08 Markus Rost <rost@delysid.gnu.org>
8868
8869 * vc.el (vc-rcs-release): Fix Type.
8870 (vc-sccs-release): Fix Type.
8871 (vc-cvs-release): Fix Type.
8872
8873 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
8874 arg work right.
8875
8876 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
8877 output of last undeleted message.
8878
8879 1998-12-07 Geoff Voelker <voelker@cs.washington.edu>
8880
8881 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
8882 (buffer-undo-list) [windows-nt]: Use different relative path.
8883
8884 1998-12-07 Simon Marshall <simon@gnu.org>
8885
8886 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
8887
8888 1998-12-05 Markus Rost <rost@delysid.gnu.org>
8889
8890 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
8891
8892 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
8893
8894 1998-12-04 Markus Rost <rost@delysid.gnu.org>
8895
8896 * info.el (Info-menu): Don't return error if point is between menu
8897 header and first menu item.
8898
8899 1998-12-04 Dave Love <fx@gnu.org>
8900
8901 * help.el (describe-function-1): Fix description for alias.
8902
8903 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org>
8904
8905 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
8906 specifications from summary line.
8907
8908 * rect.el (delete-whitespace-rectangle): Mark for autoload.
8909 (close-rectangle): Define alias only once in loaddefs.el.
8910
8911 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org>
8912
8913 * term/internal.el: Remove code which sets up a special syntax
8914 table for non-ASCII characters.
8915
8916 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org>
8917
8918 * dos-w32.el (direct-print-region-function): Try to ensure that
8919 printer-name is expanded to a file name on a local drive;
8920 sometimes printing a file loaded from a network volume fails.
8921 (direct-print-region-function): Add a function to
8922 write-region-annotate-functions to append a formfeed character to
8923 the region being printed, if the region doesn't end with a
8924 formfeed already. This avoids creating a second print job
8925 containing a blank page when print spooling is enabled on Windows.
8926
8927 1998-12-02 Dave Love <fx@gnu.org>
8928
8929 * help.el (help-make-xrefs): Use `info', not the non-autoloaded
8930 `Info-goto-node'.
8931
8932 1998-12-02 Richard Stallman <rms@gnu.org>
8933
8934 * help.el (temp-buffer-resize-mode): Doc fix.
8935
8936 * cus-edit.el (custom-save-delete): Save point before
8937 reading a sexp, rather than backing up.
8938
8939 * international/iso-transl.el: Fix previous change.
8940
8941 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
8942
8943 * vc.el (vc-dired-window-configuration, vc-ediff-windows,
8944 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
8945 Added defvars to suppress compilation warnings.
8946
8947 1998-11-30 Ken Stevens <k.stevens@ieee.org>
8948
8949 * ispell.el: Improved and fixed customize for variables:
8950 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
8951 ispell-dictionary-alist, ispell-skip-sgml.
8952 Improved and fixed comments in variables and messages for
8953 functions: ispell-help-in-bufferp, ispell-local-dictionary,
8954 ispell-menu-map, ispell-checking-message, ispell-parser,
8955 ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
8956 ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
8957 ispell-comments-and-strings, ispell-continue, ispell-complete-word,
8958 ispell-message-text-end, ispell-add-per-file-word-list.
8959 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
8960 system is now required for all languages. Casechars improved for
8961 castellano, castellano8, and norsk dictionaries. Dictionary
8962 norsk7-tex added. Dictionary polish added.
8963 (ispell-dictionary-alist): Redefined at load-time to support
8964 dictionary changes.
8965 (ispell-menu-map): Redefined at load-time to support menu changes.
8966 (ispell-check-version): New alias for `check-ispell-version'.
8967 (ispell-parse-output): Fixed matching for ispell error messages.
8968 Correctly returns spelling suggestions in order generated by ispell
8969 process.
8970 (check-ispell-version): Ensure `case-fold-search' doesn't get
8971 redefined.
8972 (ispell-complete-word): Ensure `case-fold-search' doesn't get
8973 redefined. Fix bug that didn't respect case of word being completed.
8974 (ispell-init-process): Set process coding system to be compatible
8975 with emacs processes and the ispell process.
8976 (ispell-kill-ispell): Ensures ispell process has terminated before
8977 starting new process. This can otherwise confuse process filters
8978 and hang the ispell process.
8979 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
8980 skipping support for sgml.
8981 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r
8982 which could cause `ispell-complete-word' to hang.
8983 (ispell-message): Improved message reference matching. Ensure
8984 `case-fold-search' doesn't get redefined.
8985 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
8986 get redefined. Fixed bug in returning to nroff mode from tex mode.
8987 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
8988 get redefined.
8989
8990 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu>
8991
8992 * textmodes/flyspell.el (flyspell-check-word-p):
8993 Don't delay inside a kbd macro.
8994
8995 * subr.el (make-local-hook): Return the hook variable.
8996
8997 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
8998
8999 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
9000 Use a timer instead of post-command-hook.
9001 (hscroll-timer): New variable.
9002
9003 1998-11-30 Dave Love <fx@gnu.org>
9004
9005 * help.el (help-xref-button): Do nothing if text already has the
9006 help-xref property.
9007 (describe-variable): Revert previous change to hyperlink to source.
9008
9009 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
9010
9011 * bindings.el (features): Add `base64' to this list.
9012
9013 * loadhist.el (symbol-file): Doc fix.
9014
9015 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9016
9017 * files.el (hack-one-local-variable): Cope with non-file buffers.
9018
9019 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu>
9020
9021 * help.el (describe-mode): Put major mode first.
9022
9023 * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
9024 to support special-display and same-window features.
9025
9026 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu>
9027
9028 * simple.el (transpose-subr, transpose-subr-1): Rename variables
9029 bound in one function and used in the other.
9030 (transpose-subr-start1, transpose-subr-start2): Add defvars.
9031 (transpose-subr-end1, transpose-subr-end2): Add defvars.
9032
9033 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9034
9035 * autoinsert.el (auto-insert-alist): Use user-mail-address.
9036
9037 1998-11-26 Kenichi Handa <handa@etl.go.jp>
9038
9039 * international/ccl.el (ccl-dump-translate-character-const-tbl):
9040 Give format correct control string.
9041
9042 * international/mule.el (define-translation-table): Fix bug of
9043 setting incorrect translation-table-id. If the first element of
9044 ARGS is a translation table, just register it.
9045
9046 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
9047 property.
9048
9049 1998-11-24 Michael Ernst <mernst@alum.mit.edu>
9050
9051 * thingatpt.el (thing-at-point-url-at-point): Don't use current
9052 syntax table to determine what is whitespace.
9053
9054 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu>
9055
9056 * frame.el (frame-parameter): Doc fix.
9057
9058 * textmodes/tex-mode.el (tex-feed-input): New function.
9059 (tex-define-common-keys): Add binding for C-c C-m.
9060
9061 1998-11-23 Dave Love <fx@gnu.org>
9062
9063 * progmodes/fortran.el: Various minor doc fixes.
9064 (fortran-font-lock-keywords-1): Add `d' to comment-chars.
9065 (fortran-with-subprogram-narrowing): New macro.
9066 (fortran-check-for-matching-do): Use it.
9067 (fortran-end-do): Use fortran-check-end-prog-re.
9068 (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
9069 (fortran-calculate-indent, fortran-calculate-indent): Likewise.
9070
9071 1998-11-23 Simon Marshall <simon@gnu.org>
9072
9073 * font-lock.el (font-lock-defaults): Doc fix.
9074 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
9075 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
9076
9077 * lazy-lock.el (lazy-lock-unstall):
9078 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
9079
9080 * fast-lock.el (fast-lock-save-cache-1):
9081 (fast-lock-cache-data): Rewritten to use with-temp-message.
9082
9083 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org>
9084
9085 * mail/rmail.el (rmail-set-message-counters-counter): Detect
9086 messages that have been added with DOS line endings and convert
9087 the line endings for such messages.
9088
9089 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9090
9091 * help.el: Add resizing of temporary buffers.
9092 (temp-buffer-resize-mode): New command and variable.
9093 (temp-buffer-max-height): New variable.
9094 (resize-temp-buffer-window): New function.
9095
9096 * window.el (window-buffer-height): New function, split from
9097 shrink-window-if-larger-than-buffer.
9098 (shrink-window-if-larger-than-buffer): Use window-buffer-height.
9099
9100 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu>
9101
9102 * frame.el (initial-frame-alist): Add defcustom.
9103
9104 * shell.el (shell-prompt-pattern): Add defcustom.
9105
9106 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9107
9108 * message.el (message-ignored-supersedes-headers): Remove
9109 NNTP-Posting-Date.
9110
9111 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu>
9112
9113 * help.el (describe-mode): Don't avoid loop indirecting thru
9114 value of INDICATOR.
9115
9116 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu>
9117
9118 * help.el (describe-variable): Allow any variable with a defcustom,
9119 even if it is not a user variable.
9120
9121 * mail/rmail.el (mail-unsent-separator): Additional alternative.
9122
9123 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org>
9124
9125 * gnus/nntp.el (nntp-request-group): Allow for failures when
9126 requesting a new group.
9127
9128 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu>
9129
9130 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
9131
9132 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9133
9134 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
9135
9136 1998-11-19 Simon Marshall <simon@gnu.org>
9137
9138 * subr.el (with-temp-message): New macro.
9139
9140 * emacs-lisp/lisp-mode.el (with-temp-message):
9141 Add lisp-indent-function property.
9142
9143 1998-11-18 Dave Love <fx@gnu.org>
9144
9145 * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
9146
9147 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu>
9148
9149 * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
9150 This is not obsolete.
9151
9152 1998-11-18 Kenichi Handa <handa@etl.go.jp>
9153
9154 * textmodes/picture.el: Make a new map by make-keymap.
9155 (picture-desired-column): New variable.
9156 (picture-update-desired-column): New function.
9157 (picture-beginning-of-line): Set picture-desired-column to 0.
9158 (picture-end-of-line): Set picture-desired-column to the current
9159 column.
9160 (picture-forward-column): Pay attention to multi-column character.
9161 (picture-backward-column): Likewise.
9162 (picture-move-down): Likewise.
9163 (picture-move-up): Likewise.
9164 (picture-movement-nw): With prefix arg, move twice columns.
9165 (picture-movement-ne): Likewise.
9166 (picture-movement-sw): Likewise.
9167 (picture-movement-se): Likewise.
9168 (picture-set-motion): Handle two-column movements.
9169 (picture-move): Call picture-move-down or picture-forward-column
9170 only when necessary.
9171 (picture-insert): Pay attention to picture-desired-column.
9172 (picture-self-insert): Likewise.
9173 (picture-clear-column): Pay attention to multi-column character.
9174 (picture-mode): Modify doc-string for two-column movement.
9175
9176 * rect.el (move-to-column-force): New function.
9177 (operate-on-rectangle): If coerce-tabs is non-nil, call
9178 move-to-column-force instead of move-to-column.
9179 (insert-rectangle): Call move-to-column-force instead of
9180 move-to-column.
9181 (open-rectangle-line): If begextra is not zero, call
9182 move-to-column-force.
9183
9184
9185 1998-11-16 Dave Love <fx@gnu.org>
9186
9187 * textmodes/sgml-mode.el Require skeleton when compiling.
9188 (sgml-font-lock-keywords-1): Accept single-letter tags.
9189 (v2): Defvar free variable.
9190
9191 1998-11-16 Sam Steingold <sds@goems.com>
9192
9193 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
9194 macro, not ELisp one.
9195
9196 1998-11-16 Kenichi Handa <handa@etl.go.jp>
9197
9198 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
9199 characters to symbol.
9200
9201 * language/japan-util.el (japanese-zenkaku-region): New optional
9202 arg KATAKANA-ONLY.
9203
9204 1998-11-16 Kenichi Handa <handa@etl.go.jp>
9205
9206 * international/mule.el
9207 (after-insert-file-set-buffer-file-coding-system): If the buffer
9208 is changed to unibyte, return inserted bytes.
9209
9210 * tar-mode.el (tar-header-block-tokenize): Decode codes of file
9211 and link names if necessary.
9212 (tar-header-block-summarize): Handle the case that file or link
9213 names are multibyte.
9214 (tar-summarize-buffer): At first set the current buffer unibyte,
9215 then if there are multibyte file names, change it to multibyte.
9216 (tar-mode): Get char position from tar-header-offset.
9217 (tar-extract): Avoid multibyte<->unibyte conversion in
9218 insert-buffer-subsring by setting both buffers unibyte
9219 temporarily.
9220 (tar-copy): Set the buffer unibyte while doing a work. Write
9221 without code conversion.
9222 (tar-expunge): Set the buffer unibyte while doing a work.
9223 (tar-alter-one-field): Likewise.
9224 (tar-clear-modification-flags): Compare byte position with
9225 tar-header-offset.
9226 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
9227 insert-buffer-subsring by setting both buffers unibyte
9228 temporarily. Pay attention to multibyteness while updating the
9229 descriptor-line.
9230 (tar-mode-write-file): Write without code conversion.
9231
9232 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9233
9234 * nngateway.el: Require cl.
9235
9236 1998-11-15 Dave Love <fx@gnu.org>
9237
9238 * progmodes/fortran.el: Fix previous change:
9239 (fortran-end-prog-re1): Changed.
9240 (fortran-check-end-prog-re): New function.
9241 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
9242
9243 1998-11-13 Tom Breton <tob@world.std.com>
9244
9245 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
9246 GNU Emacs.
9247
9248 1998-11-13 Carsten Dominik <cd@delysid.gnu.org>
9249
9250 * textmodes/reftex.el: (reftex-finding-files): Group documentation
9251 fixed.
9252 (reftex-toc-toggle-file-boundary,
9253 reftex-toc-toggle-labels,
9254 reftex-toc-toggle-context,reftex-find-start-point): New functions.
9255 (reftex-toc-include-labels, reftex-toc-include-context,
9256 reftex-toc-include-file-boundaries,
9257 reftex-toc-keep-other-windows): New options.
9258 (reftex-use-text-after-label-as-context): Option removed.
9259 (reftex-extract-bib-entries): Protect use in non-latex
9260 buffers.
9261 (reftex-toc-visit-location): Renamed from
9262 `reftex-toc-visit-line'.
9263 (reftex-latin1-to-ascii): Works now with and without Mule.
9264 (reftex-truncate): Removed special stuff for Emacs 20.2.
9265 (reftex-get-offset): Made more general.
9266 (reftex-show-label-location): Renamed from
9267 `reftex-select-label-callback'.
9268 (reftex-pop-to-label): Function removed (using
9269 `reftex-show-label-location' instead.
9270 (reftex-insert-docstruct): Renamed from
9271 `reftex-make-and-insert-label-list'. Function args changed.
9272 (reftex-toc): Now uses `reftex-insert-docstruct' and
9273 `reftex-find-start-point'.
9274 (reftex-select-item): Use `reftex-find-start-point'.
9275 (reftex-toc-visit-line): Can display labels and file
9276 boundaries.
9277 (reftex-TeX-master-file): `(TeX-master-file)' protected.
9278
9279 1998-11-12 Sam Steingold <sds@goems.com>
9280
9281 * browse-url.el (browse-url): Handle the case when
9282 `browse-url-browser-function' is a lambda list.
9283
9284 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org>
9285
9286 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
9287 version string.
9288 * loadhist.el (symbol-file): Likewise
9289
9290 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM>
9291
9292 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
9293
9294 1998-11-11 Sam Steingold <sds@goems.com>
9295
9296 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
9297 `run-lisp' instead of signalling an error.
9298
9299 1998-11-11 Karl Heuer <kwzh@gnu.org>
9300
9301 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
9302
9303 1998-11-11 Richard Stallman <rms@gnu.org>
9304
9305 * vc-hooks.el (vc-toggle-read-only): Doc fix.
9306
9307 1998-11-11 Per Starback <starback@update.uu.se>
9308
9309 * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
9310 renamed svenska8 to svenska, and fixed and extended CASECHARS
9311 for it.
9312
9313 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org>
9314
9315 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
9316 handling if setpagedevice is not available.
9317 (ps-begin-file): Fix typo.
9318
9319 1998-11-11 Kenichi Handa <handa@etl.go.jp>
9320
9321 * international/mule-util.el (compose-chars-component): Signal
9322 error if CH is a rule-based composition character.
9323 (compose-chars): Signal error if an already compsed character is
9324 going to be composed by rule-base.
9325
9326 * term/x-win.el: If a resolved ASCII font name doesn't conform to
9327 full XLFD, don't try to get information of WEIGHT and SLANT from
9328 that font name.
9329
9330 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
9331
9332 * dos-w32.el (set-default-process-coding-system): Use function on
9333 before-init-hook to set default-process-coding-system based on
9334 enable-multibyte-characters.
9335
9336 * term/w32-win.el ([language-change]): For now ignore
9337 keyboard language-change events.
9338
9339 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org>
9340
9341 * ediff-util.el (ediff-make-temp-file): Run the prefix through
9342 convert-standard-file-name, but leave the results of
9343 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2
9344 characters if the original name already exists, or has a special
9345 handler.
9346
9347 1998-11-10 Karl Heuer <kwzh@gnu.org>
9348
9349 * international/iso-insert.el: Delete autoload cookies.
9350
9351 * international/iso-transl.el: Add autoload cookies.
9352
9353 1998-11-10 Richard Stallman <rms@gnu.org>
9354
9355 * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
9356 (ispell-process-line): Don't treat multibyte
9357
9358 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk>
9359
9360 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
9361 setpagedevice to specify the page size if setpagedevice is
9362 available. This is necessary to select the correct paper tray on
9363 Level 2 printers with multiple paper sizes available.
9364
9365 (ps-begin-file): Cope with font names that contain spaces, and
9366 call BeginDoc in a BeginSetup/EndSetup block.
9367
9368 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org>
9369
9370 * loadup.el (buffer-undo-list): Run fns-VERSION.el through
9371 convert-standard-filename.
9372
9373 * loadhist.el (symbol-file): Run fns-VERSION.el through
9374 convert-standard-filename.
9375
9376 1998-11-06 Richard Stallman <rms@gnu.org>
9377
9378 * textmodes/texinfmt.el (texinfo-format-scan):
9379 Detect the case of two @-commands in a row; process just the first.
9380 (texinfo-append-refill): If line has a @c, insert the @refill
9381 before it.
9382 (texinfo-format-refill): Return with point where the @refill was.
9383
9384 * files.el (hack-local-variables): Test local-enable-local-variables.
9385 (hack-local-variables-prop-line): Likewise.
9386 (set-auto-mode): Don't test local-enable-local-variables here.
9387 (enable-local-variables): Doc fix.
9388 (local-enable-local-variables): Doc fix.
9389 (normal-mode): Doc fix.
9390
9391 1998-11-06 Karl Heuer <kwzh@gnu.org>
9392
9393 * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
9394
9395 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM>
9396
9397 * simple.el (line-number-mode): Doc fix.
9398
9399 1998-11-06 Kenichi Handa <handa@etl.go.jp>
9400
9401 * international/fontset.el (create-fontset-from-fontset-spec):
9402 Give correct arg to `error'.
9403
9404 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org>
9405
9406 * textmodes/sgml-mode.el (html-mode): Doc fix.
9407 (sgml-name-8bit-mode): Fix missing format character in message string.
9408
9409 1998-11-05 Karl Heuer <kwzh@gnu.org>
9410
9411 * mail/sendmail.el (sendmail-send-it): Check for failure.
9412
9413 1998-11-05 Richard Stallman <rms@gnu.org>
9414
9415 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
9416
9417 * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
9418 (close-rectangle): Define as alias.
9419
9420 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu>
9421
9422 * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
9423
9424 1998-11-05 Dave Love <fx@gnu.org>
9425
9426 * help.el (describe-variable): Don't quote link to source.
9427
9428 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu>
9429
9430 * gud.el (gud-common-init): Use pop-to-buffer.
9431 (same-window-regexps): Add an element that matches all gud buffers.
9432
9433 1998-11-04 Jason Rumney <jasonr@altavista.net>
9434
9435 * term/w32-win.el (x-get-selection-value): Alias to
9436 x-cut-buffer-or-selection-value.
9437 (w32-standard-fontset-spec): New variable.
9438 (w32-create-initial-fontsets, mouse-set-font): Check whether
9439 new-fontset is available.
9440 (w32-use-w32-font-dialog): Enable use of set-variable.
9441
9442 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9443
9444 * vc.el (with-vc-file, edit-vc-file): New macros.
9445
9446 1998-11-04 Kenichi Handa <handa@etl.go.jp>
9447
9448 * international/quail.el (quail-show-guidance-buf): Call
9449 set-minibuffer-window to set minibuffer window of the current
9450 frame correctly.
9451
9452 1998-11-03 Theodore Jump <tjump@tertius.com>
9453
9454 * term/w32-win.el: Require fontset.
9455
9456 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org>
9457
9458 * faces.el (set-face-font): Call resolve-fontset-name on w32.
9459 (set-face-font-auto): Ditto.
9460
9461 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
9462
9463 * mouse.el (mouse-drag-region): Fix typo.
9464
9465 1998-11-02 Dave Love <fx@gnu.org>
9466
9467 * progmodes/fortran.el Fix for fontification of strings lost somehow:
9468 (fortran-fontify-string): New function.
9469 (fortran-font-lock-keywords-1): Use it.
9470
9471 1998-11-02 Markus Rost <rost@delysid.gnu.org>
9472
9473 * comint.el (comint-file-name-quote-list): Doc fix.
9474
9475 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
9476
9477 * loadup.el (buffer-undo-list): Write fns-VERSION.el into
9478 build directory, not source directory.
9479
9480 * mouse.el (mouse-drag-region): Fake up a mouse-motion event
9481 if we did not get one for the final move.
9482
9483 1998-11-01 Dave Love <fx@gnu.org>
9484
9485 * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
9486 Don't funcall browse-url-browser-function.
9487
9488 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
9489 Don't funcall browse-url-browser-function.
9490
9491 * fortran.el (fortran-end-prog-re1): Fix the regexp.
9492
9493 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
9494
9495 * files.el (revert-buffer): Doc fix.
9496
9497 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
9498
9499 * textmodes/tex-mode.el (tex-start-options-string):
9500 Quote the backslashes with more backslashes.
9501
9502 1998-10-31 Dave Love <fx@gnu.org>
9503
9504 * webjump.el (webjump-sample-sites): Fix Lisp archive site.
9505 (webjump): Don't funcall browse-url-browser-function.
9506
9507 1998-10-30 Kenichi Handa <handa@etl.go.jp>
9508
9509 * international/quail.el (quail-start-translation): Handle
9510 switching of the frame in read-key-sequence.
9511 (quail-start-conversion): Likewise.
9512 (quail-show-guidance-buf): Detach quail-guidance-buf from any
9513 windows before setting an appropriate window for it.
9514 (quail-hide-guidance-buf): Use window-minibuffer-p. Set
9515 quail-guidance-win to nil.
9516 (quail-update-guidance): If quail-guidance-buf is not in the
9517 selected frame, call quail-show-guidance-buf again.
9518
9519 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no>
9520
9521 * progmodes/pascal.el (pascal-mode):
9522 `blink-matching-paren-dont-ignore-comments' set to t.
9523
9524 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9525
9526 * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
9527
9528 1998-10-30 Dave Love <fx@gnu.org>
9529
9530 * vc.el (vc-backend-merge-news): Check for "P" output.
9531
9532 * help.el (describe-variable): Hyperlink the definition.
9533
9534 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
9535
9536 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
9537 (sh-set-shell): Likewise.
9538
9539 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
9540
9541 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
9542 (edebug-on-error): Fix customize type to match that of
9543 debug-on-error.
9544
9545 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
9546
9547 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
9548 report-emacs-bug-address instead of undefined bug-gnu-emacs.
9549
9550 * international/mule-cmds.el (select-message-coding-system): Doc
9551 fix.
9552
9553 * international/mule-diag.el (describe-coding-system): Describe
9554 all flags.
9555
9556 * mail/sendmail.el (sendmail-coding-system,
9557 default-sendmail-coding-system): Doc fix.
9558
9559 * simple.el (shell-command-on-region): Doc fix.
9560
9561 * loadup.el: Write fns-*.el in current directory instead of
9562 data-directory since no installation directory exists yet. Mark
9563 buffer unmodified afterwards.
9564
9565 * loadhist.el (symbol-file): Load fns-*.el from exec-directory
9566 instead of data-directory since it is architecture dependent.
9567 (load-history-loaded): Update doc string.
9568
9569 1998-10-29 Geoff Voelker <voelker@cs.washington.edu>
9570
9571 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
9572 path as a default directory when canonicalizing names.
9573
9574 * w32-fns.el: Remove a dangling reference to a directory on the
9575 build machine.
9576
9577 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu>
9578
9579 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
9580 namespace related keywords such as `class', `body', `private',
9581 `variable', `namespace eval', etc.
9582 (tcl-imenu-generic-expression): Handle itcl body and class definitions.
9583 (tcl-mode): Added ":" as a word constituent to the syntax-alist of
9584 imenu and font-lock so that searches for \sw would find words
9585 containing colons.
9586
9587 * progmodes/etags.el (initialize-new-tags-table):
9588 Do not alter find-tag-marker-ring and tags-location-ring.
9589
9590 1998-10-27 Geoff Voelker <voelker@cs.washington.edu>
9591
9592 * term/w32-win.el: Require fontset.
9593 (w32-init-fontsets): New function (code from x-win.el).
9594
9595 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9596
9597 * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
9598 calendar-and-diary-frame-parameters): Add title parameter.
9599
9600 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9601
9602 * completion.el (dynamic-completion-mode): New function to enable
9603 the mode. (Just loading the file now does not change anything.)
9604
9605 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9606
9607 * ps-print.el: User option for multibyte buffer handling and doc fix.
9608 (ps-multibyte-buffer): New user option.
9609 (ps-setup): Print new user option.
9610 (ps-print-quote): New fun.
9611 (ps-color-p, ps-mule-font-info-database-latin): New var.
9612 (ps-default-color, ps-mule-font-info-database)
9613 (ps-mule-font-info-database-ps-bdf): Adjust initialization.
9614 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
9615 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
9616 Little code improvement.
9617 (ps-mule-initialize): Initialize ps-mule-font-info-database.
9618 (ps-print-prologue-header, ps-font-family, ps-font-size)
9619 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
9620 (ps-build-face-reference, ps-mule-font-info-database-bdf)
9621 (ps-mule-external-libraries, ps-mule-init-external-library)
9622 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
9623 Doc fix.
9624 (ps-print-version): New version number (4.1.1) and doc fix.
9625 (ps-print-prologue-header): New user option.
9626 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
9627 Conditional compilation for GNU Emacs and emacsens.
9628 (ps-generate-postscript-with-faces): Skip invisible text better.
9629 (ps-setup): Print new user option.
9630 (ps-print-preprint): Check if input file name exists and is unwritable.
9631 (ps-begin-file): Adjust PostScript prologue header for duplex printers
9632 and insert user PostScript prologue header comments.
9633 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
9634 New funs.
9635 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
9636 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
9637 PostScript programming normalization.
9638 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
9639 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
9640 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
9641 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
9642 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
9643 Programming style normalization.
9644
9645 1998-10-26 Kenichi Handa <handa@etl.go.jp>
9646
9647 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
9648 version, check the value of mule-version.
9649
9650 * international/mule-util.el (compose-region): Insert then delete
9651 to preserve markers.
9652 (decompose-region): Use search-forward for efficiency.
9653
9654 * language/chinese.el (pre-write-encode-hz): Cancel previous
9655 change, use generate-new-buffer instead of get-buffer-create.
9656 * language/devan-util.el
9657 (in-is13194-devanagari-pre-write-conversion): Likewise.
9658 * language/thai-util.el (thai-pre-write-conversion): Likewise.
9659 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
9660 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
9661
9662 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9663
9664 * mail/rmailsum.el (rmail-message-subject-p):
9665 Handle message whose header has not been reformatted.
9666
9667 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
9668
9669 1998-10-25 Jason Rumney <jasonr@altavista.net>
9670
9671 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
9672 New variables.
9673 (mouse-set-font): Use font menus instead of dialog according to
9674 w32-use-w32-font-dialog.
9675
9676 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9677
9678 * calendar/calendar.el (calendar-day-name-array): Add doc string
9679 correctly!
9680 (calendar-month-name-array): Add doc string correctly!
9681
9682 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu>
9683
9684 * net-utils.el (whois-get-tld): Rewrite not to use `do'.
9685
9686 1998-10-21 Markus Rost <rost@delysid.gnu.org>
9687
9688 * lisp/info.el (Info-next-menu-item): Stay on top of node.
9689
9690 * mail/rmailout.el (rmail-output): Insert newline only if necessary.
9691
9692 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
9693
9694 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
9695
9696 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org>
9697
9698 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
9699
9700 1998-10-21 Karl Heuer <kwzh@gnu.org>
9701
9702 * emacs-lisp/profile.el (profile-timer-program): Var deleted.
9703 (profile-timer-process, profile-temp-result-, profile-time): Likewise.
9704 (profile-filter, profile-reset-timer): Functions deleted.
9705 (profile-check-zero-init-times, profile-get-time): Likewise.
9706 (profile-find-function, profile-quit): Likewise.
9707 (profile-distinct, profile-call-stack, profile-last-time): New vars.
9708 (profile-time-list, profile-init-list): Doc fix.
9709 (profile-functions): Simplify.
9710 (profile-print): Use float. Make output include space separators.
9711 (profile-add-time): New helper function.
9712 (profile-function-prolog): Renamed from profile-start-function.
9713 Handle profile-distinct.
9714 (profile-function-epilog): Renamed from profile-update-function.
9715 Handle profile-distinct.
9716 (profile-a-function): If the function to be profiled is an
9717 autoload form, load it. If it's lazy-loaded, fetch it.
9718 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
9719 (profile-restore-fun): Arg FUN is now a function symbol, as was
9720 documented, rather than a one-element list.
9721 (profile-finish): Call profile-restore-fun properly.
9722
9723 1998-10-21 Kenichi Handa <handa@etl.go.jp>
9724
9725 * international/characters.el: Setup charset property
9726 nospace-between-words.
9727
9728 * international/mule-cmds.el (get-charset-property): If CHARSET is
9729 composition, return nil.
9730 (put-charset-property): If CHARSET is composition, do nothing.
9731
9732 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
9733 * language/devan-util.el
9734 (in-is13194-devanagari-pre-write-conversion): Likewise.
9735 * language/thai-util.el (thai-pre-write-conversion): Likewise.
9736 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
9737 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
9738
9739 * textmodes/fill.el (sentence-end-without-period): New variable.
9740 (canonically-space-region): Pay attention to
9741 sentence-end-without-period.
9742 (fill-find-break-point): The first argument CHARSET deleted.
9743 Caller changed.
9744 (fill-region-as-paragraph): Pay attention to charset property
9745 nospace-between-words and text property nospace-between-words.
9746
9747 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
9748
9749 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
9750 an unrecognized shell.
9751
9752 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org>
9753
9754 * desktop.el (desktop-save): Include minor modes symbolically.
9755 (desktop-create-buffer): Turn on all minor modes in `mim'.
9756
9757 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
9758
9759 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
9760 (sh-font-lock-keywords): Handle rpm and rpm2.
9761 (sh-ancestor-alist): Handle rpm.
9762
9763 * files.el (auto-mode-alist): Recognize .rpm files.
9764 Also .spec and .mspec files.
9765
9766 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org>
9767
9768 * faces.el (frame-set-background-mode): Enable the function for
9769 MSDOS frames.
9770
9771 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9772
9773 * calendar/calendar.el (calendar-day-name-array): Add doc string.
9774 (calendar-month-name-array): Add doc string.
9775
9776 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu>
9777
9778 * simple.el (kill-ring-max): Increased to 60.
9779
9780 1998-10-17 Kenichi Handa <handa@etl.go.jp>
9781
9782 * international/characters.el: Setup auto-fill-chars.
9783
9784 * international/kinsoku.el (kinsoku): Check the variable
9785 enable-kinsoku.
9786
9787 * simple.el (do-auto-fill): Don't check kinsoku-enable here.
9788 Don't call kinsoku directly, intead call fill-find-break-point.
9789
9790 * textmodes/fill.el: Setup `fill-find-break-point-function'
9791 property to character sets which require `kinsoku' processing for
9792 filling.
9793 (fill-find-break-point): New function.
9794 (fill-region-as-paragraph): Don't check kinsoku-enable here.
9795 Don't call kinsoku directly, intead call fill-find-break-point.
9796
9797 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu>
9798
9799 * faces.el (modify-face-read-string): Return (nil) for "none".
9800 (modify-face): Don't get error if (nil) is the argument.
9801 (face-try-color-list): Don't check whether nil is a valid color.
9802
9803 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu>
9804
9805 * emacs-lisp/bytecomp.el (byte-recompile-directory):
9806 Print message about each directory, even in batch mode.
9807
9808 * gnus/nntp.el: Require `cl' before using nnoo-declare.
9809
9810 * ps-print.el (ps-mule-chars-in-string): No need to use sref.
9811 (ps-mule-string-char): No need to use sref.
9812 (ps-mule-next-index): No need to use sref.
9813
9814 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
9815
9816 * files.el (revert-buffer-internal-hook): Add defvar.
9817
9818 * arc-mode.el (archive-mode): Locally set file-precious-flag.
9819
9820 * tar-mode.el (tar-mode): Locally set file-precious-flag.
9821
9822 1998-10-16 Markus Rost <rost@delysid.gnu.org>
9823
9824 * international/mule-cmds.el (default-input-method): Fix custom type.
9825
9826 * net-utils.el (whois-server-list): Fix customization type.
9827
9828 * shell.el (shell-input-autoexpand): Fix customization group.
9829
9830 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu>
9831
9832 * repeat.el (repeat): Handle keyboard macros properly.
9833 Handle new prefix arg after self-insert command.
9834
9835 * repeat.el: Don't include cl even at compile time.
9836 (repeat): Avoid using `loop'.
9837
9838 * simple.el (shell-command-on-region): Doc fix.
9839 (next-history-element): Special error message if no default.
9840
9841 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu>
9842
9843 * ps-print.el (ps-print-buffer): Doc fix.
9844 (ps-despool): Likewise.
9845
9846 * arc-mode.el (arc-mode): Provide arc-mode.
9847
9848 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
9849
9850 * ps-print.el (ps-print-buffer): Doc fix.
9851
9852 1998-10-14 Dave Love <fx@gnu.org>
9853
9854 * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
9855 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
9856 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
9857
9858 * progmodes/fortran.el (fortran-mode-map): Change "Join
9859 Continuation Line" to "Join Line".
9860 (fortran-font-lock-keywords-1): Add "cycle", "exit".
9861
9862 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9863
9864 * progmodes/fortran.el (fortran-join-line): Use
9865 `delete-indentation' instead of issuing an error message if not on
9866 a continuation line. Provide for joining several lines using
9867 prefix arg.
9868
9869 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org>
9870
9871 * term/pc-win.el (msdos-color-values): New variable.
9872 (x-color-values): New function, emulates its namesake from
9873 src/xfns.c.
9874 (msdos-bg-mode): Add all dark colors to those which return
9875 "dark".
9876
9877 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
9878
9879 * replace.el (keep-lines, flush-lines, how-many):
9880 Don't ignore case if arg has upper case letters.
9881
9882 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch>
9883
9884 * progmodes/vhdl-mode.el
9885 (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
9886 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
9887 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
9888 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
9889 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
9890 (vhdl-when): Fix indentation problem.
9891 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
9892 (vhdl-get-port, vhdl-get-generic): Bug fix in template.
9893 (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
9894
9895 1998-10-13 Geoff Voelker <voelker@cs.washington.edu>
9896
9897 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
9898 (ls-lisp-insert-directory): Renamed from insert-directory.
9899 (insert-directory): New function.
9900
9901 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
9902
9903 * simple.el (completion-fixup-function): Variable deleted.
9904 (completion-setup-function): Delete code for completion-fixup-function.
9905 * emacs-lisp/lisp.el (lisp-complete-symbol):
9906 Don't bind completion-fixup-function.
9907
9908 * files.el (find-file-wildcards): New option.
9909 (find-file-noselect): Handle wild cards, if enabled.
9910 (file-expand-wildcards): New function.
9911
9912 * simple.el (set-fill-column): Doc fix.
9913
9914 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9915
9916 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
9917
9918 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org>
9919
9920 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
9921 Move declaration before first use.
9922 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
9923 hif-math, hif-factor): Rename token to hif-token and token-list to
9924 hif-token-list.
9925 (hif-token, hif-token-list): Declare them.
9926 (hif-find-ifdef-block): Return cons of top and bottom point
9927 instead of setting dynamically bound variables.
9928 (hide-ifdef-block, show-ifdef-block): Use return value of
9929 hif-find-ifdef-block.
9930
9931 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
9932
9933 * subr.el (read-passwd): Use clear-this-command-keys.
9934
9935 * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
9936
9937 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
9938 and ...-for-write.
9939
9940 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk>
9941
9942 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
9943 responses to GROUP command, since this may be called from a timer
9944 with quit inhibited.
9945
9946 1998-10-12 Kenichi Handa <handa@etl.go.jp>
9947
9948 * international/ccl.el (ccl-compile-if): If there's no false-cmds,
9949 set unconditional-jump to nil.
9950 (ccl-compile-read-multibyte-character): Return nil.
9951 (ccl-compile-write-multibyte-character): Likewise.
9952 (ccl-compile-translate-character): Likewise
9953 (ccl-compile-map-multiple): Likewise.
9954 (ccl-compile-map-single): Likewise.
9955
9956 * international/kinsoku.el: Add coding tag.
9957 (kinsoku-bol): Remove superfluous TAB in a string.
9958
9959 * international/mule-cmds.el (find-coding-systems-for-charsets):
9960 Delete `composition' (if any) from CHARSETS.
9961
9962 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
9963
9964 * international/mule-cmds.el (setup-specified-language-environment):
9965 Add apropos-inhibit property.
9966 (describe-specified-language-support): Likewise.
9967
9968 1998-10-11 Kenichi HANDA <handa@etl.go.jp>
9969
9970 * international/mule.el (make-coding-system): Create -with-esc
9971 variant coding system.
9972
9973 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
9974
9975 * progmodes/etags.el (tags-loop-revert-buffers): New variable.
9976 (next-file): Optionally offer to revert a file's buffer,
9977 if it has an existing buffer but the file has changed.
9978
9979 * info.el (Info-insert-dir): Detect and report problems
9980 in input files, such as "No Top node". Return with point
9981 at the beginning of the text.
9982 (Info-find-node): Reinsert the code to handle files
9983 with no tags table; it was deleted by mistake.
9984
9985 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
9986
9987 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
9988 texinfo-find-higher-level-node repeatedly find the same node.
9989 (texinfo-find-higher-level-node): Doc fix.
9990
9991 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
9992
9993 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
9994 (smtpmail-address-buffer): Add defvar.
9995 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
9996
9997 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
9998
9999 * ffap.el (ffap-machine-p-local): Fix editing error.
10000
10001 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu>
10002
10003 * faces.el (frame-set-background-mode):
10004 Don't do anythung for text-only or MSDOS frame.
10005
10006 1998-10-08 Kenichi Handa <handa@etl.go.jp>
10007
10008 * international/quail.el (quail-defrule): New optional arg APPEND.
10009 (quail-defrule-internal): Fix bug of handling the argument APPEND.
10010
10011 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu>
10012
10013 * gnus/pop3.el (pop3-open-server):
10014 Set process-coding-system-alist around open-network-stream.
10015
10016 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu>
10017
10018 * files.el (save-buffer): Doc fix.
10019
10020 1998-10-07 Karl Heuer <kwzh@gnu.org>
10021
10022 * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
10023 return DEF unchanged, not nil. Simplify.
10024
10025 1998-10-06 Geoff Voelker <voelker@cs.washington.edu>
10026
10027 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
10028
10029 1998-10-06 Peter Breton <pbreton@ne.mediaone.net>
10030
10031 * generic.el (generic-mode-with-type): Added hooks for generic-modes.
10032
10033 * net-utils.el (ftp, nslookup): Require comint.
10034 (network-service-connection): Likewise.
10035 (whois-server-name): Defaults to whois.arin.net
10036 (whois-server-list, whois-server-tld, whois-guess-server): New var.
10037 (whois): Tries to guess the appropriate top-level domain server.
10038 (whois-get-tld): New function.
10039
10040 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
10041 (dirtrack-debug-toggle): Added this function.
10042
10043 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10044
10045 * files.el (find-file-noselect): Switch to the correct buffer
10046 before checking find-file-literally, and allow non-nil non-t
10047 rawfile params.
10048
10049 1998-10-06 Karl Heuer <kwzh@gnu.org>
10050
10051 * midnight.el (clean-buffer-list): Add autoload cookie.
10052
10053 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
10054 no-autosave.
10055 * tar-mode.el (tar-mode-revert): Likewise.
10056 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
10057 from ediff-arrange-autosave-in-merge-jobs. Callers changed.
10058 * gnus/message.el (message-auto-save-directory): Renamed from
10059 message-autosave-directory. All references changed.
10060
10061 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
10062
10063 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
10064 string. Expose mime stuff while searching.
10065
10066 1998-10-06 Richard Stallman <rms@gnu.org>
10067
10068 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
10069
10070 * replace.el (perform-replace): Position point properly
10071 before and after the recursive edit of C-r.
10072
10073 * progmodes/etags.el (tags-reset-tags-tables): Properly
10074 find the markers in the old rings that are being discarded.
10075
10076 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10077
10078 * apropos.el (apropos-print): Control invalid characters.
10079
10080 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
10081 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
10082 confusing customize.
10083
10084 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org>
10085
10086 * generic-x.el (bat-generic-mode): Fix regexps for keywords and
10087 built-in commands. Add more built-in commands and fix face names.
10088
10089 1998-10-05 Simon Marshall <simon@gnu.org>
10090
10091 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
10092
10093 1998-10-04 Eric Ludlam <zappo@gnu.org>
10094
10095 * speedbar.el (speedbar-initial-expansion-list-name): Remove
10096 customization since it is not useful in this case.
10097 (speedbar-frame-mode): Check if cfx or cfy is a list, and make
10098 sure it gets evalled to a number. Also verify that set-frame-name
10099 fn exists before calling it.
10100
10101 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
10102 Protect a `forward-sexp' call which could fail, and improved regex
10103 for ie, and eg abbreviations.
10104
10105 1998-10-02 Noah Friedman <friedman@splode.com>
10106
10107 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
10108 send-string.
10109 (rlogin-send-Ctrl-D): Here also.
10110 (rlogin-send-Ctrl-Z): Here also.
10111 (rlogin-send-Ctrl-backslash): Here also.
10112
10113 1998-10-02 Dave Love <fx@gnu.org>
10114
10115 * outline.el (hide-region-body): Bind
10116 outline-view-change-hook to nil while making repeated calls to
10117 outline-flag-region. Run it once at the end.
10118 (hide-other, hide-sublevels, show-children): Likewise.
10119
10120 * info-look.el: Remove duplicate scheme-mode entry.
10121 (info-lookup-make-completions): When looking for entries, check
10122 that `item' isn't null or "Menu".
10123
10124 1998-10-01 Karl Heuer <kwzh@gnu.org>
10125
10126 * net-utils.el: Don't require ffap.
10127 (net-utils-machine-at-point, net-utils-url-at-point): New functions.
10128 (ping, nslookup-host, finger, network-connection-to-service): Use them.
10129
10130 1998-09-30 Richard Stallman <rms@gnu.org>
10131
10132 * ispell.el (check-ispell-version): No need to bind default-major-mode.
10133
10134 * imenu.el (imenu--generic-function): Sort each submenu by position.
10135 (imenu--sort-by-position): New function.
10136
10137 * cus-edit.el (Custom-mode-menu): Fix info node name.
10138 (customize group): Fix info node name.
10139
10140 * mail/mailalias.el (build-mail-aliases): Don't allow
10141 a newline in the alias name. Don't define an alias
10142 if the definition would be empty.
10143
10144 * which-func.el (which-func-mode-global): Make :set function
10145 more reliable.
10146
10147 * custom.el (custom-set-variables): Load the requests first,
10148 then check the symbol's `set' function.
10149
10150 * ffap.el: Doc fixes.
10151
10152 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10153
10154 * gnus.el: (gnus-valid-select-methods): Fix type.
10155 * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
10156 * gnus-score.el (gnus-orphan-score): Fix type.
10157 (gnus-score-default-header, gnus-score-default-type): Fix type.
10158 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
10159 (gnus-saved-headers): Fix type.
10160
10161 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
10162 Avoid nil value of `two-lines-citation-part'.
10163
10164 1998-09-30 Roman Belenov <roman@nstl.nnov.ru>
10165
10166 * which-func.el (which-function): Handle case when
10167 (car imenu--index-alist) is nil.
10168
10169 1998-09-29 Dave Love <fx@gnu.org>
10170
10171 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
10172 bzip2 args.
10173
10174 1998-09-29 Simon Marshall <simon@gnu.org>
10175
10176 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
10177 comint-exec-hook.
10178
10179 1998-09-29 Stephen Eglen <stephen@gnu.org>
10180
10181 * info-look.el: Add support for Octave.
10182
10183 1998-09-28 Carsten Dominik <cd@delysid.gnu.org>
10184
10185 * textmodes/reftex.el (reftex-finding-files): New customize group.
10186 (reftex-texpath-environment-variables,
10187 reftex-use-external-file-finders, reftex-external-file-finders,
10188 reftex-search-unrecursed-path-first): New options.
10189 (reftex-process-string, reftex-find-file-externally): New
10190 functions.
10191 (reftex-access-search-path): Execute shell commands to find the
10192 search path.
10193 (reftex-toggle-auto-view-crossref): When turning on, make sure
10194 `reftex-auto-view-crossref' becomes non-nil.
10195 (reftex-abbrev-regexp): Constant removed.
10196 (reftex-convert-string): Abbrev regexp calculated locally.
10197
10198 1998-09-28 Dave Love <fx@gnu.org>
10199
10200 * progmodes/fortran.el: Don't call regexp-opt when deriving
10201 font-lock patterns with keywords that aren't all literal.
10202
10203 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
10204
10205 * octave-inf.el (inferior-octave-prompt): Also match prompts of
10206 the form `octave.bin:1>' which come from using precopiled binary
10207 versions.
10208
10209 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu>
10210
10211 * help.el (help-for-help): Use %THIS-KEY%.
10212 (help-quit): Add doc.
10213
10214 * help-macro.el (make-help-screen): Keep HELP-TEXT
10215 in a separate function definition, not in the help command FNAME.
10216 Replace %THIS-KEY% with the key sequence that ran FNAME.
10217
10218 1998-09-25 Richard Stallman <rms@gnu.org>
10219
10220 * textmodes/texinfo.el (texinfo-show-structure):
10221 Bind inhibit-read-only.
10222
10223 * isearch.el (isearch-search-and-update): Properly
10224 handle upper case letters in the reverse-search special case.
10225
10226 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10227
10228 * gnus.el: Extend the list of autoloaded functions.
10229
10230 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
10231 buffer before creating help group. (from Gnus v5.6.43, fix by
10232 1998-08-20 Per Starback <starback@update.uu.se>)
10233
10234 * gnus-util.el (gnus-output-to-rmail): Adjust to
10235 `rmail-output-to-rmail-file'.
10236
10237 1998-09-25 Karl Heuer <kwzh@gnu.org>
10238
10239 * hexl.el (hexl-mode-map): More of previous change.
10240
10241 * textmodes/tex-mode.el (tex-run-command): Doc fix.
10242 (tex-start-tex): Don't use tex-start-options-string in star case.
10243 Quote file name in star case as well as in non-star.
10244 Add blank and quoting of option string here.
10245 (tex-start-options-string): Not here.
10246
10247 1998-09-23 Karl Heuer <kwzh@gnu.org>
10248
10249 * term.el (term-delimiter-argument-list): Doc fix.
10250 (term-emulate-terminal): Escape literal semicolon.
10251 * progmodes/asm-mode.el (asm-mode): Doc fix.
10252 (asm-comment-char): Escape literal semicolon.
10253 * emulation/viper-cmd.el (viper-movement-commands): Likewise.
10254
10255 1998-09-23 Richard Stallman <rms@gnu.org>
10256
10257 * hexl.el (hexl-mode-map): Don't override all ESC bindings,
10258 only those that normally modify the buffer.
10259
10260 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
10261 over again.
10262
10263 1998-09-23 E. Jay Berkenbilt <ejb@ql.org>
10264
10265 * ispell.el (check-ispell-version): Ensure same buffer is current
10266 when let-binding of case-fold-search ends.
10267
10268 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10269
10270 * ps-print.el: Skip invisible overlay.
10271 Test for set-buffer-multibyte rather than using mule-version.
10272 (ps-print-version): New version number (4.1) and doc fix.
10273 (ps-generate-postscript-with-faces): Skip invisible overlay.
10274
10275 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu>
10276
10277 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
10278
10279 1998-09-22 Kenichi Handa <handa@etl.go.jp>
10280
10281 * international/quail.el (quail-update-guidance): Check for the
10282 return value of (quail-guidance) fixed.
10283 (quail-update-translation): Bind quail-current-str locally when it
10284 calls quail-update-guidance.
10285 (quail-update-translation): If input-method-exit-on-first-char is
10286 non-nil, terminate translation only when the current input method
10287 is simple.
10288
10289 1998-09-22 Paul Eggert <eggert@twinsun.com>
10290
10291 * startup.el (locale-translation-file-name): Prefer X-related names
10292 to the name used by GNU/Linux sans X. Set to nil if no file found.
10293 (command-line): Use locale-translation-file-name if it is not nil,
10294 instead of testing for its existence again.
10295 regexp-quote the ctype before using it in a regexp.
10296 Allow a colon to appear after the ctype in the aliases file,
10297 as is done in X11R6.4.
10298
10299 1998-09-21 Richard Stallman <rms@gnu.org>
10300
10301 * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
10302
10303 * calendar/appt.el (appt-interval): Variable deleted.
10304 (appt-check): For minutes in between appt-display-interval times,
10305 do check, but don't display anything except an updated mode line.
10306 Count against appt-display-interval based on minutes since
10307 first display of this appointment, not based on time of day.
10308 If appt-display-mode-line, force mode line redisplay
10309 whenever appt-mode-string has changed.
10310 (appt-add, appt-delete): Add autoload cookies.
10311 (appt-check): Catch errors from calling `diary'.
10312 (appt-max-time): Renamed from max-time.
10313 (appt-now-displayed, appt-display-count): New variables.
10314 (appt-timer): Don't create one if we already have one.
10315
10316 * textmodes/tex-mode.el (tex-compilation-parse-errors):
10317 More general code to use the source buffer instead of the zap file.
10318
10319 * hilit-chg.el (highlight-compare-with-file): Renamed from
10320 compare-with-file.
10321
10322 * loadhist.el (load-history-loaded): New variable.
10323 (symbol-file): Load etc/fns-VERSION.el if that has not been done.
10324
10325 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
10326
10327 * emacs-lisp/find-func.el (find-function-search-for-symbol):
10328 Fix error messages.
10329
10330 1998-09-21 Markus Armbruster <armbru@pond.sub.org>
10331
10332 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
10333 Emacs frame.
10334
10335 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10336
10337 * mail/rmail.el (rmail-decode-babyl-format): Recognize both
10338 `undecided' and `undecided-unix'.
10339
10340 1998-09-21 Dave Love <fx@gnu.org>
10341
10342 * help.el (help-make-xrefs): Fix typo affecting Info references.
10343
10344 * subr.el (remove-hook): Check list values to avoid errors.
10345
10346 1998-09-18 Noah Friedman <friedman@splode.com>
10347
10348 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
10349 store string in eldoc-last-message without consing a new string.
10350 Rearrange logic from nested if's into cond's.
10351 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
10352 Do not print message; just return string.
10353 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
10354 Do not print message; just return string.
10355 Cache that string in eldoc-last-data.
10356 (eldoc-last-data): Make into a vector.
10357 (eldoc-get-fnsym-args-string): Use new data form of structure.
10358 (eldoc-get-var-docstring): Here also.
10359 (eldoc-last-data-store): New function.
10360 (eldoc-get-fnsym-args-string): Use it.
10361 (eldoc-get-var-docstring): Here also.
10362 (eldoc-docstring-first-line): Minimize interim string consing.
10363 Call substitute-command-keys on the result.
10364 (eldoc-print-var-docstrings, eldoc-print-docstring,
10365 eldoc-docstring-message): Functions removed.
10366 (eldoc-docstring-format-sym-doc): New function, functionality
10367 ripped out of eldoc-docstring-message.
10368 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
10369
10370 1998-09-18 Kenichi Handa <handa@etl.go.jp>
10371
10372 * international/mule.el (make-coding-system): Doc-string modified.
10373
10374 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org>
10375
10376 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
10377
10378 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
10379 customize type.
10380
10381 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
10382 type.
10383
10384 * progmodes/compile.el (compilation-error-screen-columns): New
10385 variable.
10386 (compilation-next-error-locus): Use it to decide whether to use
10387 forward-char or move-to-column.
10388
10389 * mail/rmail.el (rmail-movemail-program): Fix customize type.
10390
10391 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
10392 feedmail-fiddle-plex-user-list,
10393 feedmail-spray-address-fiddle-plex-list,
10394 feedmail-prompt-before-queue-user-alist,
10395 feedmail-prompt-before-queue-help-supplement,
10396 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
10397 feedmail-queue-alternative-mail-header-separator): Fix customize
10398 type.
10399
10400 * startup.el (site-run-file): Fix customize type.
10401
10402 * speedbar.el (speedbar-initial-expansion-list-name): Fix
10403 customize type.
10404
10405 * shell.el (shell-input-autoexpand): Fix customize type.
10406
10407 * ps-print.el (ps-font-info-database): Add missing dots in value.
10408 Improve layout of customize type.
10409
10410 * net-utils.el (traceroute-program-options, ping-program-options,
10411 ipconfig-program-options, netstat-program-options,
10412 arp-program-options, route-program-options,
10413 nslookup-program-options, ftp-program-options): Fix customize
10414 type.
10415
10416 * midnight.el (clean-buffer-list-kill-regexps,
10417 clean-buffer-list-kill-buffer-names,
10418 clean-buffer-list-kill-never-buffer-names,
10419 clean-buffer-list-kill-never-regexps): Fix customize type.
10420
10421 * man.el (Man-init-defvars): Avoid trailing nil on
10422 Man-filter-list.
10423
10424 * lpr.el (printer-name): Fix customize type.
10425
10426 1998-09-16 Kenichi Handa <handa@etl.go.jp>
10427
10428 * international/mule-cmds.el (reset-language-environment): Call
10429 update-coding-systems-internal.
10430
10431 * international/mule-conf.el: Call update-coding-systems-internal
10432 at the tail.
10433
10434 1998-09-14 Dave Love <fx@gnu.org>
10435
10436 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't
10437 use the menu-enable properties, pending doing it correctly and
10438 acceptably fast.
10439
10440 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
10441
10442 1998-09-13 Dave Love <d.love@dl.ac.uk>
10443
10444 * progmodes/hideshow.el (hs-grok-mode-type): Check
10445 comment-{start,end} non-nil as well as bound. Report an error if
10446 we can't grok the mode.
10447
10448 1998-09-13 Richard Stallman <rms@gnu.org>
10449
10450 * simple.el (blink-matching-open): Don't log paren matching
10451 messages in *Messages*.
10452
10453 1998-09-12 Richard Stallman <rms@gnu.org>
10454
10455 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
10456 Set point-before-scroll at end even if there was an error.
10457
10458 * ange-ftp.el (ange-ftp-insert-file-contents):
10459 Use binary mode for dumb-unix hosts as for unix hosts.
10460 (ange-ftp-copy-file-internal): Likewise.
10461
10462 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
10463
10464 * emacs-lisp/pp.el: Doc fixes.
10465
10466 * wid-edit.el (widget-menu-max-shortcuts): New variable.
10467 (widget-choose): Don't use single-char shortcuts if # items
10468 exceeds that many. Use minibuffer instead.
10469
10470 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10471
10472 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
10473
10474 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org>
10475
10476 * speedbar.el (speedbar-frame-mode): Do not set frame position if
10477 in terminal mode.
10478
10479 1998-09-10 Noah Friedman <friedman@splode.com>
10480
10481 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
10482 defcustom declaration. It's wreaking too much havoc with XEmacs
10483 and older versions of Emacs, which share this code.
10484
10485 * type-break.el (type-break-mode): Here also.
10486
10487 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
10488 `t' to add-hook also to modify the new local value.
10489
10490 1998-09-10 Dave Love <fx@gnu.org>
10491
10492 * vc.el (vc-insert-headers): Doc fix.
10493
10494 1998-09-10 Richard Stallman <rms@gnu.org>
10495
10496 * textmodes/flyspell.el (flyspell-mode-on): Make the
10497 ispell-... variables permanent locals.
10498 (flyspell-mode-off): Add autoload cookie.
10499
10500 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
10501 do use binary mode, just as for `unix'.
10502 (ange-ftp-host-type): If HOST is nil, return `unix'.
10503
10504 * dired.el (dired-mark-files-containing-regexp):
10505 Don't scan directories. Ignore non-readable files.
10506
10507 * progmodes/compile.el (compilation-error-regexp-alist):
10508 Fix previous change: allow . and _ in command name.
10509
10510 * dired.el (dired-mark-files-containing-regexp): Fix previous change.
10511
10512 * uncompress.el (uncompress-while-visiting):
10513 Use just the car of what find-operation-coding-system returns.
10514
10515 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
10516
10517 * shell.el (shell-file-name-quote-list): Add # to the value.
10518
10519 1998-09-10 E. Jay Berkenbilt <ejb@ql.org>
10520
10521 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
10522 to make killing of ispell process work even if
10523 kill-all-local-variables has been run.
10524
10525 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10526
10527 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
10528 loop when sexp entry ends at end of file with no newline.
10529
10530 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10531
10532 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
10533 (Custom-reset-standard): Fix menu inconsistency.
10534
10535 * mail/feedmail.el (feedmail-from-line): Allow t.
10536 (feedmail-message-id-suffix): Allow nil.
10537
10538 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
10539 Simplify. Make prefix arg work right.
10540
10541 1998-09-09 Dave Love <fx@gnu.org>
10542
10543 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
10544
10545 * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
10546
10547 1998-09-08 Dave Love <fx@gnu.org>
10548
10549 * add-log.el (change-log-font-lock-keywords): Do parenthesized
10550 stuff only after file names or at start of line. Allow parens
10551 around e-mail, as well as angles.
10552
10553 * gnus/nnweb.el (require): Wrap requirement of w3 and url in
10554 ignore-errors too, eval'd when compile. Require w3 stuff at load
10555 time for nicer failure if it's not available.
10556
10557 1998-09-07 Geoff Voelker <voelker@cs.washington.edu>
10558
10559 * comint.el (comint-arguments): Ignore backslashes when using
10560 w32 shells that expect backslashes as the directory separator.
10561
10562 1998-09-04 Kenichi Handa <handa@etl.go.jp>
10563
10564 * international/fontset.el (resolved-ascii-font): New variable.
10565 (x-complement-fontset-spec): By side effect, set
10566 `resolved-ascii-font' to the resolved name of ASCII font."
10567 (create-fontset-from-fontset-spec): Don't get a value for
10568 resolved-ascii-font from the list full-fontlist. It is set by
10569 x-complement-fontset-spec now.
10570
10571 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
10572 version, check the value of mule-version.
10573
10574 1998-09-07 Carsten Dominik <cd@delysid.gnu.org>
10575
10576 * textmodes/reftex.el (reftex-view-crossref): Split up into
10577 several functions. No longer moves to find a macro.
10578 (reftex-view-cr-cite, reftex-view-cr-ref,
10579 reftex-end-of-bib-entry): New functions.
10580 (reftex-auto-view-crossref): New value `window' allowed.
10581 (reftex-view-crossref-when-idle): Process new `window' option in
10582 (reftex-translate-to-ascii-function): New default.
10583 (reftex-label-illegal-re): Default changed, removed Latin1.
10584 (reftex-latin1-to-ascii): New function.
10585 (reftex-what-environment): Check for section regexp before use.
10586 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
10587 absolute path names.
10588 (reftex-TeX-master-file): Changed sequence of file checks.
10589 (reftex-do-citation): bibview cache only with RefTeX mode on.
10590
10591 1998-09-06 Richard Stallman <rms@gnu.org>
10592
10593 * progmodes/compile.el (compilation-error-regexp-alist):
10594 In first pattern (GNU utilities and other things),
10595 allow a space after the optional program name at the beginning.
10596
10597 * mail/mail-hist.el (mail-hist-current-header-contents):
10598 Fix previous change: use mail-header-end.
10599
10600 1998-09-06 Bill Richter <richter@math.nwu.edu>
10601
10602 * international/ccl.el: Doc fixes.
10603 * international/encoded-kb.el: Doc fixes.
10604 * international/fontset.el: Doc fixes.
10605 * international/kinsoku.el: Doc fixes.
10606 * international/kkc.el: Doc fixes.
10607 * international/mule-cmds.el: Doc fixes.
10608 * international/mule-conf.el: Doc fixes.
10609 * international/mule-util.el: Doc fixes.
10610 * international/mule.el: Doc fixes.
10611
10612 1998-09-05 Eric Ludlam <zappo@gnu.org>
10613
10614 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
10615 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
10616 (checkdoc-this-string-valid-engine): Permit ? as terminating
10617 punctuation for first line sentence breaking.
10618 (checkdoc-this-string-valid): When converting a comment into a doc
10619 string, make sure " chars are \".
10620 (checkdoc-sentencespace-region-engine): Only do double space check
10621 if based on the variable `sentence-end-double-space'
10622 (checkdoc-this-string-valid-engine): ? ends valid sentence.
10623 (checkdoc-proper-noun-region-engine): Exclude items in URLs
10624
10625 1998-09-04 Richard Stallman <rms@gnu.org>
10626
10627 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
10628 Recognize define-skeleton as a function definer.
10629
10630 * cus-edit.el (customize-option): Refuse to customize
10631 a variable that has no defcustom. But if variable is autoloaded,
10632 first try to load the library that defines it.
10633
10634 * international/iso-insert.el: Use `string' before calling `insert'
10635 so that in multibyte buffers we insert multibyte chars.
10636
10637 * dired.el (dired-mark-files-containing-regexp):
10638 Don't use find-file; instead, insert the file in a temp buffer.
10639
10640 * textmodes/tex-mode.el (tex-start-options-string): New option.
10641 (tex-start-tex): Use that variable.
10642
10643 * mail/rmail.el (rmail-primary-inbox-list): Make the initial
10644 value in the `repeat' alternative a list.
10645
10646 * textmodes/fill.el (fill-individual-paragraphs): Before deleting
10647 the inserted newline, verify that one was really inserted.
10648
10649 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
10650 remains on or remains off.
10651 (flyspell-multi-language-p): Default changed to nil.
10652
10653 * progmodes/ada-mode.el (ada-search-ignore-string-comment):
10654 In "found in comment" case, don't beginning-of-line after forward-line.
10655
10656 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
10657 If the function definition is not a lambda, return original FORM
10658 with no error.
10659
10660 1998-09-04 Peter Breton <pbreton@ne.mediaone.net>
10661
10662 * net-utils.el (netstat-program-options): Changed from nil to "-a"
10663 so that by default netstat shows all network connections.
10664
10665 1998-09-04 Bob Weiner <weiner@altrasoft.com>
10666
10667 * international/quail.el: Doc fixes.
10668
10669 * info.el (info): Don't add parens if FILE already has them.
10670
10671 1998-09-04 Geoff Voelker <voelker@cs.washington.edu>
10672
10673 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
10674 on extension lines.
10675
10676 1998-09-03 Geoff Voelker <voelker@cs.washington.edu>
10677
10678 * w32-fns.el (w32-shell-dos-semantics): New function.
10679
10680 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu>
10681
10682 * international/quail.el (quail-choose-completion-string): Store
10683 completion `choice' in `quail-current-str'; don't insert it.
10684
10685 1998-09-02 Kenichi Handa <handa@etl.go.jp>
10686
10687 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH
10688 argument to ps-mule-generate-bitmap-font.
10689
10690 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
10691 entry and change Latin-1 entry in the default value.
10692 (ps-mule-font-info-database-ps-bdf): New variable.
10693 (ccl-encode-ethio-unicode): Bug of CCL code fixed.
10694 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
10695 registerd in FONT-SPEC.
10696 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
10697 charcter width of bitmap fonts.
10698 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
10699 procedure NF.
10700 (ps-begin-file): Output PostScript code for setting
10701 SpaceWidthRatio.
10702 (ps-plot-region): Use line-beginning-position to get a position of
10703 the beginning of the current line.
10704
10705 * international/mule-cmds.el (register-input-method): Doc-string
10706 modified.
10707
10708 1998-09-01 Dave Love <fx@gnu.org>
10709
10710 * international/mule-cmds.el (current-language-environment): Fix
10711 setter function.
10712
10713 1998-09-01 Simon Marshall <simon@gnu.org>
10714
10715 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
10716 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
10717 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
10718 names with font-lock-type-face. Fontify type specs, etc., with
10719 font-lock-keyword-face.
10720
10721 1998-08-31 Kenichi Handa <handa@etl.go.jp>
10722
10723 * international/fontset.el (x-complement-fontset-spec): If ASCII
10724 font is specified in FONTLIST, don't substitute it for the
10725 resolved name.
10726
10727 1998-08-31 Paul Eggert <eggert@twinsun.com>
10728
10729 * international/mule.el (charset-description): Doc fix.
10730
10731 * language/chinese.el, language/cyrillic.el, language/czech.el,
10732 language/devanagari.el, language/ethiopic.el,
10733 language/european.el, language/hebrew.el, language/indian.el,
10734 language/japanese.el, language/korean.el, language/lao.el,
10735 language/slovak.el, language/thai.el, language/tibetan.el,
10736 language/vietnamese.el:
10737 Add coding: local variable, to avoid bootstrapping problem
10738 if you need to recompile all the Lisp files using interpreted code.
10739
10740 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10741
10742 * cal-china.el (chinese-year-cache): Change range of years from
10743 1989-2000 to 1990-2010.
10744
10745 1998-08-29 Dave Love <d.love@dl.ac.uk>
10746
10747 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
10748 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
10749
10750 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10751
10752 * ps-print.el (ps-print-control-characters): Doc-string modified.
10753 (ps-output-string-prim): Comment format changed.
10754 (ps-do-despool): Indentation of source code changed.
10755
10756 1998-08-28 Kenichi Handa <handa@etl.go.jp>
10757
10758 * subr.el (sref): Make it an alias of aref. Make the
10759 byte-compiler warn that it is obsolete.
10760 (char-bytes): Make the byte-compiler warn that it is obsolete.
10761
10762 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
10763 Calculate the total bytes using position-bytes instead of
10764 char-bytes.
10765
10766 1998-08-27 Karl Heuer <kwzh@gnu.org>
10767
10768 * snmp-mode.el: New file.
10769 * files.el (auto-mode-alist): Add snmp-mode patterns.
10770
10771 1998-08-27 Karl Eichwalder <ke@suse.de>
10772
10773 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
10774
10775 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10776
10777 * calendar/diary-lib.el (diary-block): Doc fix..
10778 * calendar/calendar.el (diary-list-include-blanks): Doc fix..
10779
10780 1998-08-27 Richard Stallman <rms@gnu.org>
10781
10782 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
10783 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
10784 Clear appt-mode-string if we don't put something in it.
10785
10786 1998-08-27 Dave Love <fx@gnu.org>
10787
10788 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
10789 dired-local-variables-file for dired-x.
10790
10791 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
10792 for compressed library files too.
10793
10794 1998-08-26 Kenichi Handa <handa@etl.go.jp>
10795
10796 * language/european.el ("Latin-1"): Modify `documentation' key value.
10797 ("Latin-2"): Likewise.
10798
10799 1998-08-26 Karl Heuer <kwzh@gnu.org>
10800
10801 * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
10802
10803 1998-08-26 Albert L. Ting <alt@artisan.com>
10804
10805 * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
10806 (mail-hist-current-header-contents): Use mail-text-start.
10807
10808 1998-08-26 Richard Stallman <rms@gnu.org>
10809
10810 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
10811 (customize-changed-options-previous-release): New variable.
10812 (customize-changed-options): Use that variable as default arg.
10813
10814 1998-08-26 Karl Eichwalder <ke@suse.de>
10815
10816 * midnight.el: Require `timer' not only when compiling.
10817
10818 1998-08-26 Per Starback <starback@update.uu.se>
10819
10820 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
10821 buffer before creating help group.
10822
10823 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
10824
10825 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
10826 coding-system-for-write before saving.
10827
10828 1998-08-26 Kevin Rodgers <kevinr@ihs.com>
10829
10830 * isearch.el (isearch-forward): Doc fix.
10831
10832 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org>
10833
10834 * emacs-lisp/find-func.el: Fix :version tags to have a string
10835 value, not a float.
10836
10837 * cus-dep.el: Fix typo in output.
10838
10839 1998-08-25 Dave Love <fx@gnu.org>
10840
10841 * repeat.el (repeat): Doc fix.
10842 [From rms:]
10843 (repeat-previous-repeated-command): New variable.
10844 (repeat): Check for real-last-command being null or repeat. Set
10845 repeat-previous-repeated-command.
10846
10847 * browse-url.el (browse-url-netscape): Fix format for hex escapes.
10848
10849 1998-08-25 Kenichi Handa <handa@etl.go.jp>
10850
10851 * gnus/message.el (message-send-mail-with-sendmail): Bind
10852 coding-system-for-write by the return value of
10853 select-message-coding-system.
10854 (message-send-mail-with-qmail): Likewise.
10855
10856 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org>
10857
10858 * emacs-lisp/autoload.el: Fix doc-string-elt property on
10859 define-derived-mode.
10860
10861 * files.el (file-name-invalid-regexp):
10862 Fix regex for ms-dos without long file names.
10863
10864 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10865
10866 * ps-print.el: Multi-byte buffer handling.
10867 (ps-print-version): New version number (4.0) and doc fix.
10868 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
10869 compilation for GNU Emacs and emacsens.
10870 (ps-generate-postscript-with-faces): Force invisible text to be
10871 visible.
10872 (dos-ps-printer): New var to avoid compilation gripes.
10873
10874 1998-08-24 Kenichi Handa <handa@etl.go.jp>
10875
10876 * ps-print.el (ps-mule-plot-string): Pay attention to the case
10877 that no more characters can't be printed in the current line.
10878
10879 1998-08-24 Kenichi Handa <handa@etl.go.jp>
10880
10881 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
10882 greater than TO.
10883
10884 1998-08-24 Kenichi Handa <handa@etl.go.jp>
10885
10886 * ps-print.el: Add codes to make ps-print.el work also on Emacs
10887 20.2 and the earlier version.
10888 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
10889 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
10890 (ps-mule-find-wrappoint): Likewise.
10891 (ps-mule-generate-font): Change `X' to `x' in format
10892 control-string.
10893 (ps-generate): Call ps-mule-begin before calling ps-begin-job.
10894 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
10895 `restore' form procedures `BC' and `EC'.
10896
10897 1998-08-24 Kenichi Handa <handa@etl.go.jp>
10898
10899 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
10900 is an executable procedure. Make LineThickness, Xshadow, and
10901 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc.
10902 (ps-mule-font-info-database, ps-mule-font-info-database-ps,
10903 ps-mule-font-info-database-bdf): New vars.
10904 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
10905 (ccl-encode-ethio-unicode): New CCL program.
10906 (ps-mule-encode-ethiopic): New fun.
10907 (ps-mule-current-charset): New var.
10908 (ps-mule-get-font-spec, ps-mule-font-spec-src,
10909 ps-mule-font-spec-name, ps-mule-font-spec-encoding,
10910 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
10911 (ps-mule-external-libraries): New var.
10912 (ps-mule-init-external-library): New fun.
10913 (ps-mule-font-cache): New var.
10914 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
10915 (ps-last-font): New var.
10916 (ps-mule-prepare-font): New fun.
10917 (ps-mule-charset-list): New var.
10918 (ps-mule-prologue-generated, ps-mule-prologue): New vars.
10919 (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
10920 ps-mule-plot-string): New funs.
10921 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
10922 New vars.
10923 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
10924 ps-mule-prepare-cmpchar-font): New funs.
10925 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
10926 vars.
10927 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
10928 ps-mule-generate-bitmap-glyph): New funs.
10929 (ps-mule-initialize, ps-mule-begin): New funs.
10930 (ps-output-string-prim): Insert string as unibyte.
10931 (ps-output-prologue): New fun.
10932 (ps-flush-output): Handle the case of 'prologue.
10933 (ps-begin-file): Call ps-mule-initialize.
10934 (ps-begin-job): Set ps-control-or-escape-regexp differently if
10935 printing multibyte characters.
10936 (ps-begin-page): Set ps-mule-current-charset to 'ascii.
10937 (ps-basic-plot-string): Handle the case of printing ASCII
10938 characters by external libraries (e.g. BDF).
10939 (ps-set-font): Set ps-last-font.
10940 (ps-plot-region): Handle multibyte characters, use
10941 ps-mule-plot-string for them.
10942 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin.
10943
10944 * bdf.el: New file.
10945
10946 1998-08-23 Kenichi HANDA <handa@etl.go.jp>
10947
10948 * international/mule-cmds.el (select-message-coding-system): New
10949 function.
10950 (set-language-environment-coding-systems): Set
10951 default-sendmail-coding-system.
10952
10953 * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
10954 (default-sendmail-coding-system): New variable.
10955 (sendmail-send-it): Encode the message by a coding system
10956 select-message-coding-system returns.
10957
10958 1998-08-23 Eric Ludlam <zappo@gnu.org>
10959
10960 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
10961 (speedbar-mode): Set buffer to read only.
10962 (speedbar-temp-buffer-show-function): For emacs don't call hook
10963 with arguments.
10964 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
10965
10966 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu>
10967
10968 * speedbar.el (speedbar-key-map): Fix typo.
10969
10970 See ChangeLog.7 for earlier changes.