* viper-cmd.el (viper-envelop-ESC-key): added the option to
[bpt/emacs.git] / lisp / ChangeLog
1 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
2 * viper-cmd.el (viper-envelop-ESC-key): added the option to
3 translate all ESC key sequences.
4 (viper-goto-mark-subr): restore markers for files for which
5 they were saved.
6 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
7 * viper-util.el (viper-set-replace-overlay-glyphs,
8 viper-set-replace-overlay): always check if the replacement
9 overlay is live.
10 * viper.el (viper-vi-state-mode-list): added major modes.
11 * ediff-wind.el: minor comment changes.
12 * ediff.el: copyright notice date fix.
13
14
15 2000-02-27 Jason Rumney <jasonr@gnu.org>
16
17 * faces.el (face-font-family-alternatives): Add arial to helv.
18 (mode-line, header-line, tool-bar): Same default as x for w32.
19 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
20 face-font-family-alternatives from working.
21 * term/w32-win.el (mouse-set-font): Do not build fontset from
22 chosen font.
23
24 2000-02-25 Sam Steingold <sds@goems.com>
25
26 * emacs-lisp/cl-indent.el (toplvel): Indent `pprint-logical-block'
27 properly.
28
29 2000-02-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
30
31 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
32
33 2000-02-25 Gerd Moellmann <gerd@gnu.org>
34
35 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
36 writable.
37
38 * frame.el (busy-cursor-delay-seconds): New option.
39
40 2000-02-24 Gerd Moellmann <gerd@gnu.org>
41
42 * frame.el (show-cursor-in-non-selected-windows): New option.
43
44 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
45
46 * diary-lib.el (include-other-diary-files): Undo the selective
47 display in any included file and don't kill it.
48
49 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
50
51 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
52 bar. Menu items converted to (menu-item format, help strings
53 added.
54 [downcase, upcase]: Don't enable on MS-DOS.
55 [symlink, symlinks]: Don't show if make-symbolic-link is not
56 bound.
57 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
58
59 2000-02-23 Dave Love <fx@gnu.org>
60
61 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
62 (backward-kill-word): Revert addition of * to interactive spec --
63 it's a feature.
64
65 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
66 (backward-kill-sentence, kill-sentence): Likewise.
67
68 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
69 scratch buffer name.
70 (gud-format-command): Use int-to-string in ?l case. Simplify
71 slightly.
72
73 * term/w32-win.el (internal-face-interactive): Update prompt for
74 new read-face-name.
75
76 * mail/footnote.el (footnote): Add :version to defgroup.
77 (footnote-section-tag-regexp): Customize.
78 (footnote-start-tag, footnote-end-tag): New option.
79 (footnote-latin-regexp): New variable.
80 (Footnote-latin): New function.
81 (footnote-style-alist): Add element for latin style.
82 (footnote-style): Moved.
83 (Footnote-goto-footnote): Use eq to test arg.
84
85 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
86
87 * emacs-lisp/byte-opt.el: Change old backquote syntax.
88 (byte-compile-trueconstp): Include keywords.
89 (byte-optimize-quote, byte-optimize-lapcode): Use
90 byte-compile-const-symbol-p.
91 (byte-optimize-char-before): New optimization.
92
93 * emacs-lisp/bytecomp.el: Change old backquote syntax.
94 (byte-compile-const-symbol-p): New function.
95 (byte-compile-constp, byte-compile-out-toplevel)
96 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
97 Use it.
98
99 * subr.el (define-key-after): Default AFTER to t. Doc fix.
100
101 2000-02-23 Kenichi Handa <handa@etl.go.jp>
102
103 * international/encoded-kb.el: Be sure to update minor-mode-alist
104 and minor-mode-map-alist.
105 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
106 codes SS2 and SS3 correctly.
107 (encoded-kbd-self-insert-ccl): New function.
108 (encoded-kbd-setup-keymap): New function.
109 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
110 by calling encoded-kbd-setup-keymap.
111
112 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
113 characters.
114 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
115 locally.
116
117 2000-02-22 Dave Love <fx@gnu.org>
118
119 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
120 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
121 defvar.
122 (lisp-mode-syntax-table): Set up for #|...|# comments.
123 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
124 classes. Match `defface'.
125 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
126 (eval-defun-1): Fix for defcustom.
127 (lisp-indent-region): Doc fix.
128
129 * subr.el (when, unless, split-string): Doc fix.
130 (read-passwd): Move call of clear-this-command-keys to the right
131 place.
132 (replace-regexps-in-string): New function.
133
134 2000-02-22 Gerd Moellmann <gerd@gnu.org>
135
136 * help.el (describe-variable): Set syntax table to
137 emacs-lisp-mode-syntax-table when moving forward over the
138 symbol's name.
139
140 2000-02-22 Dave Love <fx@gnu.org>
141
142 * xt-mouse.el: Doc fixes.
143 (xterm-mouse-position-function): New function, replacing advice of
144 mouse-position.
145 (xterm-mouse-mode): Use it. Don't turn on under a window system.
146
147 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
148
149 2000-02-21 Gerd Moellmann <gerd@gnu.org>
150
151 * format.el (format-annotate-single-property-change): Handle
152 properties.with dotted-list values.
153 (format-proper-list-p): New function.
154
155 * enriched.el (enriched-face-ans): Handle '(foreground-color
156 . COLOR) and (background-color . COLOR).
157
158 2000-02-20 Dave Love <fx@gnu.org>
159
160 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
161 and assignments to it.
162 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
163 current local map.
164 (make-flyspell-overlay): Use it.
165 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
166
167 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
168 (lm-get-header-re): Defun, not defsubst.
169 (lm-get-package-name): Defun, not defsubst. Simplify.
170 (lm-version): Doc fix. Simplify.
171 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
172 (lm-crack-address, lm-last-modified-date, lm-commentary)
173 (lm-verify, lm-synopsis): Simplify.
174 (lm-report-bug): Require emacsbug. Use compose-mail.
175
176 2000-02-20 Gerd Moellmann <gerd@gnu.org>
177
178 * dired.el (dired-mode): Call propertized-buffer-identification
179 to set mode-line-buffer-identification to something having
180 the right text properties.
181
182 * bindings.el (propertized-buffer-identification): New function.
183
184 2000-02-20 Dave Love <fx@gnu.org>
185
186 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
187 check for t-mouse too.
188
189 * cus-start.el: Make echo-keystrokes `number'.
190
191 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
192
193 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
194 Don't call ring-empty-p unless tags-location-ring is bound.
195 From Noah Friedman <friedman@splode.com>.
196
197 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
198
199 * progmodes/hideshow.el (hs-flag-region): No longer use
200 `intangible' overlay property.
201
202 (hs-toggle-hiding): New command.
203 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
204
205 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
206 Fix omission bug: Run `hs-minor-mode-hook' for both activation
207 and deactivation.
208
209 2000-02-18 Gerd Moellmann <gerd@gnu.org>
210
211 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
212
213 2000-02-17 Gerd Moellmann <gerd@gnu.org>
214
215 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
216
217 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
218 of `*' to handle `(* ... *)' comments.
219
220 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
221
222 * faces.el (list-faces-display): Use display-mouse-p instead of
223 window-system.
224
225 * menu-bar.el (global-map): Menu-bar items converted to the new
226 format (menu-item..., rearranged for better CUA compliance, and
227 their names changed for better clarity. Help strings added.
228
229 * international/mule-cmds.el (mule-menu-keymap)
230 (describe-language-environment-map, set-coding-system-map)
231 (setup-language-environment-map): Convert to new (menu-item...
232 form, add help strings. Change names of menu items for better
233 clarity. "Mule" menu-bar item removed (it's now in the "Options"
234 submenu).
235
236 2000-02-17 Gerd Moellmann <gerd@gnu.org>
237
238 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
239 within the code.
240
241 2000-02-16 Dave Love <fx@gnu.org>
242
243 * faces.el: Don't require custom. Add more specific :groups to
244 various deffaces.
245 (set-face-attribute): Purecopy args.
246 (read-face-name): Default to name at point and use it in prompt.
247 Remove colon from arg in all callers.
248 (list-faces-display): Hyperlink to face descriptions and customize
249 buffers.
250
251 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
252
253 * wid-edit.el (widget-match-inline): An atom never matches a
254 list.
255
256 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
257
258 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
259 at ':' characters by call to split-string.
260
261 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
262
263 * textmodes/bibtex.el: Added RCS version identification.
264
265 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
266
267 * textmodes/bibtex.el: Some temporary comments removed.
268 (bibtex-field-name, bibtex-entry-type): Made the relationship
269 explicit.
270 (bibtex-field-const): Allow capital letters.
271 (bibtex-start-of-string): Deleted because unused.
272
273 * textmodes/bibtex.el: Unified some nomenclature. We no longer
274 use the term 'reference' to describe a bibtex entry as a whole.
275 Further, reference keys are no longer called 'labels'.
276 (bibtex-keys): Renamed to bibtex-reference-keys.
277 (bibtex-reformat-previous-labels): Renamed to
278 bibtex-reformat-previous-reference-keys.
279 (bibtex-reference-type): Renamed to bibtex-entry-type.
280 (bibtex-reference-head): Renamed to bibtex-entry-head.
281 (bibtex-reference-maybe-empty-head): Renamed to
282 bibtex-entry-maybe-empty-head.
283 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
284 (bibtex-search-reference): Renamed to bibtex-search-entry.
285 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
286 bibtex-enclosing-entry-maybe-empty-head.
287 (bibtex-entry-field-alist, bibtex-entry-head,
288 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
289 bibtex-map-entries, bibtex-search-entry,
290 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
291 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
292 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
293 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
294 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
295 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
296 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
297
298 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
299
300 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
301 comment.
302 (bibtex-format-field-delimiters): New function, functionality
303 extracted from bibtex-format-entry.
304 (bibtex-autokey-get-yearfield-digits): New function, functionality
305 extracted from bibtex-autokey-get-yearfield.
306
307 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
308 entries in order to avoid stack overflow in the regexp matcher if
309 field contents become large.
310 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
311 bibtex-field-string-part-not-braced,
312 bibtex-field-string-part-no-inner-braces,
313 bibtex-field-string-part-1-inner-brace,
314 bibtex-field-string-part-2-inner-braces,
315 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
316 bibtex-field-string-quoted, bibtex-field-string,
317 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
318 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
319 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
320 as parsing is now performed by the following functions.
321 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
322 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
323 bibtex-parse-field-string, bibtex-search-forward-field-string,
324 bibtex-parse-association, bibtex-field-name-for-parsing,
325 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
326 bibtex-search-forward-field, bibtex-search-backward-field,
327 bibtex-start-of-field, bibtex-end-of-field,
328 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
329 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
330 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
331 bibtex-parse-string, bibtex-search-forward-string,
332 bibtex-search-backward-string, bibtex-start-of-string,
333 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
334 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
335 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
336 entries. Instead of reporting the results of the parsing by
337 match-beginning or match-end, these functions return data structures
338 that hold the corresponding positions.
339 (bibtex-enclosing-field): Changed to also report field boundaries by
340 return values rather than by match-beginning or match-end. The
341 following functions have been adapted to use the new parsing
342 functions.
343 (bibtex-skip-to-valid-entry, bibtex-search-reference,
344 bibtex-enclosing-field, bibtex-format-entry,
345 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
346 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
347 bibtex-print-help-message, bibtex-end-of-entry,
348 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
349 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
350 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
351 method for parsing.
352 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
353 bibtex-map-entries, bibtex-flash-head,
354 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
355 bibtex-autokey-change, bibtex-autokey-get-namefield,
356 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
357 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
358 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
359 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
360 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
361 order to make the new binding of case-fold-search immediately
362 visible.
363
364 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
365
366 * textmodes/bibtex.el: Copyright notice is up to date.
367 Added constant 'bibtex-maintainer-salutation.
368
369 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
370 than make-temp-name, use match-string-no-properties and eliminate
371 a quadratic behavior when building bibtex-strings.
372
373 * bibtex.el (bibtex-reference-key): Accept string entries whose
374 reference key contains upper case letters.
375
376 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
377
378 * bibtex.el (bibtex-reference-head): Allow entries to start with
379 a new line.
380
381 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
382
383 * bibtex.el: Hiding of entry bodies is not longer provided by
384 bibtex.el directly. Instead the hideshow package can be used.
385 Added a special bibtex entry to hs-special-modes-alist.
386 (bibtex-hs-forward-sexp): Added for hideshow.el.
387
388 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
389
390 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
391 at ':' characters by call to split-string.
392
393 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
394
395 * textmodes/bibtex.el: Added RCS version identification.
396
397 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
398
399 * textmodes/bibtex.el: Some temporary comments removed.
400 (bibtex-field-name, bibtex-entry-type): Made the relationship
401 explicit.
402 (bibtex-field-const): Allow capital letters.
403 (bibtex-start-of-string): Deleted because unused.
404
405 * textmodes/bibtex.el: Unified some nomenclature. We no longer
406 use the term 'reference' to describe a bibtex entry as a whole.
407 Further, reference keys are no longer called 'labels'.
408 (bibtex-keys): Renamed to bibtex-reference-keys.
409 (bibtex-reformat-previous-labels): Renamed to
410 bibtex-reformat-previous-reference-keys.
411 (bibtex-reference-type): Renamed to bibtex-entry-type.
412 (bibtex-reference-head): Renamed to bibtex-entry-head.
413 (bibtex-reference-maybe-empty-head): Renamed to
414 bibtex-entry-maybe-empty-head.
415 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
416 (bibtex-search-reference): Renamed to bibtex-search-entry.
417 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
418 bibtex-enclosing-entry-maybe-empty-head.
419 (bibtex-entry-field-alist, bibtex-entry-head,
420 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
421 bibtex-map-entries, bibtex-search-entry,
422 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
423 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
424 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
425 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
426 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
427 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
428 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
429
430 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
431
432 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
433 comment.
434 (bibtex-format-field-delimiters): New function, functionality
435 extracted from bibtex-format-entry.
436 (bibtex-autokey-get-yearfield-digits): New function, functionality
437 extracted from bibtex-autokey-get-yearfield.
438
439 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
440 entries in order to avoid stack overflow in the regexp matcher if
441 field contents become large.
442 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
443 bibtex-field-string-part-not-braced,
444 bibtex-field-string-part-no-inner-braces,
445 bibtex-field-string-part-1-inner-brace,
446 bibtex-field-string-part-2-inner-braces,
447 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
448 bibtex-field-string-quoted, bibtex-field-string,
449 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
450 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
451 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
452 as parsing is now performed by the following functions.
453 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
454 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
455 bibtex-parse-field-string, bibtex-search-forward-field-string,
456 bibtex-parse-association, bibtex-field-name-for-parsing,
457 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
458 bibtex-search-forward-field, bibtex-search-backward-field,
459 bibtex-start-of-field, bibtex-end-of-field,
460 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
461 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
462 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
463 bibtex-parse-string, bibtex-search-forward-string,
464 bibtex-search-backward-string, bibtex-start-of-string,
465 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
466 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
467 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
468 entries. Instead of reporting the results of the parsing by
469 match-beginning or match-end, these functions return data structures
470 that hold the corresponding positions.
471 (bibtex-enclosing-field): Changed to also report field boundaries by
472 return values rather than by match-beginning or match-end. The
473 following functions have been adapted to use the new parsing
474 functions.
475 (bibtex-skip-to-valid-entry, bibtex-search-reference,
476 bibtex-enclosing-field, bibtex-format-entry,
477 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
478 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
479 bibtex-print-help-message, bibtex-end-of-entry,
480 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
481 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
482 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
483 method for parsing.
484 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
485 bibtex-map-entries, bibtex-flash-head,
486 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
487 bibtex-autokey-change, bibtex-autokey-get-namefield,
488 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
489 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
490 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
491 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
492 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
493 order to make the new binding of case-fold-search immediately
494 visible.
495
496 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
497
498 * textmodes/bibtex.el: Copyright notice is up to date.
499 Added constant 'bibtex-maintainer-salutation.
500
501 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
502 than make-temp-name, use match-string-no-properties and eliminate
503 a quadratic behavior when building bibtex-strings.
504
505 * bibtex.el (bibtex-reference-key): Accept string entries whose
506 reference key contains upper case letters.
507
508 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
509
510 * bibtex.el (bibtex-reference-head): Allow entries to start with
511 a new line.
512
513 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
514
515 * bibtex.el: Hiding of entry bodies is not longer provided by
516 bibtex.el directly. Instead the hideshow package can be used.
517 Added a special bibtex entry to hs-special-modes-alist.
518 (bibtex-hs-forward-sexp): Added for hideshow.el.
519
520 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
521
522 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
523 proceedings entry type (for cross referencing). Thanks to Wagner
524 Toledo Correa for the suggestion.
525
526 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
527
528 2000-02-14 Kenichi Handa <handa@etl.go.jp>
529
530 * international/characters.el: Setup case table for Vietnamese.
531
532 2000-02-12 Gerd Moellmann <gerd@gnu.org>
533
534 * uniquify.el (toplevel): Require CL at compile time.
535 (uniquify-push): Removed.
536
537 * shadowfile.el (shadow-when): Removed.
538
539 * tempo.el (tempo-dolist, tempo-mapc): Removed.
540 (tempo-process-and-insert-string): Use dolist instead of
541 tempo-dolist.
542
543 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
544 regexp for paragraph-start.
545
546 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
547 commas as well.
548
549 2000-02-10 Dave Love <fx@gnu.org>
550
551 * wid-edit.el: (widgets) [defgroup]: Remove url link.
552 (widget-color-choice-list, widget-color-history, widget-mouse-help):
553 Deleted.
554 (widget-specify-field, widget-specify-button): Don't use
555 widget-mouse-help as help-echo property.
556 (default): Use #'ignore for :validate and :mouse-down-action.
557 (checkbox): Add help-echo.
558 (widget-sexp-validate): Rewritten to clarify error messages.
559 (character): Use char-valid-p in :match function.
560 (widget-color-complete): Use facemenu-color-alist.
561 (widget-color-action): Use facemenu-read-color.
562
563 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
564 set up `caar' &c that we now have.
565
566 2000-02-09 Ray Blaak <blaak@gnu.org>
567
568 * delphi.el: Make resourcestring a declaration region, like const
569 and var.
570
571 2000-02-09 Dave Love <fx@gnu.org>
572
573 * bindings.el (mode-line-input-method-map): New variable.
574 (mode-line-mule-info): Use it; fix last change.
575 (mode-line-mode-menu): Move definition.
576 (mode-line-mouse-sensitive-p): Deleted.
577 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
578 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
579 level.
580
581 * startup.el (command-line-1): Don't call
582 make-mode-line-mouse-sensitive.
583
584 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
585
586 * mail/rmail.el (rmail-retry-failure): Use
587 rmail-beginning-of-message before rmail-toggle-header, because the
588 former toggles headers.
589
590 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
591
592 * diff-mode.el (diff-kill-junk): New interactive function.
593 (diff-reverse-direction): Use delete-and-extract-region.
594 (diff-post-command-hook): Restrict the area so that the hook also works
595 outside of any diff hunk. This is necessary for the minor-mode.
596 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
597 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
598
599 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
600 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
601 so that it can be used more easily in <foo>-mode-hook. Also make sure
602 to avoid duplicate entries.
603 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
604 (font-lock-remove-keywords): Just as was done for `add', allow it to
605 work even if font-lock-mode is nil. Also make sure we don't modify
606 any pre-existing list by forcing a copy-sequence. Finally rename
607 `major-mode' to `mode'.
608 (font-lock-fontify-syntactic-anchored-keywords)
609 (font-lock-fontify-anchored-keywords)
610 (font-lock-fontify-keywords-region): Use line-end-position.
611 Don't make `font-lock-multiline' local (it's now done in
612 font-lock-set-defaults).
613 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
614 move the `font-lock-fontified' creation to inside the `unless'.
615
616 2000-02-06 Andrew Innes <andrewi@gnu.org>
617
618 * term/w32-win.el (x-handle-args): Comment out call to message,
619 which occurs before window system is initialized.
620
621 * makefile.nt: Add support for recompiling lisp code.
622
623 2000-02-04 Dave Love <fx@gnu.org>
624
625 * bindings.el (mode-line-mule-info): Fix/extend last change.
626
627 * completion.el: Replace completion-dolist with dolist.
628
629 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
630 dotimes.
631
632 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
633
634 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
635 environment names before they go into the section regexp.
636
637 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
638 char class in regexp.
639
640 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
641 `case-fold-search' to nil.
642
643 * progmodes/idlwave.el (idlwave-template): Respect
644 `idlwave-abbrev-change-case'.
645 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
646 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
647 idlwave-while): respect `idlwave-reserved-word-upcase'.
648 (idlwave-rw-case): New function.
649 (idlwave-statement-match): Fixed problem with assignment regexp.
650 (idlwave-font-lock-keywords): Improved regexp for keyword
651 parameters.
652 (idlwave-surround): New argument LENGTH to support padding of
653 operators longer than 1 char.
654
655 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
656 idlwave-shell-expression-overlay. Implemented printing of
657 expressions on higher levels of the calling stack.
658 (idlwave-shell-display-level-in-calling-stack): Restore stack
659 level.
660 (idlwave-retrieve-expression-from-level): New function.
661 (idlwave-shell-last-calling-stack): Variable removed.
662 (idlwave-shell-reset): Argument action reversed (`visible' to
663 `hidden'). Also remove stop-line overlay.
664 (idlwave-shell-calling-stack-routine): New variable.
665 (idlwave-shell-parse-stack-and-display): Messages now display
666 negative level numbers.
667 (idlwave-shell-mode): Set `modeline-format'.
668 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
669 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
670 21.
671 (idlwave-shell-print-expression-function): New option.
672
673 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
674 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
675 `tool-bar' instead of `toolbar'.
676
677 2000-02-02 Dave Love <fx@gnu.org>
678
679 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
680 emacs-lisp-mode-hook. Don't check for defalias being defined.
681
682 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
683 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
684 the new builtins directly.
685
686 * whitespace.el (whitespace): Add :version to defgroup.
687
688 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
689 Doc fix.
690
691 * thingatpt.el (sexp-at-point, symbol-at-point)
692 (number-at-point, list-at-point): Add autoload cookie.
693
694 * recentf.el (recentf): Add :version to defgroup.
695
696 * quickurl.el (quickurl): Add :version to defgroup.
697
698 * elide-head.el (elide-head): Use point-marker more.
699
700 * bs.el (bs): Add :version to defgroup.
701
702 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
703
704 * progmodes/delphi.el (delphi): Add :version to defgroup.
705
706 2000-02-02 Gerd Moellmann <gerd@gnu.org>
707
708 * ange-ftp.el (ange-ftp-write-region): Handle case that
709 succeeding process operation sets a different coding system.
710
711 * calculator.el: New file.
712
713 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
714
715 * frame.el (frames-on-display-list, framep-on-display): New
716 functions.
717 (display-mouse-p, display-popup-menus-p, display-graphic-p)
718 (display-selections-p, display-screens, display-pixel-width)
719 (display-pixel-height, display-mm-width, display-mm-height)
720 (display-backing-store, display-save-under, display-planes)
721 (display-color-cells, display-visual-class): New functions.
722
723 * term/tty-colors.el (tty-color-gray-shades): New function.
724
725 * faces.el (display-color-p): Use framep-on-display.
726 (display-grayscale-p): New function.
727
728 2000-01-31 Dave Love <fx@gnu.org>
729
730 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
731 (create-fontset-from-x-resource): Don't concat integers.
732
733 2000-01-31 Inge Frick <inge@nada.kth.se>
734
735 * view.el: Some changes in documentation. Removed some trailing
736 whitespace. Changed some parameter names to agree with
737 documentation.
738 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
739 window is not deleted. Modifies change 1998-04-26.
740
741 2000-01-31 Gerd Moellmann <gerd@gnu.org>
742
743 * windmove.el: New file.
744
745 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
746 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
747 progmodes/ebnf-yac.el: Update copyright and license info.
748
749 * jit-lock.el (jit-lock-function): Widen before calculating end
750 position.
751 (jit-lock-stealth-chunk-start): Rewritten.
752
753 * info.el (Info-title-face-alist): Removed.
754 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
755 faces.
756 (Info-fontify-node): Use these faces.
757
758 2000-01-30 Gerd Moellmann <gerd@gnu.org>
759
760 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
761 (cl-macro-list1): Recognize `&allow-other-keys' instead of
762 `&allow-other-keywords'.
763
764 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
765 the list of directories scanned heuristically.
766
767 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
768 exist.
769
770 2000-01-30 Jason Rumney <jasonr@gnu.org>
771
772 * w32-fns.el: Define w32-tty-standard-colors.
773
774 * startup.el (command-line): Use w32-tty-standard-colors when in
775 w32 console mode.
776
777 2000-01-30 Dave Love <fx@gnu.org>
778
779 * jka-compr.el (jka-compr-load): Fix up load-history.
780
781 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
782
783 * emacs-lisp/cl-macs.el: Revert previous change.
784
785 2000-01-29 Dave Love <fx@gnu.org>
786
787 * facemenu.el: Purecopy various strings.
788
789 * timezone.el (timezone-fix-time): Window against 69 for two-digit
790 years. Deal with three-digit years.
791
792 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
793 defconst, purecopy.
794 (help-back-label): Purecopy it.
795
796 2000-01-18 Gerd Moellmann <gerd@gnu.org>
797
798 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
799 variable. If non-nil, order the buffer list according to the
800 currently selected frame.
801 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
802 non-nil, pass the selected frame to function buffer-list.
803
804 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
805
806 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
807
808 2000-01-28 Dave Love <fx@gnu.org>
809
810 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
811
812 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
813 Don't use lisp-indent-hook property.
814 (cl-abs): Remove.
815
816 * subr.el: Move out indent and edebug specs for when and unless.
817
818 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
819 when, unless.
820
821 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
822 unless, when.
823
824 2000-01-28 Gerd Moellmann <gerd@gnu.org>
825
826 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
827 `collecting' as synonym for `collect'.
828
829 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
830 for the case it contains spaces.
831
832 * simple.el (what-cursor-position): Change formatting of
833 messages.
834
835 * frame.el (delete-other-frames): New function.
836 (toplevel): Bind it to C-x 5 1.
837
838 * sort.el (sort-numeric-base): New option.
839 (sort-numeric-fields): If number starts with `0' or `0[xX[',
840 interpret it as octal or hexadecimal. Use sort-numeric-base
841 as default base.
842
843 * progmodes/glasses.el: New file.
844
845 2000-01-27 Gerd Moellmann <gerd@gnu.org>
846
847 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
848 userids differently.
849
850 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
851 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
852 progmodes/ebnf-yac.el: New files.
853
854 2000-01-26 Dave Love <fx@gnu.org>
855
856 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
857 on a function with an empty body. [From Eric Ludlam.]
858
859 2000-01-25 Andre Spiegel <spiegel@gnu.org>
860
861 * vc.el (vc-version-diff): Make sure file name is expanded.
862
863 2000-01-25 Gerd Moellmann <gerd@gnu.org>
864
865 * scroll-bar.el (scroll-bar-timer): Variable removed.
866 (scroll-bar-toolkit-scroll): Don't use a timer.
867
868 2000-01-25 Kenichi Handa <handa@etl.go.jp>
869
870 * language/thai-util.el (thai-composition-function): Delete
871 superfluous `a'.
872
873 2000-01-24 Dave Love <fx@gnu.org>
874
875 * fortran.el (fortran-mode): Use beginning-of-defun-function,
876 end-of-defun-function.
877
878 * font-lock.el (turn-on-font-lock): Don't depend on window-system
879 &c.
880
881 2000-01-22 Jason Rumney <jasonr@gnu.org>
882
883 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
884 conflicts with new face support.
885
886 2000-01-22 Richard M. Stallman <rms@caffeine.ai.mit.edu>
887
888 * replace.el (query-replace): Rename last arg to DELIMITED.
889 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
890 (query-replace-regexp): Likewise.
891
892 2000-01-20 Richard M. Stallman <rms@caffeine.ai.mit.edu>
893
894 * subr.el (with-syntax-table): Use make-symbol, not gensym.
895
896 * emacs-lisp/lisp.el (beginning-of-defun-function):
897 Variable renamed from beginning-of-defun.
898 Do not call make-variable-buffer-local.
899 (beginning-of-defun-raw): Use new variable name; doc fix.
900 (beginning-of-defun): Doc fix.
901 (end-of-defun-function): Variable renamed from end-of-defun.
902 Do not call make-variable-buffer-local.
903 (end-of-defun): Use new variable name; doc fix.
904
905 * subr.el (dolist, dotimes): Copied from cl-macs.el
906 and made to work.
907
908 * mail/undigest.el (rmail-digest-end-regexps):
909 Variable replaces rmail-digest-end-regexp.
910 Allows multiple regexps for detecting the end line.
911 (undigestify-rmail-message): Corresponding changes.
912
913 2000-01-19 Dave Love <fx@gnu.org>
914
915 * files.el (user-init-file): Don't declare here -- is primitive.
916
917 * startup.el (command-line): Check for compiled user-init-file and
918 set to uncompiled version if necessary.
919
920 2000-01-18 Gerd Moellmann <gerd@gnu.org>
921
922 * mail/undigest.el (rmail-digest-end-regexp): New user option.
923 (undigestify-rmail-message): Use it.
924
925 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
926
927 2000-01-17 Gerd Moellmann <gerd@gnu.org>
928
929 * tmm.el (tmm-goto-completions): Adapt to prompt being part
930 of mini-buffer.
931
932 2000-01-14 Gerd Moellmann <gerd@gnu.org>
933
934 * emacs-lisp/copyright.el (copyright-update): Removed the
935 requirement for a trailing space from `copyright-regexp', to
936 support copyrights with owner specified on a separate line..
937
938 * align.el: New file.
939
940 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
941
942 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
943
944 2000-01-13 Dave Love <fx@gnu.org>
945
946 * ph.el: Removed. (Obsoleted by EUDC.)
947
948 2000-01-13 Gerd Moellmann <gerd@gnu.org>
949
950 * net/eudc.el (toplevel): Remove autoloaded code installing
951 menu with easymenu, because that causes build problems.
952
953 * frame.el (frame-notice-user-settings): New variable.
954 (frame-notice-user-settings): Don't modify frame parameters
955 if called a second time.
956
957 2000-01-13 Richard M. Stallman <rms@caffeine.ai.mit.edu>
958
959 * frame.el (frame-notice-user-settings):
960 Notice default-frame-parameters even for non-window frames.
961
962 2000-01-13 Gerd Moellmann <gerd@gnu.org>
963
964 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
965 for Emacs.
966 (eudc-bob-can-display-inline-images): Extend for Emacs.
967 (eudc-bob-toggle-inline-display): Ditto.
968 (eudc-bob-display-jpeg): Ditto.
969
970 2000-01-12 Gerd Moellmann <gerd@gnu.org>
971
972 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
973 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
974 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
975
976 * add-log.el (add-change-log-entry): Fix error trying an `(insert
977 nil)'.
978
979 * subdirs.el: Add `net' directory.
980
981 * net: New directory.
982
983 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
984 eval-last-sexp. Don't bind debug-on-error here.
985 (eval-last-sexp): New function. Bind debug-on-error if
986 eval-expression-debug-on-error is non-nil.
987 (eval-defun-2, eval-defun): Likewise.
988
989 * simple.el (eval-expression): Don't bind debug-on-error if
990 eval-expression-debug-on-error is nil. Detect changed
991 debug-on-error, and propagate new value to global binding, if
992 eval-expression-debug-on-error is non-nil,
993 (eval-expression-debug-on-error): Change doc string.
994
995 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
996
997 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
998
999 * emacs-lisp/lisp-mode.el (with-syntax-table):
1000 Set up lisp-indent-function property.
1001
1002 * subr.el (with-syntax-table): Moved from simple.el.
1003
1004 * simple.el (with-syntax-table): Moved to subr.el.
1005
1006 2000-01-11 Gerd Moellmann <gerd@gnu.org>
1007
1008 * tmm.el (tmm-shortcut): Delete region after prompt instead
1009 of erasing buffer.
1010
1011 * textmodes/fill.el (fill-common-string-prefix): New function.
1012 (fill-context-prefix): Use the longest common prefix of first
1013 and second line fill prefix, if there is one.
1014
1015 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1016
1017 * array.el (array-mode): Don't use make-variable-buffer-local.
1018 Use make-local-variable for `truncate-lines'.
1019
1020 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
1021
1022 * add-log.el (add-log-current-defun): Handle user-defined
1023 add-log-current-function returning nil,
1024
1025 * add-log.el (add-change-log-entry): Insert version number
1026 if having found a current function
1027
1028 * add-log.el (add-log-current-defun): Call
1029 `add-log-current-defun-function'. Try matches at level 0 and
1030 level 1. Strip whitespace from defun found.
1031
1032 2000-01-10 John Wiegley <johnw@gnu.org>
1033
1034 * allout.el (isearch-done/outline-provisions): Added `edit'
1035 argument to correspond with the current definition of
1036 `isearch-done'.
1037
1038 2000-01-10 Dave Love <fx@gnu.org>
1039
1040 * elide-head.el (elide-head): Use point-marker, not point.
1041
1042 2000-01-10 Gerd Moellmann <gerd@gnu.org>
1043
1044 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
1045 before and after the year 2000.
1046
1047 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
1048 Add ispell- prefix.
1049
1050 2000-01-10 Ken Stevens <k.stevens@ieee.org>
1051
1052 * ispell.el: Only define dictionaries in menus when they exist.
1053 (version18p): New variable.
1054 (version20p): New variable.
1055 (xemacsp): New variable.
1056 (ispell-choices-win-default-height): Fix for XEmacs visibility.
1057 (ispell-dictionary-alist1): Added Brasileiro dictionary.
1058 (ispell-dictionary-alist6): Russian command lines no longer accept
1059 run-together words.
1060 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
1061 (ispell-dictionary-alist): Add koi8-r to customize definition.
1062 (check-ispell-version): Added documentation string. Returns
1063 library path when called non-interactively.
1064 (ispell-menu-map-needed): Uses new variables.
1065 (ispell-library-path): New variable.
1066 (ispell-decode-string): XEmacs fix for bogus variable bindings.
1067 (ispell-word): Improved documentation string. Test for valid
1068 character mappings. Correctly check typed in word changes that can
1069 result in single words split into multiple words. Returns
1070 replacement word.
1071 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
1072 replace in recursive query replace mode. Help message for
1073 recursive edit mode.
1074 (ispell-show-choices): Protect against bad framepop bindings.
1075 (ispell-help): Fix to work with XEmacs.
1076 (ispell-highlight-spelling-error): Use new variables.
1077 (ispell-overlay-window): Fix to work with XEmacs.
1078 (ispell-parse-output): Passed and returns location information
1079 tracking spelling corrections. Doesn't recheck same word on
1080 current line.
1081 (ispell-init-process): Protect against bogus XEmacs variable binding.
1082 Fix call to single argument in sleep-for. Use new variables.
1083 (ispell-region): Passed and returns location information tracking
1084 spelling corrections. Doesn't check same word on current line.
1085 Improved documentation string. Doesn't resend a line already
1086 checked to the ispell process - fixes bug in LaTeX parsing.
1087 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
1088 (ispell-skip-region): No longer skips <TT> in SGML.
1089 (ispell-process-line): Tracks location information with spelling
1090 corrections. Added documentation string. Accounts for words
1091 already accepted on this line. Don't allow query-replace on line
1092 starting with math characters. Doesn't resend a line already sent
1093 to ispell process. Fixes alignment error bug.
1094
1095 2000-01-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1096
1097 * dired-x.el (dired-guess-shell-alist-default):
1098 Suggest xloadimage, which is free, not xv, which isn't.
1099
1100 * ange-ftp.el (ange-ftp-file-name-nondirectory):
1101 Don't ever include the host name or user name in the value.
1102
1103 2000-01-09 Gerd Moellmann <gerd@gnu.org>
1104
1105 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
1106 of a real newline.
1107
1108 2000-01-09 Stephen Eglen <stephen@gnu.org>
1109
1110 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
1111 for .png files.
1112
1113 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
1114
1115 * cus-edit.el (custom-hook-convert-widget): Fix comment.
1116
1117 2000-01-09 Gerd Moellmann <gerd@gnu.org>
1118
1119 * progmodes/cperl-mode.el: Replace ^F with ^L.
1120
1121 * sendmail.el (toplevel): Provide `sendmail' when compiling
1122 before `require'ing rmail and mailalias to prevent infinite
1123 recursion.
1124
1125 2000-01-08 Dave Love <fx@gnu.org>
1126
1127 * emacs-lisp/backquote.el: Remove inappropriate customization
1128 (allowing custom.el to use backquote).
1129
1130 2000-01-07 Dave Love <fx@gnu.org>
1131
1132 * add-log.el (add-log-debugging): Deleted.
1133 (add-change-log-entry): Treat a backup FILE-NAME as its parent
1134 file. Remove debugging code.
1135 (change-log-get-method-definition, change-log-name): Add doc.
1136 (change-log-sortable-date-at): New function.
1137 (change-log-merge): New command.
1138
1139 * time.el (display-time-string-forms): Make the Mail string active.
1140 (display-time-update): Provide help-echo for load average.
1141
1142 * bindings.el (make-mode-line-mouse2-map): New function.
1143 (mode-line-modified): Use it and simplify.
1144 (mode-line-mule-info): Provide help-echo info.
1145 (minor-mode-alist): Activate the strings.
1146 (make-mode-line-mouse-sensitive): Simplify for
1147 mode-line-buffer-identification.
1148
1149 2000-01-07 Gerd Moellmann <gerd@gnu.org>
1150
1151 * play/pong.el: New file.
1152
1153 2000-01-06 Dave Love <fx@gnu.org>
1154
1155 * array.el: Assorted cleanups for compiler warnings, doc strings,
1156 `array-' prefix for symbols.
1157
1158 2000-01-05 Dave Love <fx@gnu.org>
1159
1160 * textmodes/outline.el (outline-mode-menu-bar-map): Add
1161 outline-headers-as-kill.
1162 (outline-mode): Define imenu-generic-expression.
1163 (outline-headers-as-kill): New command.
1164
1165 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
1166 from paragraph-start.
1167 (paragraph-indent-minor-mode): New command.
1168
1169 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
1170 M-C-e, M-C-h, C-j, C-xnd, TAB.
1171 (fortran-mode): Set beginning-of-defun, end-of-defun.
1172 (fortran-column-ruler): Simplify.
1173 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
1174 (fortran-with-subprogram-narrowing): Likewise.
1175 (fortran-indent-subprogram): Call mark-defun.
1176 (fortran-check-for-matching-do): Change narrowing.
1177
1178 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
1179 (cl-lucid-hash-tag): Delete.
1180 (cl-hash-table-p): Correct test for native table.
1181 (cl-hash-table-count): Use hash-table-count.
1182
1183 * browse-url.el (browse-url): Fix case of
1184 browse-url-browser-function being an alist.
1185
1186 2000-01-05 Carsten Dominik <cd@gnu.org>
1187
1188 * textmodes/reftex-vars.el (reftex-parse-file-extension)
1189 (reftex-index-phrase-file-extension): New options.
1190
1191 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
1192 Use new option `reftex-index-phrase-file-extension'.
1193
1194 * textmodes/reftex.el (reftex-access-parse-file): Use new option
1195 `reftex-parse-file-extension'.
1196
1197 2000-01-05 Dave Love <fx@gnu.org>
1198
1199 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
1200 (beginning-of-defun-raw): Use it.
1201 (end-of-defun): New variable.
1202 (end-of-defun): Use it.
1203 (check-parens): New command.
1204
1205 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1206
1207 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
1208 (hs-show-block): Don't use `mapcar' when not accumulating.
1209
1210 Fix buglet in local variables initialization.
1211
1212 2000-01-05 Andreas Schwab <schwab@suse.de>
1213
1214 * hscroll.el (hscroll): Doc fix.
1215
1216 2000-01-05 Carsten Dominik <cd@gnu.org>
1217
1218 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
1219 idlw-toolbar.
1220
1221 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
1222 file idlw-rinfo.el.
1223 (idlwave-customize): load must read file idlw-shell.el.
1224 (idlwave-create-customize-menu): load must read file idlw-shell.el.
1225
1226 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
1227
1228 * progmodes/idlw-shell.el: Also provide idlwave-shell
1229 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
1230 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
1231
1232 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
1233 both reftex-dcr and reftex-vcr.
1234
1235 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
1236
1237 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1238
1239 * ps-print.el: PostScript code now is in separate files, doc fix.
1240 (ps-print-version): New version number (5.0.3).
1241 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
1242 local.
1243 (ps-spool-config): Initialization fix.
1244 (ps-print-prologue-1, ps-print-prologue-2)
1245 (ps-print-duplex-feature): PostScript code moved to separated file.
1246 (ps-background-image): Little code reformating.
1247 (ps-begin-file, ps-begin-job): Fix code.
1248 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
1249 (ps-prologue-file): New fun.
1250
1251 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1252
1253 * ps-vars.el: Eliminated.
1254
1255 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
1256 `;;;###autoload'.
1257
1258 * ps-print.el: ps-vars eliminated, doc fix.
1259 (ps-print-version): New version number (5.0.2).
1260 (ps-spool-config): Initialization fix.
1261 (ps-print-customize): New fun.
1262
1263 2000-01-04 Gerd Moellmann <gerd@gnu.org>
1264
1265 * autorevert.el (auto-revert-mode): Return value of
1266 auto-revert-mode.
1267
1268 2000-01-04 Dave Love <fx@gnu.org>
1269
1270 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
1271 menu items.
1272
1273 2000-01-03 Dave Love <fx@gnu.org>
1274
1275 * elide-head.el (elide-head) [defgroup]: Add :version.
1276
1277 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
1278 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
1279 `cl-hash-table-p', not `hash-table-p'.
1280 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
1281
1282 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1283
1284 * faces.el (face-read-integer, read-face-attribute)
1285 (color-defined-p, color-values): unspecified-{f,b}g are now
1286 strings.
1287
1288 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
1289
1290 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
1291 at comment end, and re-insert them after filling.
1292
1293 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1294
1295 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
1296 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
1297 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
1298
1299 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1300
1301 * term/x-win.el (xw-defined-colors): Call color-supported-p,
1302 the new name of face-color-supported-p.
1303
1304 * term/w32-win.el (xw-defined-colors): Likewise.
1305
1306 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1307
1308 * simple.el (completion-setup-function): Count completion-size
1309 from minibuffer-prompt-end, not from point-min.
1310
1311 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1312
1313 * faces.el (read-face-attribute, defined-colors, color-defined-p):
1314 Pass the frame to tty-color-* functions.
1315 (display-color-p, frame-set-background-mode): Pass the frame to
1316 tty-display-color-p.
1317
1318 * term/tty-colors.el (tty-defined-color-alist): Renamed from
1319 tty-color-alist.
1320 (tty-color-alist, tty-modify-color-alist): New functions.
1321 (tty-color-define, tty-color-clear, tty-color-approximate)
1322 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
1323 an optional parameter FRAME.
1324
1325 2000-01-01 Gerd Moellmann <gerd@gnu.org>
1326
1327 * image.el (create-image, defimage): Don't assume image data is a
1328 string.
1329
1330 * image.el (defimage): Handle specifications containing :data
1331 instead of :file.
1332 (image-type-from-data): New function.
1333 (image-type-from-file-header): Use it.
1334 (create-image): Add parameter DATA-P.
1335
1336 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1337
1338 * echistory.el (electric-command-history): Call Command-history-setup
1339 and command-history-mode using their new conventions.
1340
1341 * chistory.el (Command-history-setup): Don't switch buffers. Take
1342 no args, and do not set major-mode, mode-name or the local map.
1343 (command-history-mode): New function, does some of those things
1344 Command-history-setup used to do.
1345 (list-command-history): Call command-history-mode, not
1346 Command-history-setup.
1347 (command-history): Renamed from command-history-mode.
1348
1349 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1350
1351 * arc-mode.el (archive-mode-map): Bind q to quit-window.
1352
1353 1999-12-31 William M. Perry <wmperry@aventail.com>
1354
1355 * image.el (defimage): Images with the `:data' keyword should be
1356 considered valid as well.
1357
1358 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1359
1360 * dired.el (dired-get-filename): Don't call file-name-absolute-p
1361 with FILE if FILE is nil.
1362
1363 1999-12-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1364
1365 * simple.el (choose-completion-string): In minibuffer,
1366 do not delete the prompt string.
1367
1368 1999-12-30 Gerd Moellmann <gerd@gnu.org>
1369
1370 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
1371 assigned to mode-line-mode-menu because bindings.el is dumped with
1372 Emacs, and thus the lists used for menu-item definition will be
1373 copied to pure space. Emacs' menu code (parse_menu_item) doesn't
1374 like pure menu item definitions.
1375
1376 * expand.el (expand-abbrev-hook): Return t if expansion was
1377 done, nil otherwise.
1378
1379 1999-12-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1380
1381 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
1382 (tar-quit): Function deleted.
1383
1384 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1385
1386 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
1387 was used but not declared.
1388
1389 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
1390 hs-find-block-beginning): Add or modify docstrings.
1391
1392 (hs-isearch-show): Rewrite.
1393
1394 1999-12-28 Gerd Moellmann <gerd@gnu.org>
1395
1396 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
1397
1398 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
1399 space in front of a C-style comment end.
1400
1401 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
1402
1403 * startup.el (command-line-1): Make mode line mouse-sensitive for
1404 the MS-DOS version as well.
1405
1406 1999-12-28 Gerd Moellmann <gerd@gnu.org>
1407
1408 * bs.el: New file.
1409
1410 1999-12-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1411
1412 * textmodes/ispell.el (ispell-process-line):
1413 Add local var line-offset to adjust for the change
1414 in positions within the line, due to previous replacements.
1415
1416 1999-12-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1417
1418 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
1419 Doc fixes.
1420
1421 1999-12-27 Gerd Moellmann <gerd@gnu.org>
1422
1423 * add-log.el (change-log-version-number-regexp-list)
1424 (change-log-version-info-enabled): Change :version to 21.1.
1425 (toplevel): Require CL when compiling.
1426
1427 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
1428
1429 * add-log.el (change-log-version-number-regexp-list): Added tag
1430 :version 20.6
1431 (change-log-version-info-enabled): Added tag :version 20.6
1432
1433 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
1434
1435 * add-log.el: More general version number search with
1436 user-configurable regexp list.
1437 (change-log-version-number-regexp-list): New user variable.
1438 (change-log-find-version): Rewritten. Use user-configurable
1439 version numbering regexp list
1440 change-log-version-number-regexp-list.
1441 (change-log-find-version): Renamed to
1442 change-log-version-number-search
1443 (add-log-file-name-function): New.
1444 (change-log-search-vc-number): Added END paramaeter. Added doc
1445 string to function.
1446 (change-log-version-rcs): Renamed. Was
1447 change-log-search-vc-number.
1448
1449 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1450
1451 * progmodes/compile.el (compilation-goto-locus): Delete hideshow
1452 overlays if they interfere.
1453 (compilation-find-file): Make intangible overlays tangible.
1454
1455 * progmodes/hideshow.el: Generally, synch w/ maintainer
1456 version 5.9.
1457
1458 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
1459
1460 (hs-minor-mode-hook): Don't initialize.
1461
1462 (hs-special-modes-alist): Rewrite value and docstring.
1463
1464 (hs-minor-mode-prefix): Delete unused var.
1465
1466 (hs-block-start-mdata-select): New var, buffer local.
1467
1468 (hs-headline): New var.
1469
1470 (hs-match-data, hs-forward-sexp): New funcs.
1471
1472 (hs-hide-comment-region): New func.
1473
1474 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
1475 hs-safety-is-job-n, hs-hide-initial-comment-block,
1476 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
1477 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
1478 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
1479 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
1480 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
1481
1482 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
1483 (hs-isearch-show-temporary): New funcs.
1484
1485 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
1486
1487 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
1488
1489 When constructing menu, use `[(shift button2)]' notation.
1490
1491 1999-12-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1492
1493 * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
1494 (jka-compr-compression-info-list): Add new elt to each vector.
1495 (jka-compr-write-region): Don't compress the data if it is
1496 already compressed.
1497
1498 * jka-compr.el (jka-compr-really-do-compress): New variable.
1499 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
1500 if visiting.
1501 (jka-compr-write-region): Set jka-compr-really-do-compress
1502 if visiting. Test it when deciding to compress.
1503
1504 1999-12-22 Gerd Moellmann <gerd@gnu.org>
1505
1506 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
1507 with third argument t.
1508
1509 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1510
1511 * antlr-mode.el: Version 1.2 is released.
1512 (antlr): This package has a web page.
1513
1514 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1515
1516 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
1517 regions. Suggested by Dale Davis <Dale_Davis@securify.com>.
1518 (antlr-mode-map): New binding [C-c C-c].
1519 (antlr-mode-menu): New entries.
1520
1521 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1522
1523 * antlr-mode.el: Respect Emacs conventions.
1524 ((require 'cl)): Only use during compilation.
1525 (antlr-language-for-option): New function to avoid using `find'.
1526 (antlr-mode): Use it.
1527 (antlr-with-syntax-table): Define new instead using XEmacs' one.
1528 (antlr-imenu-create-index-function): Change accordingly.
1529 (antlr-inside-rule-p): Ditto.
1530 (antlr-end-of-rule): Ditto.
1531 (antlr-end-of-body): Ditto.
1532 (antlr-beginning-of-rule): Ditto.
1533 (antlr-indent-line): Ditto.
1534
1535 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com>
1536
1537 * antlr-mode.el: Really use `antlr-tab-offset-alist'.
1538 (antlr-set-tabs): Don't use hard-coded values.
1539
1540 * antlr-mode.el: Minor navigation changes. Not perfect, but this
1541 won't be possible without a huge time penalty.
1542 (antlr-skip-exception-part): Be more specific.
1543 (antlr-skip-file-prelude): Don't skip action prelude of next rule.
1544 Renamed from `antlr-skip-grammar-header'.
1545 (antlr-next-rule): Change accordingly.
1546 (antlr-end-of-body): Ditto. Better error message.
1547 (antlr-beginning-of-body): Better error message.
1548 (antlr-imenu-create-index-function): Skip rule action prelude.
1549
1550 * antlr-mode.el: Minor syntax highlighting changes.
1551 (antlr-font-lock-default-face): Deletia.
1552 (antlr-font-lock-tokendef-face): Changed color.
1553 (antlr-font-lock-tokenref-face): Changed color.
1554 (antlr-font-lock-literal-face): Changed color.
1555 (antlr-font-lock-additional-keywords): Minor changes.
1556
1557 1999-12-20 Carsten Dominik <cd@gnu.org>
1558
1559 * progmodes/idlwave.el: New file.
1560
1561 * progmodes/idlwave-rinfo.el: New file.
1562
1563 * progmodes/idlwave-shell.el: New file.
1564
1565 * progmodes/idlwave-toolbar.el: New file.
1566
1567 * files.el (auto-mode-alist): idlwave-mode default for .pro files.
1568
1569 1999-12-21 Gerd Moellmann <gerd@gnu.org>
1570
1571 * progmodes/cwarn.el: New file.
1572
1573 1999-12-19 Gerd Moellmann <gerd@gnu.org>
1574
1575 * bindings.el (completion-ignored-extensions): Add .pdf.
1576
1577 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
1578
1579 * version.el: Put the version info into binary on MS-DOS as well.
1580
1581 1999-12-19 Gerd Moellmann <gerd@gnu.org>
1582
1583 * emacs-lisp/debug.el (debugger-continue): Don't continue if
1584 debugger-may-continue is nil.
1585
1586 1999-12-18 Dave Love <fx@gnu.org>
1587
1588 * emacs-lisp/cl-macs.el: Remove conditional definition of
1589 eval-when-compile. Don't specify abs, expt, gethash,
1590 hash-table-count, hash-table-p as side-effect-free here.
1591 (cl-emacs-type): Don't declare.
1592 (cl-compile-time-init): Remove Emacs 18 compiler patch.
1593 (cl-parse-loop-clause): Remove compatibility code.
1594
1595 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
1596 (side-effect-free-fns): Add gethash, hash-table-count.
1597 (side-effect-and-error-free-fns): Add hash-table-p.
1598
1599 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend
1600 `cl-' to autoload names for some hash functions. Don't autoload
1601 eval-when-compile. Don't provide mini-cl.
1602 (cl-emacs-type): Remove.
1603 (cl-map-extents): Remove compatibility code.
1604
1605 * emacs-lisp/float.el: Bind free variables.
1606
1607 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
1608
1609 1999-12-16 Gerd Moellmann <gerd@gnu.org>
1610
1611 * bindings.el (completion-ignored-extensions): Add .tfm.
1612
1613 1999-12-16 Dave Love <fx@gnu.org>
1614
1615 * faces.el (set-face-attribute): Purecopy the attributes set.
1616
1617 * custom.el (custom-declare-variable): Purecopy value.
1618
1619 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
1620 (byte-extrude-byte-code-vectors): Use remprop.
1621 (byte-compile-lambda): Check that arg is a lambda.
1622
1623 1999-11-16 Anders Lindgren <AndersL@andersl.com>
1624
1625 * font-lock.el: System for adding and removing keywords.
1626 Both local (previously added keyword) and global keywords
1627 can be removed.
1628 (font-lock-remove-keywords): New user-level function.
1629 (font-lock-update-removed-keyword-alist): New internal function.
1630 (font-lock-removed-keywords-alist): New variable.
1631 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
1632 Empty `font-lock-keywords-alist' when `append' is `set' to avoid
1633 growing datastructures.
1634 (font-lock-set-defaults): Removes keywords stored in
1635 `font-lock-removed-keywords-alist' after local keywords added.
1636
1637 1999-12-16 Anders Lindgren <andersl@andersl.com>
1638
1639 * font-lock.el (c-keywords, c++-keywords): Better "case" support for
1640 complex constant expressions, e.g. "case 1<<A_BIT_NO:".
1641
1642 * font-lock.el (c-keywords): Only highlight preprocessor
1643 directives when spelled correctly.
1644
1645 * font-lock.el (font-lock-match-c++-structor-declaration,
1646 c++-keywords): Fontify constructors and destructors with function
1647 face inside C++ class declarations.
1648
1649 1999-12-16 Gerd Moellmann <gerd@gnu.org>
1650
1651 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
1652 the shell from sh-shell-file.
1653
1654 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
1655
1656 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
1657
1658 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
1659 if one of the files specified cannot be accessed by
1660 file-attributes. Do not strip any leading directories from the
1661 file names, to behave more like `ls' does.
1662
1663 * dired.el (dired-get-filename): Handle absolute file names.
1664 (dired-readin-insert): If argument is a cons, don't print
1665 "wildcard" on the ``total'' line.
1666
1667 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
1668
1669 * faces.el (face-read-integer, read-face-attribute)
1670 (color-defined-p, color-values): Allow color values unspecified-fg
1671 and unspecified-bg, handle them as unspecified.
1672
1673 1999-12-15 Carsten Dominik <dominik@astro.uva.nl>
1674
1675 * textmodes/reftex.el: (reftex-compile-variables): respect new
1676 structure of `reftex-index-macro'
1677 (reftex-compile-variables): Use the changed structure of
1678 `reftex-label-alist'.
1679
1680 * textmodes/reftex-vars.el (reftex-index-math-format,
1681 (reftex-toc-max-level): New option.
1682 reftex-index-phrases-search-whole-words,
1683 reftex-index-phrases-case-fold-search,
1684 reftex-index-phrases-skip-indexed-matches,
1685 reftex-index-phrases-wrap-long-lines,
1686 reftex-index-phrases-sort-prefers-entry,
1687 reftex-index-phrases-sort-in-blocks): New options.
1688 (reftex-index-macros): Option structure changed.
1689 (reftex-index-macros-builtin): Added `repeat' item to each entry.
1690 (reftex-label-alist): Additional item in each entry to specify if
1691 the environment should be listed in the TOC.
1692 (eval-when-compile (require 'cl)) added.
1693
1694 * textmodes/reftex-index.el (reftex-index-selection-or-word): No
1695 longer deals with "repeat".
1696 (reftex-index): "repeat property in `reftex-index-macro-alist' is
1697 now used.
1698 (reftex-index-phrases-comment-regexp,
1699 reftex-index-phrases-macrodef-regexp,
1700 reftex-index-phrases-phrase-regexp1,
1701 reftex-index-phrases-phrase-regexp2,
1702 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
1703 New constants.
1704 (reftex-index-phrases-macro-data, reftex-index-phrases-files,
1705 reftex-index-phrases-font-lock-keywords,
1706 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
1707 reftex-index-phrases-restrict-file): New variables.
1708 (reftex-index-phrase-selection-or-word,
1709 reftex-index-visit-phrases-buffer,
1710 reftex-index-initialize-phrases-buffer,
1711 reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
1712 reftex-index-next-phrase, reftex-index-this-phrase,
1713 reftex-index-all-phrases, reftex-index-region-phrases,
1714 reftex-index-phrases-parse-header,
1715 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
1716 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
1717 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
1718 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
1719 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
1720 reftex-index-make-replace-string,
1721 reftex-query-index-phrase-globally, reftex-query-index-phrase,
1722 reftex-index-phrase-match-is-indexed,
1723 reftex-index-phrases-fixup-line,
1724 reftex-index-phrases-replace-space,
1725 reftex-index-select-phrases-macro): New functions.
1726 (reftex-index-globalize, reftex-index-globally): functions removed
1727 (eval-when-compile (require 'cl)) added.
1728
1729 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
1730 for max level.
1731 (reftex-toc-max-level-indicator): New variable.
1732 (reftex-toc-max-level): New command.
1733 (reftex-toc-map): New keybinding `t'.
1734 (reftex-toc-help): Constant updated.
1735 (eval-when-compile (require 'cl)) added.
1736
1737 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
1738 `t' command key can change `reftex-toc-max-level'
1739 (eval-when-compile (require 'cl)) added.
1740
1741 * textmode/reftex-sel (reftex-insert-docstruct): Respect
1742 `reftex-toc-max-level'
1743 (eval-when-compile (require 'cl)) added.
1744
1745 * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
1746 added.
1747
1748 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
1749 added.
1750
1751 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
1752 commands.
1753 (reftex-citation, reftex-do-citation,
1754 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
1755 preselect a citation format.
1756 (eval-when-compile (require 'cl)) added.
1757
1758 * textmodes/reftex-parse.el (reftex-context-substring): Optional
1759 parameter to-end
1760 (reftex-section-info): Deal with environment matches.
1761 (eval-when-compile (require 'cl)) added.
1762
1763 * reftex-global.el (eval-when-compile (require 'cl)) added.
1764
1765 1999-12-15 Kenichi Handa <handa@etl.go.jp>
1766
1767 The following changes are for the new composition mechanism. We
1768 have deleted `composition' charset and composite characters,
1769 instead introduced a special text property `composition'.
1770
1771 * composite.el: New file.
1772
1773 * ps-mule.el: Define encode-composition-rule and find-composition
1774 for Emacs 20.4 and the earlier versions.
1775 (ps-mule-init-external-library): Just require a feature for
1776 external libraries.
1777 (ps-mule-prologue): Postscript code modified for new composition.
1778 (ps-mule-find-wrappoint): New arg COMPOSITION.
1779 (ps-mule-plot-string): Delete code for composite characaters.
1780 (ps-mule-plot-composition): New funcion.
1781 (ps-mule-prepare-font-for-components): New function.
1782 (ps-mule-plot-components): New function.
1783 (ps-mule-composition-prologue-generated): Renamed from
1784 ps-mule-cmpchar-prologue-generated.
1785 (ps-mule-composition-prologue): New named from
1786 ps-mule-cmpchar-prologue. Modified for new composition.
1787 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
1788 ps-mule-prepare-cmpchar-font): Deleted.
1789 (ps-mule-string-encoding): New arg NO-SETFONT.
1790 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
1791 check Composing, not Cmpchar
1792 (ps-mule-initialize): Set ps-mule-composition-prologue-generated
1793 to nil.
1794 (ps-mule-begin-job): Check existence of new composition.
1795
1796 * ps-print.el (ps-plot-region): Handle new composition.
1797
1798 * simple.el (what-cursor-position): Show "(composed)" if the
1799 character is composed.
1800
1801 * international/characters.el: Fix cateogries of Lao symbols.
1802
1803 * international/fontset.el (vertical-centering-font-regexp): New
1804 variable.
1805
1806 * international/mule.el (mule-version): Updated to 5.0 (AOI).
1807 (mule-version-date): Updated to 1999.12.7.
1808 (with-category-table): New macro.
1809
1810 * international/mule-cmds.el (encode-coding-char): Don't check
1811 composite character.
1812
1813 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
1814 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
1815 x-ctext): Give `composition' property t.
1816
1817 * international/mule-util.el (set-nested-alist): Set BRANCHES (if
1818 non-nil) at the tail of ALIST.
1819 (compose-region, decompose-region, decompse-string,
1820 reference-point-alist, compose-chars): Moved to composite.el.
1821 (compose-chars-component, compose-chars-rule,
1822 decompose-composite-char): Deleted.
1823
1824 * international/quail.el (quail-install-map): New optional arg
1825 NAME.
1826 (quail-get-translation): If DEF is a symbol but not a function,
1827 ignore it.
1828 (quail-start-translation): Put a key sequence undefined in the
1829 translation keymap in unread-command-events, not generated-events.
1830 Return parameterized event (compose-last-chars N) if the input
1831 characters should be composed.
1832 (quail-map-definition): If DEF is t, treat it as nil.
1833 (quail-delete-last-char): Delete the quail region.
1834 (quail-show-translations): Don't show list of translations if the
1835 quail package is deterministic.
1836 (quail-completion-max-depth): New variable.
1837 (quail-completion-1): Pay attention to the above variable. Fix
1838 for the case that a translation is a function.
1839 (quail-map-from-table, quail-map-from-table-1,
1840 quail-map-from-table-2): New functions.
1841 (quail-lookup-map-and-concat): New function
1842
1843 * language/devan-util.el: Mostly rewritten.
1844
1845 * language/lao.el: Register lao-composition-function in
1846 composition-function-table.
1847
1848 * language/lao-util.el: Mostly rewritten.
1849
1850 * language/thai.el: Register thai-composition-function in
1851 composition-function-table.
1852 (thai-tis620): Delete `pre-write-conversion' property.
1853
1854 * language/thai-util.el: (thai-category-table): Make it by
1855 make-category-table.
1856 (thai-composition-pattern): New variable.
1857 (thai-compose-region, thai-compose-string): Use
1858 with-category-table.
1859 (thai-post-read-conversion): Just call thai-compose-region.
1860 (thai-pre-write-conversion): Deleted.
1861 (thai-composition-function): New funciton.
1862
1863 * language/tibet-util.el: Most functions rewritten.
1864 (tibetan-char-p): Renamed from tibetan-char-examin.
1865 (tibetan-composable-examin) (tibetan-complete-char-examin)
1866 (tibetan-vertical-stacking) (tibetan-composition): Deleted.
1867 (tibetan-add-components): New function.
1868 (tibetan-composition-function): New function.
1869
1870 * language/tibetan.el: Register tibetan-composition-function in
1871 composition-function-table.
1872 (tibetan-composable-pattern): New variable.
1873 (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
1874 (tibetan-precomposition-rule-alist): Move punctuations to
1875 tibetan-punctuation-transcription-alist and
1876 tibetan-obsolete-glyphs.
1877 (tibetan-punctuation-transcription-alist): New variable.
1878 (tibetan-obsolete-glyphs): New variable.
1879 (tibetan-regexp): Improve the initialization code.
1880
1881 * textmodes/fill.el (fill-find-break-point): Delete codes for
1882 composite characters.
1883 (fill-region-as-paragraph): Likewise.
1884
1885 1999-12-14 Gerd Moellmann <gerd@gnu.org>
1886
1887 * international/mule-cmds.el (default-input-method): Specify
1888 that it should be set after current-language-environment.
1889
1890 * custom.el (custom-handle-keyword): Add :set-after.
1891 (custom-add-dependencies): New function.
1892 (custom-set-variables): Take dependencies between args into
1893 account.
1894
1895 * battery.el (battery): Doc fix.
1896
1897 1999-12-12 Gerd Moellmann <gerd@gnu.org>
1898
1899 * progmodes/cc-make.el: Removed.
1900
1901 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1902
1903 * Release of cc-mode 5.26
1904
1905 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1906
1907 * cc-cmds.el (c-forward-conditional): Handle an arbitrary
1908 target depth. Optionally count #else lines as clause limits,
1909 as suggested by don provan <provan@lucent.com>. #elif
1910 handling fixed.
1911
1912 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
1913 (c-down-conditional-with-else): New commands that uses the
1914 added functionality in `c-forward-conditional'.
1915
1916 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1917
1918 * cc-align.el (c-lineup-comment): Preserve the alignment with
1919 a comment on the previous line instead of preserving the
1920 comment-column.
1921
1922 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1923
1924 * Fixes to IDL mode after input from Eric Eide
1925 <eeide@cs.utah.edu>:
1926 * cc-engine.el (c-beginning-of-statement-1): Allow
1927 `c-conditional-key' to be nil, for the benefit of IDL mode.
1928 * cc-engine.el (c-guess-basic-syntax): Ditto.
1929 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class'
1930 but do match CORBA 2.3 `valuetype'.
1931 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil
1932 for IDL.
1933 * cc-langs.el (c-IDL-conditional-key): New defconst. Should
1934 be nil for IDL.
1935 * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
1936 Like C++.
1937 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also,
1938 set `c-method-key' and `c-baseclass-key' to nil.
1939
1940 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1941
1942 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
1943 with nonhanging open braces.
1944
1945 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1946
1947 * cc-align.el: Added docstrings to all lineup functions.
1948
1949 * cc-align.el (c-lineup-java-throws): Handle a hanging throws
1950 keyword.
1951
1952 * cc-align.el (c-lineup-C-comments): Handle free form text
1953 comments. Use c-comment-prefix-regexp and comment-start-skip
1954 instead of hardcoded regexps.
1955
1956 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1957
1958 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
1959 behavior and return value as documented.
1960
1961 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1962
1963 * Changes for new style variable init system:
1964 * cc-langs.el (c-common-init): Dito.
1965 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
1966 now customizable.
1967 * cc-vars.el: Style variables may now take a value
1968 'set-from-style to make them take their value from the style
1969 system. This value is now the default on all these variables.
1970 * cc-vars.el (c-valid-offset): New function to verify a
1971 syntactic symbol offset setting.
1972 * cc-vars.el (c-offsets-alist): Variable moved from
1973 cc-styles.el since it's now customizable in a similar way to
1974 the other style variables.
1975 * cc-vars.el (c-old-style-variable-behavior): New variable to
1976 revert to the old style init behavior.
1977
1978 * cc-vars.el (c-file-style, c-file-offsets): Made always
1979 buffer local.
1980
1981 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
1982 the throws clause that might follow the function prototype in
1983 C++.
1984
1985 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1986
1987 * cc-defs.el (c-beginning-of-macro): Fixed bug where point
1988 could move forward for macros that doesn't start in column 0.
1989
1990 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
1991
1992 * cc-align.el (c-indent-multi-line-block,
1993 c-lineup-whitesmith-in-block): Two new lineup functions for
1994 use in whitesmith style.
1995
1996 * cc-styles.el (c-style-alist): More fixes to whitesmith
1997 style. It should now handle all different braces uniformly in
1998 both hanging and non-hanging cases.
1999
2000 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2001
2002 * cc-cmds.el (c-indent-exp): Use a marker to save point to
2003 make it stay in the same position relative to the surrounding
2004 text.
2005
2006 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
2007 when adaptive-fill-mode doesn't manage to get it correct.
2008
2009 * cc-menus.el (cc-imenu-java-generic-expression): Handle types
2010 with dotted notation, e.g. foo.bar.Gnu.
2011
2012 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
2013 within unwind-protect (previously only some were wrapped so it
2014 would be possible to register mode initialization when full
2015 initialization did not finish).
2016
2017 * cc-styles.el (c-style-alist): Corrected the brace placement
2018 in the whitesmith style. Thanks to Sean Luke
2019 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith
2020 styles with consistent brace placement for all constructs.
2021
2022 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2023
2024 * cc-cmds.el (c-context-line-break): Continue C++ comments too
2025 when point is in the middle of them.
2026
2027 * cc-cmds.el: Line breaking and paragraph filling code
2028 rewritten:
2029 (c-guess-fill-prefix): New function that uses various
2030 heuristics to guess the comment prefix.
2031 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
2032 It now assumes adaptive filling is active to preserve the line
2033 prefix inside comments.
2034 (c-indent-new-comment-line): Replacement for the now
2035 obsolete `c-comment-line-break-function' that uses
2036 `c-guess-fill-prefix' when appropriate. It now observes the
2037 setting of `comment-multi-line', which has effect in C-style
2038 block comments.
2039
2040 * cc-cmds.el (c-context-line-break): New function intended to
2041 be put on RET. It's essentially `newline-and-indent', but
2042 continues C block comments with the appropriate line prefix.
2043
2044 * cc-cmds.el (c-do-auto-fill): New function put on
2045 `normal-auto-fill-function' to implement the
2046 `c-ignore-auto-fill' variable.
2047
2048 * cc-cmds.el (c-beginning-of-statement): Use
2049 `c-comment-prefix-regexp' to avoid ending up inside the
2050 comment prefix. Better handling of comment starters and
2051 enders. Catch comments better when traversing code. Stop at
2052 preprocessor directives.
2053
2054 * cc-defs.el (c-forward-comment): New subst to hide platform
2055 dependent quirks in `forward-comment'.
2056
2057 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
2058 argument.
2059 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
2060 arguments. Activate this function by default when
2061 `parse-partial-sexp' supports it (currently Emacs 20.x).
2062
2063 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
2064 on the comment opener to make constants usable as lineup
2065 arguments.
2066
2067 * cc-align.el (c-lineup-C-comments): Fixes to handle the
2068 changed anchor position in the `c' syntactic symbol. Handle
2069 more than stars in the comment prefix; use the new variable
2070 `c-comment-prefix-regexp'. Don't indent text not preceded by
2071 a comment prefix to the right of the comment opener if it's
2072 long.
2073
2074 * cc-langs.el: Fixes to mode initialization for new line
2075 breaking and paragraph filling method. Adaptive fill mode is
2076 now activated at startup instead of deactivated. The
2077 variables used for adaptive filling and paragraph movement are
2078 also changed to incorporate the value of
2079 `c-comment-prefix-regexp'. `substitute-key-definition' is
2080 used to override some functions in the global map instead of
2081 overriding their default bindings.
2082
2083 * cc-mode.el (java-mode): Modify `paragraph-start' for the
2084 javadoc markup at mode init.
2085
2086 * cc-mode.el (c-setup-filladapt): A new convenience function
2087 to configure Kyle E. Jones' Filladapt mode for CC Mode. This
2088 function is intended to be used explicitly by the end user
2089 only.
2090
2091 * cc-vars.el (c-comment-prefix-regexp): New variable used to
2092 recognize the comment fill prefix inside comments.
2093 (c-block-comment-prefix): New name for
2094 `c-comment-contiuation-stars', which is now obsolete. It's
2095 generalized to handle any character sequence.
2096 (c-ignore-auto-fill): New variable used to selectively disable
2097 Auto Fill mode in specific contexts.
2098
2099 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2100
2101 * cc-cmds.el (c-comment-indent): Leave at least one space
2102 between the comment and the last nonblank character in the
2103 case where we look at the indentation of the comment on the
2104 previous line (case 4).
2105
2106 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
2107 list of characters that may start a statement (it's a sort of
2108 prefix operator in Pike, and isn't used at all in any of the
2109 other languages).
2110
2111 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2112
2113 * cc-engine.el (c-guess-basic-syntax): Report brace list opens
2114 inside continued statements as statement-cont instead of
2115 brace-list-open. The reason is that one normally adjusts
2116 brace-list-open for brace lists as top-level constructs, and
2117 brace lists inside statements is a completely different
2118 context. Case 10B.2 changed. Also changed (the somewhat
2119 esoteric) case 9A to cope with this.
2120
2121 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2122
2123 * cc-cmds.el (c-electric-brace): Added electric handling of
2124 the open brace for brace-elseif-brace.
2125
2126 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2127
2128 * cc-defs.el (c-with-syntax-table): New macro to easily switch
2129 syntax tables temporarily.
2130
2131 * cc-engine.el (c-guess-basic-syntax): Handle template and
2132 member init argument lists split over several lines. Case 5D
2133 changed.
2134
2135 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
2136 @throws introduced in Javadoc 1.2.
2137
2138 * cc-menus.el (cc-imenu-java-generic-expression): Applied
2139 patch from RMS to avoid infinite backtracking.
2140
2141 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2142
2143 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
2144 by [ ].
2145
2146 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2147
2148 * cc-align.el (c-lineup-dont-change): Compensate properly for
2149 the column in langelem.
2150
2151 * cc-engine.el (c-syntactic-information-on-region): New
2152 function to help debugging the syntactic analysis.
2153
2154 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2155
2156 * cc-align.el (c-lineup-template-args): Handle nested template
2157 arglists.
2158
2159 * cc-langs.el (c++-template-syntax-table): New syntax table
2160 that makes `<' and `>' parenthesis characters, which is useful
2161 to switch to temporarily when analyzing template arglists.
2162
2163 * cc-styles.el: Changed default alignment of labels in the
2164 java style to conform to the examples in the Java Language
2165 Specification.
2166
2167 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
2168 by default.
2169
2170 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2171
2172 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
2173 immediately before the closing paren in an arglist, so don't
2174 check that in Pike mode. Case 7A changed.
2175
2176 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2177
2178 * cc-cmds.el (c-indent-region): Fixed bug where comment-only
2179 lines were ignored under certain conditions.
2180
2181 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2182
2183 * cc-align.el (c-lineup-template-args): New function for
2184 aligning continued template argument lists.
2185
2186 * cc-engine.el (c-guess-basic-syntax): Fix for member init
2187 lists containing function arglists split over several lines.
2188 Case 5D.1 changed.
2189
2190 * cc-engine.el (c-guess-basic-syntax): Fixed bug where
2191 template-args-cont didn't get recognized when the first
2192 arglist opener line doesn't contain a template argument. New
2193 case 5K.
2194
2195 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2196
2197 * cc-defs.el (c-point): Changed from subst to macro for
2198 efficiency.
2199 (c-beginning-of-defun-1, c-end-of-defun-1): New
2200 beginning-of-defun/end-of-defun wrappers separated from
2201 c-point.
2202
2203 * cc-menus.el (imenu-generic-expression,
2204 imenu-case-fold-search, imenu-progress-message): Dummy
2205 definitions to avoid compiler warnings if imenu can't be
2206 loaded.
2207 * cc-menus.el (cc-imenu-init): New function called at mode
2208 init.
2209 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
2210 imenu initializations to cc-imenu-init.
2211
2212 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2213
2214 * cc-engine.el (c-guess-basic-syntax): Slightly better check
2215 for lambda-intro-cont in Pike mode. Case 6 changed.
2216
2217 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
2218 anything following "new Foo()" was considered an anonymous
2219 class body in Java mode.
2220
2221 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
2222
2223 * cc-cmds.el (c-comment-line-break-function): When breaking in
2224 a string, don't insert a new line.
2225
2226 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
2227
2228 * cc-engine.el (c-at-toplevel-p): New interface function which
2229 returns information useful to add-on authors. It tells you
2230 whether you're at a toplevel statement or not.
2231
2232 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
2233
2234 * cc-cmds.el (c-comment-line-break-function): It is possible
2235 that forward-line does not land us at the bol, say if we're on
2236 the last line in a file. In that case, do a
2237 back-to-indentation instead of a forward-comment -1.
2238
2239 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2240
2241 * cc-engine.el (c-beginning-of-statement-1): Don't catch
2242 "default:" as normal label in case 4.
2243
2244 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2245
2246 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
2247 recognize continued bitfield declarations. Case 5D.1 changed.
2248 * cc-langs.el: New variable c-bitfield-key.
2249 * cc-mode.el: New variable c-bitfield-key.
2250
2251 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2252
2253 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
2254 anonymous array expressions (i.e. "new Foo[] {.. bracelist
2255 ..}").
2256
2257 1999-12-12 Dave Love <fx@gnu.org>
2258
2259 * mail/footnote.el: Require cl when compiling. Don't autoload
2260 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays.
2261 (footnote-insert-text-marker, Footnote-insert-pointer-marker):
2262 Avoid `acons'.
2263 (footnote-mode-line-string, Footnote-add-footnote): Remove
2264 autoload cookie.
2265
2266 1999-12-12 Richard Sharman <rsharman@pobox.com>
2267
2268 * sh-script.el: Fix for when font-lock mode is active.
2269 (sh-font-lock-unfontify-region-function): New function.
2270
2271 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
2272
2273 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
2274 if start-process is not bound, since Ispell now supports such
2275 platforms as well.
2276
2277 1999-12-12 Gerd Moellmann <gerd@gnu.org>
2278
2279 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
2280 rmail-summary-goto-msg.
2281
2282 * files.el (after-find-file): Fix previous change.
2283
2284 1999-12-11 Dave Love <fx@gnu.org>
2285
2286 * help.el (where-is): Use `commandp' as predicate for
2287 `completing-read'
2288
2289 1999-12-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2290
2291 * cus-edit.el (custom-save-delete): Delete all occurrences,
2292 leave point where the first occurrence was.
2293 (custom-save-faces): Insert a newline at the end of the comment.
2294 Avoid a double newline there.
2295 If final closeparen is at bol, put a space before it.
2296 (custom-save-variables): Likewise.
2297 (custom-file): Doc fix.
2298
2299 1999-12-10 Gerd Moellmann <gerd@gnu.org>
2300
2301 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
2302 regexp matching image and audio files.
2303
2304 1999-12-09 Dave Love <fx@gnu.org>
2305
2306 * mail/footnote.el: New file.
2307
2308 1999-12-09 Gerd Moellmann <gerd@gnu.org>
2309
2310 * files.el (after-find-file): Use auto-save-visited-file-name if
2311 set.
2312
2313 * mail/feedmail.el (feedmail-find-eoh): Take
2314 feedmail-queue-alternative-mail-header-separator into account.
2315
2316 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
2317
2318 * smerge-mode.el: New file.
2319
2320 * font-lock.el (font-lock-multiline): New variable.
2321 (font-lock-add-keywords): Rename `major-mode' into `mode'.
2322 (font-lock-remove-keywords): Added a dummy `mode' argument for
2323 potential future support.
2324 (font-lock-fontify-anchored-keywords,
2325 (font-lock-fontify-keywords-region): Only handle multiline strings
2326 if necessary (avoids a pathological behavior in (f.ex) diff-mode).
2327
2328 1999-12-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2329
2330 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
2331
2332 * dired-aux.el (dired-insert-subdir): Add autoload cookie.
2333
2334 1999-12-07 Dave Love <fx@gnu.org>
2335
2336 * help.el (view-emacs-problems): New command, bound to C-h P.
2337
2338 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
2339
2340 1999-12-07 Stefan Monnier <monnier@cs.yale.edu>
2341
2342 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
2343 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
2344 New code to support the minor mode version.
2345 (diff-recenter): New function.
2346 (diff-next-hunk, diff-next-file): Use it.
2347 (diff-remembered-files-alist): New var.
2348 (diff-merge-strings): New function.
2349 (diff-find-file-name): Make it smarter and use the user's input more.
2350 (diff-mode): Cosmetic changes.
2351
2352 * files.el (save-some-buffers): Turn EXITING into the more general
2353 PRED argument to allow specifying a subset of buffers.
2354
2355 * simple.el (kill-region): Use the new `delete-and-extract-region'
2356 rather than the undo log (which is incorrect with *-change-functions).
2357
2358 * font-lock.el (font-lock-default-fontify-region): Fix subtle
2359 off-by-one problem that could force re-fontifying the whole buffer.
2360 (font-lock-remove-keywords): New function.
2361 (font-lock-add-keywords): Use the new function to ensure idempotence.
2362
2363 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu>
2364
2365 * viper-cmd.el (viper-minibuffer-standard-hook,
2366 viper-minibuffer-real-start): Mew functions.
2367 (viper-read-string-with-history,viper-file-add-suffix,
2368 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
2369 change in the status of the minibuffer prompt.
2370
2371 1999-12-06 Gerd Moellmann <gerd@gnu.org>
2372
2373 * comint.el (comint-redirect-results-list)
2374 (comint-redirect-results-list-from-process): Remove interactive
2375 spec.
2376
2377 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2378
2379 * info.el (info-node, info-menu-5, info-xref): Define colors for
2380 Info faces if the display supports them.
2381
2382 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2383
2384 Changes for automatic remapping of X colors on terminal frames:
2385
2386 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
2387 term-setup-hook. Call msdos-remember-default-colors and
2388 msdos-handle-reverse-video.
2389 (msdos-face-setup): Parts of code moved to
2390 msdos-setup-initial-frame.
2391 (msdos-handle-reverse-video): New function, modeled after
2392 x-handle-reverse-video.
2393 (make-msdos-frame): Don't use initial-frame-alist and
2394 default-frame-alist. Call msdos-handle-reverse-video.
2395 (msdos-color-aliases): Remove.
2396 (msdos-color-translate, msdos-approximate-color): Remove.
2397 (msdos-color-values): Use 16-bit RGB values. RGB values updated
2398 for better approximation of X colors.
2399 (msdos-face-setup): Call tty-color-clear. Remove code that sets
2400 up tty-color-alist (it is now on startup.el).
2401 (x-display-color-p, x-color-defined-p, x-color-values,
2402 x-defined-colors, face-color-supported-p, face-color-gray-p):
2403 Remove.
2404
2405 * facemenu.el (facemenu-read-color, list-colors-display): Use
2406 defined-colors for all frame types.
2407 (facemenu-color-equal): Use color-values for all frame types.
2408
2409 * faces.el (read-face-attribute): For :foreground and :background
2410 attributes and frames on character terminals, translate the color
2411 to the closest supported one before looking it up in the list of
2412 valid values.
2413 (face-valid-attribute-values): Call defined-colors for all types
2414 of frames.
2415 (defined-colors, color-defined-p, color-values, display-color-p):
2416 New finctions.
2417 (x-defined-colors, x-color-defined-p, x-color-values,
2418 x-display-color-p): Aliases for the above.
2419
2420 * startup.el (command-line): Register terminal colors for frame
2421 types other than x and w32, but only if the terminal supports
2422 colors. Call tty-color-define instead of face-register-tty-color.
2423
2424 * term/x-win.el (xw-defined-colors): Renamed from
2425 x-defined-colors.
2426 * term/w32-win.el (xw-defined-colors): Likewise.
2427
2428 * term/tty-colors.el: New file.
2429 * loadup.el: Load term/tty-colors.
2430
2431 1999-12-06 Dave Love <fx@gnu.org>
2432
2433 * ffap.el: Autoload the ffap alias directly.
2434
2435 1999-12-06 Inge Frick <inge@nada.kth.se>
2436
2437 * dired-aux.el (dired-do-shell-command): Changed documentation.
2438 (dired-shell-stuff-it): A `?' in COMMAND has now the same
2439 meaning as `*'.
2440
2441 1999-12-06 Gerd Moellmann <gerd@gnu.org>
2442
2443 * simple.el (insert-buffer): Doc fix.
2444
2445 * apropos.el (apropos-mode): Add autoload cookie.
2446
2447 1999-12-06 Sam Steingold <sds@goems.com>
2448
2449 * progmodes/etags.el (etags-tags-completion-table): Modified the
2450 regexp to allow for the CL symbols starting with `+*'.
2451 (tags-completion-table): Doc fix (it's an obarray, not an alist).
2452 (tags-completion-table, tags-recognize-empty-tags-table): Remove
2453 `function' quoting lambda.
2454 (tags-with-face): New macro.
2455 (list-tags, tags-apropos): Use it.
2456 (tags-apropos-additional-actions): New user option.
2457 (etags-tags-apropos-additional): Use it.
2458 (tags-apropos): Call etags-tags-apropos-additional.
2459 (tags-apropos-verbose): New user option.
2460 (etags-tags-apropos): Use it.
2461 (visit-tags-table-buffer, next-file): Use `unless'.
2462 (recognize-empty-tags-table): Renamed to
2463 tags-recognize-empty-tags-table.
2464 (complete-tag): Call tags-complete-tag bypassing try-completion.
2465
2466 1999-12-06 Kenichi Handa <handa@etl.go.jp>
2467
2468 * international/mule.el (set-buffer-file-coding-system): Docstring
2469 modified.
2470
2471 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
2472
2473 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
2474 using the hideshow package.
2475 (hs-special-modes-alist): Added entry for bibtex to allow the use
2476 of the hideshow package.
2477 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
2478 not longer provided by bibtex.el directly. Instead the hideshow
2479 package should be used.
2480 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
2481 references to bibtex-hide-entry-bodies.
2482
2483 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
2484
2485 * textmodes/bibtex.el: Copyright notice is up to date. Moved
2486 maintainer information closer to the beginning of the bibtex.el
2487 file.
2488 (bibtex-maintainer-salutation): New constant.
2489 (bibtex-version): New constant.
2490 (bibtex-submit-bug-report): Use bibtex-version and
2491 bibtex-maintainer-salutation.
2492 (bibtex-entry-field-alist): Made booktitle field optional for
2493 @inproceedings entries when crossreferenced.
2494 (bibtex-entry-field-alist): Added booktitle field to proceedings
2495 entry type (for cross referencing). Thanks to Wagner Toledo Correa
2496 for the suggestion.
2497 (bibtex-string-file-path): Fixed typo.
2498
2499 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
2500
2501 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
2502 for reftex.el.
2503 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
2504 to menu.
2505
2506 1999-12-04 Dave Love <fx@gnu.org>
2507
2508 * delsel.el: Revert previous change -- region is significant to
2509 skeleton.
2510
2511 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu>
2512
2513 * viper-cmd.el (viper-change-state): Use
2514 viper-ESC-moves-cursor-back to decide whether to move the cursor
2515 back.
2516
2517 1999-12-03 Kenichi Handa <handa@mule.m17n.org>
2518
2519 * international/mule-util.el (truncate-string-to-width): Docsting
2520 fixed.
2521
2522 1999-12-02 Stefan Monnier <monnier@cs.yale.edu>
2523
2524 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
2525 use of `cond'.
2526 (lm-with-file): Move all the find-file...kill-buffer stuff into
2527 this macro. Make it use `find-file-noselect' and make it kill
2528 the buffer only if it wasn't already displayed somewhere.
2529 (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
2530 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
2531 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
2532 (lm-commentary): Fix to handle the case when the change log is
2533 at the end of the file.
2534
2535 1999-12-02 Kenichi Handa <handa@etl.go.jp>
2536
2537 * international/mule.el (charsetp): Fix typo in docstring.
2538
2539 * international/mule-diag.el (list-coding-categories): Fix typo;
2540 automatic -> autoload.
2541
2542 1999-12-02 Gerd Moellmann <gerd@gnu.org>
2543
2544 * vc.el (vc-update-change-log): Look for rcs2log under
2545 exec-directory.
2546
2547 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
2548 outline-regexp, add outline-level.
2549 (lisp-outline-level): New.
2550
2551 * calendar/appt.el (appt-convert-time): Handle "12:MMam",
2552 remove extraneous string-match.
2553
2554 * finder.el (finder-commentary): Activate Finder mode.
2555
2556 1999-12-01 Anders Lindgren <andersl@andersl.com>
2557
2558 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
2559 off when reverting buffers that contained mode specifiers.
2560 `revert-buffer' is now called with non-nil PRESERVE-MODES
2561 argument.
2562
2563 1999-12-01 Dave Love <fx@gnu.org>
2564
2565 * delsel.el: Grok skeleton-pair-insert-maybe.
2566
2567 1999-11-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2568
2569 * progmodes/cperl-mode.el (cperl-under-as-char):
2570 Use nil as default.
2571
2572 1999-11-30 Gerd Moellmann <gerd@gnu.org>
2573
2574 * speedbar.el (toplevel): Remove compatibility code for Emacs
2575 versions without custom.el.
2576
2577 1999-11-30 Dave Love <fx@gnu.org>
2578
2579 * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
2580
2581 * autoinsert.el: Minor doc fixes.
2582 (auto-insert): Return nil.
2583
2584 * faces.el (set-face-documentation): Purecopy STRING.
2585
2586 1999-11-29 Dave Love <fx@gnu.org>
2587
2588 * derived.el: Doc fixes, remove old backquote syntax.
2589
2590 * cus-edit.el (custom-save-variables, custom-save-faces): Write a
2591 comment warning about editing.
2592
2593 * help.el (help-mode-hook): Define.
2594
2595 1999-11-29 Gerd Moellmann <gerd@gnu.org>
2596
2597 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
2598 invalid translation of old-style backquote syntax to new syntax.
2599
2600 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
2601
2602 * Makefile (DONTCOMPILE): Add term/internal.el.
2603
2604 1999-11-26 Dave Love <fx@gnu.org>
2605
2606 * comint.el: Fix last change.
2607
2608 * emacs-lisp/advice.el: Fix last change.
2609
2610 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2611
2612 * cus-edit.el (Custom-reset-standard): Doc fix.
2613 (custom-variable-reset-standard): Doc fix.
2614 (custom-face-reset-standard): Doc fix.
2615 (custom-face-menu): "Reset to Standard" => "Erase Customization".
2616 (custom-variable-menu): Likewise.
2617 (custom-reset-menu): Likewise.
2618 (custom-buffer-create-internal): Likewise.
2619
2620 1999-11-26 Dave Love <fx@gnu.org>
2621
2622 * progmodes/make-mode.el (makefile-mode-hook): Customize.
2623
2624 * font-lock.el: Doc fixes.
2625
2626 * menu-bar.el (menu-bar-mode): Customize.
2627
2628 * cus-start.el: Add use-dialog-box.
2629
2630 * add-log.el (change-log-mode-hook): Customize.
2631 (add-log-current-defun): Use
2632 fortran-{beginning,end}-of-subprogram.
2633
2634 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2635
2636 * emacs-lisp/advice.el: Many doc fixes.
2637
2638 * comint.el (comint-preoutput-filter-functions): Doc fix.
2639
2640 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2641
2642 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
2643 Improve messages for capitalization of arg names,
2644 for flag variables, for t and nil, for imperatives.
2645 Call them imperatives rather than infinitives sans "to".
2646 (checkdoc-common-verbs-wrong-voice): Add "moves".
2647 (checkdoc-message-text-engine): Improve messages for y-or-n-p.
2648
2649 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
2650 Don't convert comments from 3-semicolon to 2-semicolon.
2651 That is a matter of style.
2652 (checkdoc-triple-semi-comment-check-flag): Variable deleted.
2653 (checkdoc-comments): Don't bind that variable.
2654
2655 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2656
2657 * files.el (write-file-hooks): Doc fix.
2658
2659 1999-11-26 Gerd Moellmann <gerd@gnu.org>
2660
2661 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
2662
2663 1999-11-25 Dave Love <fx@gnu.org>
2664
2665 * hippie-exp.el: Require comint when compiling.
2666 (hippie-expand): Add :links.
2667 (hippie-expand-try-functions-list): Customize.
2668
2669 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
2670
2671 * viper*el: Replaced old-style backquotes.
2672
2673 * ediff*el: Replaced old-style backquotes.
2674
2675 * ediff-merge
2676 (ediff-looks-like-combined-merge,ediff-get-combined-region):
2677 Changed to support the new format for ediff-combination-pattern.
2678
2679 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
2680 Changed to support the new format for ediff-combination-pattern.
2681
2682 1999-11-24 Dave Love <fx@gnu.org>
2683
2684 * custom.el (custom-declare-group): Purecopy DOC.
2685 (custom-handle-keyword): Purecopy VALUE.
2686 (custom-add-link): Purecopy WIDGET.
2687 (custom-add-version): Purecopy VERSION.
2688 (custom-add-load): Purecopy LOAD.
2689
2690 * cus-face.el (custom-declare-face): Purecopy DOC.
2691
2692 * info.el:
2693 (Info-build-node-completions, Info-search, Info-follow-reference)
2694 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
2695 (Info-find-emacs-command-nodes): Avoid properties on matched text
2696 which may appear in minibuffer.
2697
2698 1999-11-24 Gerd Moellmann <gerd@gnu.org>
2699
2700 * locate.el (locate-with-filter): Doc fix.
2701
2702 1999-11-24 Alex Schroeder <alex@gnu.org>
2703
2704 * sql.el (sql-find-sqli-buffer): New function.
2705 (sql-set-sqli-buffer-generally): New function.
2706 (sql-set-sqli-buffer): Better checking of new-buffer.
2707 (sql-copy-column): Add comma after INTO clause, too.
2708
2709 1999-11-24 Alex Schroeder <alex@gnu.org>
2710
2711 * sql.el (sql-imenu-generic-expression): New, used to set
2712 imenu-generic-expression.
2713
2714 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
2715 setting font-lock-defaults' SYNTAX-ALIST. Set
2716 imenu-generic-expression, imenu-case-fold-search, and
2717 imenu-syntax-alist.
2718
2719 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
2720 and 46 when setting font-lock-defaults' SYNTAX-ALIST.
2721
2722 1999-11-23 Andrew Innes <andrewi@gnu.org>
2723
2724 * w32-win.el (w32-drag-n-drop): Load files in current window, if
2725 drop coords aren't over a specific window.
2726
2727 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2728
2729 * ps-print.el: Define mule funs without checking if mule package is
2730 loaded.
2731 (ps-print-version): New version number (5.0.1).
2732 (ps-header-dirpart): Now uses abbreviate-file-name.
2733
2734 1999-11-23 Dave Love <fx@gnu.org>
2735
2736 * progmodes/fortran.el (fortran-comment-line-start): Renamed from
2737 comment-line-start.
2738 (fortran-comment-line-start-skip): Renamed from
2739 comment-line-start-skip.
2740 (fortran-mode-map): Use renamed functions. Add manual and custom
2741 entries to menu.
2742 (fortran-mode-hook): Customize.
2743 (fortran-comment-indent-function): Renamed from
2744 fortran-comment-hook.
2745 (delete-horizontal-regexp): Function deleted.
2746 (fortran-electric-line-number): Simplified.
2747 (fortran-beginning-of-subprogram): Renamed from
2748 beginning-of-fortran-subprogram.
2749 (fortran-end-of-subprogram): Renamed from
2750 end-of-fortran-subprogram.
2751 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
2752 (fortran-previous-statement, fortran-next-statement): Simplified.
2753 (fortran-blink-match): New function.
2754 (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
2755 (fortran-indent-to-column): Don't use delete-horizontal-regexp.
2756 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
2757 line-end-position.
2758 (fortran-fill): No longer interactive. Simplified.
2759 (fortran-break-line): Simplified.
2760 (fortran-analyze-file-format): Use char-after, not looking-at.
2761
2762 * emacs-lisp/find-func.el (find-function-regexp): Use
2763 `define-minor-mode' after easy-menu change.
2764
2765 1999-11-23 Gerd Moellmann <gerd@gnu.org>
2766
2767 * comint.el: Add redirection.from active comint buffers into
2768 another buffer. Written by Peter Breton.
2769
2770 1999-11-23 Stefan Monnier <monnier@cs.yale.edu>
2771
2772 * emacs-lisp/autoload.el (make-autoload): Recognize the new
2773 `define-minor-mode'.
2774 (define-minor-mode): Specify `doc-string-elt'.
2775
2776 * emacs-lisp/easy-mmode.el: Changed maintainer.
2777 (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
2778 Use defcustom for the hooks; Improve the auto-generated docstrings.
2779 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
2780 (define-minor-mode): Add BODY arg; Only declare the keymap if
2781 provided; Improve the auto-generated docstrings.
2782
2783 1999-11-22 Gerd Moellmann <gerd@gnu.org>
2784
2785 * textmodes/text-mode.el (text-mode): Construct paragraph-start so
2786 that the leading `^' is at the start. This is necessary because
2787 paragraphs.el tries to remove anchors, but can find them only if
2788 they are the first character.
2789
2790 * progmodes/antlr-mode.el: New file.
2791
2792 * calendar/calendar.el: Fix autoload for
2793 calendar-absolute-from-astro. Add autoload for
2794 calendar-print-astro-day-number.
2795
2796 1999-11-21 Anders Lindgren <andersl@andersl.com>
2797
2798 * follow.el: Use modern backquote syntax. Minor comment update.
2799
2800 1999-11-21 Gerd Moellmann <gerd@gnu.org>
2801
2802 * simple.el (with-syntax-table): Don't switch buffers.
2803
2804 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
2805 progmodes/hideif.el: Use new backquote syntax.
2806
2807 1999-11-21 Ken Manheimer <klm@python.org>
2808
2809 * icomplete.el (icomplete-completions): Use an explicit variable
2810 `icomplete-prospects-length', obviating the need to use an
2811 apparently faulty throw/catch arrangement.
2812
2813 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
2814
2815 * term/internal.el (IT-display-table-setup): Don't overstep
2816 character code 255.
2817
2818 1999-11-20 Kenichi Handa <handa@mule.m17n.org>
2819
2820 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
2821 for the charset chinese-sisheng is 7bit encoding, not 8bit.
2822
2823 1999-11-19 Stefan Monnier <monnier@cs.yale.edu>
2824
2825 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
2826 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
2827
2828 * files.el (auto-mode-alist): Add patterns for diff-mode.
2829
2830 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
2831 to detect an empty prompt.
2832
2833 1999-11-18 Dave Love <fx@gnu.org>
2834
2835 * simple.el (input-mode-8-bit): Fix the customization.
2836
2837 1999-11-18 Gerd Moellmann <gerd@gnu.org>
2838
2839 * international/iso-acc.el (iso-languages): Add more
2840 characters for Portuguese.
2841
2842 * speedbar.el: Clean up comment at the start of the file.
2843 Remove RCS id.
2844
2845 * progmodes/compile.el (compilation-parse-errors): Use
2846 compilation-buffer-p instead of testing major-mode.
2847
2848 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk>
2849
2850 * quickurl.el Added defcustom of quickurl-completion-ignore-case.
2851 (quickurl-ask): completion-ignore-case is set to the value of
2852 quickurl-completion-ignore-case for the duration of the call to
2853 completing-read.
2854
2855 1999-11-18 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2856
2857 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
2858
2859 1999-11-18 Kenichi Handa <handa@etl.go.jp>
2860
2861 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars
2862 instead of ps-print-def.
2863
2864 * ps-print.el: Require ps-vars instead of ps-print-def.
2865
2866 * ps-mule.el: Require ps-vars instead of ps-print-def.
2867
2868 1999-11-17 Gerd Moellmann <gerd@gnu.org>
2869
2870 * simple.el (with-syntax-table): Save buffer explicitly instead of
2871 using save-excursion.
2872
2873 1999-11-16 Gerd Moellmann <gerd@gnu.org>
2874
2875 * mail/supercite.el: New maintainer.
2876
2877 1999-11-16 Reto Zimmermann <reto@synopsys.com>
2878
2879 * progmodes/vhdl-mode.el: Use new backquote syntax.
2880
2881 1999-11-16 Gerd Moellmann <gerd@gnu.org>
2882
2883 * simple.el (with-syntax-table): New.
2884
2885 1999-11-15 Sam Steingold <sds@ksp.com>
2886
2887 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
2888
2889 1999-02-22 Sam Steingold <sds@goems.com>
2890
2891 * goto-addr.el (goto-address-at-mouse,
2892 goto-address-find-address-at-point): Use compose-mail.
2893 (goto-address-mail-method): Removed variable.
2894 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
2895 goto-address-send-using-mail): Removed functions.
2896
2897 1998-11-03 Sam Steingold <sds@goems.com>
2898
2899 * simple.el (backward-delete-char-untabify):
2900 backward-delete-char-untabify-method can be `all' now - to delete
2901 hungrily including newlines.
2902
2903 1999-11-15 Sam Steingold <sds@ksp.com>
2904
2905 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
2906
2907 1999-11-15 Dave Love <fx@gnu.org>
2908
2909 * cus-edit.el (customize-face, customize-face-other-window):
2910 Require match from completing-read.
2911 (custom-buffer-done-function): Default to custom-bury-buffer, not
2912 bury-buffer.
2913
2914 1999-11-15 Gerd Moellmann <gerd@gnu.org>
2915
2916 * mail/rmail.el, iswitchb.el, hippie-exp.el,
2917 progmodes/cperl-mode.el: Use new backquote syntax.
2918
2919 1998-09-14 Michael Ernst <mernst@alum.mit.edu>
2920
2921 * uniquify.el: Use new backquote syntax.
2922
2923 1999-11-14 Markus Rost <rost@ias.edu>
2924
2925 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
2926 as in ispell-local-dictionary-alist.
2927
2928 1999-11-14 Alex Schroeder <alex@gnu.org>
2929
2930 * ansi-color.el (ansi-color-apply): Updated regexps to include
2931 highlighted face.
2932
2933 1999-01-14 Johan Vromans <jvromans@squirrel.nl>
2934
2935 * forms.el (forms--make-format-elt-using-text-properties):
2936 Treat `intangible' differently.
2937
2938 * forms.el: Use new backquote syntax.
2939
2940 1999-11-13 Gerd Moellmann <gerd@gnu.org>
2941
2942 * textmodes/scribe.el (scribe-mode): Doc-fix.
2943
2944 1999-11-13 Peter Breton <pbreton@ne.mediaone.net>
2945
2946 * net-utils.el (run-network-program, net-utils-run-program): Use
2947 the new backquote syntax.
2948 (smbclient-program, smbclient-program-options)
2949 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
2950 variables
2951 (smbclient, smbclient-list-shares): New functions
2952
2953 1999-11-12 Sam Steingold <sds@ksp.com>
2954
2955 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
2956 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
2957 (viper-kbd-buf-definition, viper-kbd-mode-alist)
2958 (viper-kbd-mode-pair, viper-kbd-mode-definition)
2959 (viper-kbd-global-pair, viper-kbd-global-definition):
2960 Use the new backquote syntax.
2961
2962 * emulation/viper-cmd.el (viper-test-com-defun)
2963 (viper-prefix-arg-value, viper-prefix-arg-com):
2964 Use the new backquote syntax.
2965
2966 * emacs-lisp/debug.el (debugger-env-macro):
2967 Use the new backquote syntax.
2968
2969 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
2970 Use the new backquote syntax.
2971
2972 * calendar/calendar.el (calendar-remove-frame-by-deleting):
2973 New user variable.
2974 (calendar-hide-window): Use it.
2975 (increment-calendar-month, calendar-for-loop, calendar-sum):
2976 Use the new backquote syntax.
2977
2978 1999-11-12 Andrew Innes <andrewi@gnu.org>
2979
2980 * select.el (x-set-selection): Call buffer-substring, not
2981 substring. Also fix docstring
2982
2983 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl>
2984
2985 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
2986 of customizable variables to bug report message. Added
2987 system-type to package name in bug report.
2988
2989 1999-11-12 Gerd Moellmann <gerd@gnu.org>
2990
2991 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
2992 to display file names.
2993
2994 1999-11-11 Gerd Moellmann <gerd@gnu.org>
2995
2996 * mwheel.el: Fix copyright notice, don't require 'cl at run time.
2997
2998 * isearch.el: Add lazy-highlighting feature.
2999
3000 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
3001
3002 * progmodes/ps-mode.el (ps-mode-maintainer-address): New
3003 constant.
3004 (ps-mode-submit-bug-report): New function. Entry added to menu.
3005
3006 1999-11-10 William M. Perry <wmperry@aventail.com>
3007
3008 * mwheel.el: New file to support the new style wheeled mice.
3009
3010 1999-11-10 Gerd Moellmann <gerd@gnu.org>
3011
3012 * startup.el (initial-scratch-message): Add ";;" to the front of
3013 lines in the message.
3014
3015 * files.el (file-local-copy): Remove optional BUFFER argument
3016 because that's not used by anything.
3017
3018 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
3019 to-address.
3020
3021 1999-11-08 Markus Rost <rost@ias.edu>
3022
3023 * wid-edit.el (widget-button-click): Wrap with save-excursion
3024 to restore track-mouse in the correct buffer.
3025
3026 1999-11-08 Gerd Moellmann <gerd@gnu.org>
3027
3028 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
3029
3030 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl>
3031
3032 * progmodes/ps-mode.el (ps-mode-print-function): Changed default
3033 lpr-command to "lp" for some system-types. (copied from lpr.el
3034 Emacs version 20.2.1).
3035
3036 1999-11-04 Markus Rost <rost@ias.edu>
3037
3038 * simple.el (comment-region): Strip off white space at end of
3039 comment-start.
3040
3041 1999-11-04 Gerd Moellmann <gerd@gnu.org>
3042
3043 * faces.el (secondary-selection): Fix wrong color name.
3044
3045 1999-11-04 John Tobey <jtobey@epsilondev.com>
3046
3047 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
3048 the default when invoking perldb in a non-Perl buffer, and other
3049 cases involving -e or --.
3050
3051 1999-11-04 Gerd Moellmann <gerd@gnu.org>
3052
3053 * simple.el (previous-matching-history-element)
3054 (next-history-element): Use delete-field instead of erase-field.
3055
3056 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
3057 Use delete-field instead of erase-field.
3058
3059 * faces.el (secondary-selection): Change background to yellow.
3060
3061 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
3062 find the start of the text. Use field-string to read the user
3063 input.
3064
3065 1999-11-03 Gerd Moellmann <gerd@gnu.org>
3066
3067 * faces.el (make-face-bold, make-face-unbold, make-face-italic)
3068 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
3069 for compatibility with old face implementation.
3070
3071 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
3072 Use erase-field instead of erase-buffer.
3073
3074 * frame.el (blink-cursor-mode, blink-cursor-end): Use
3075 internal-show-cursor with new interface.
3076 (blink-cursor-timer-function): New.
3077 (blink-cursor-start): Use blink-cursor-timer-function.
3078
3079 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
3080
3081 * calendar.el (redraw-calendar): Move to nearest date before
3082 redrawing.
3083
3084 * diary-lib.el (simple-diary-display): Reset modeline even if
3085 there are no diary entries since the diary buffer may be displayed.
3086
3087 1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3088
3089 * emacs-lisp/debug.el (debug): If noninteractive, display the
3090 backtrace using `message', then exit Emacs.
3091 (debugger-batch-max-lines): New variable.
3092 (debugger-setup-buffer): New subroutine, broken out of `debug'.
3093 Change the messages put at the start, to say that the debugger
3094 was entered.
3095
3096 1999-11-02 Sam Steingold <sds@ksp.com>
3097
3098 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
3099
3100 1999-11-01 John Tobey <jtobey@epsilondev.com>
3101
3102 * gud.el: (gud-perldb-massage-args): Massage correctly in the
3103 presence of perl switches other than "-e".
3104
3105 1999-11-01 Markus Rost <rost@ias.edu>
3106
3107 * dired-x.el (dired-smart-shell-command): Use
3108 shell-command-history as in shell-command.
3109
3110 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3111
3112 * userlock.el (ask-user-about-lock): Doc fix.
3113
3114 * frame.el: Doc fixes.
3115
3116 1999-11-01 Gerd Moellmann <gerd@gnu.org>
3117
3118 * frame.el (blink-cursor-mode): Call internal-show-cursor instead
3119 of show-cursor.
3120 (blink-cursor-start, blink-cursor-end): Ditto.
3121
3122 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
3123
3124 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3125
3126 * window.el (walk-windows): If ALL-FRAMES is a frame,
3127 start on that frame. Use save-selected-window.
3128
3129 1999-11-01 Gerd Moellmann <gerd@gnu.org>
3130
3131 * simple.el (end-of-buffer): Use window-end to find the window end
3132 instead of vertical-motion because this handles variable-height
3133 lines correctly.
3134
3135 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu>
3136
3137 * ediff.el: Version change.
3138
3139 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
3140 make sure you are in a good frame before deleting other
3141 windows.
3142 (ediff-file-checked-in-p): Don't consider CVS
3143 files checked in.
3144 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you
3145 are writing to a newly created empty file.
3146
3147 * ediff-mult.el (ediff-show-session-group-hook): New default.
3148
3149 * ediff-vers.el (ediff-pcl-cvs-view-revision):
3150 First cd to the file directory. reportedly works
3151 better with remote files.
3152
3153 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
3154 Use file-name-nondirectory when passing files to CVS.
3155
3156 * ediff-diff.el (ediff-cmp-options): New variable.
3157 (ediff-same-file-contents): Use ediff-cmp-options.
3158
3159 * ediff-ptch.el (ediff-prompt-for-patch-buffer,
3160 ediff-get-patch-buffer): Use current buffer if it appears to be a
3161 patch.
3162
3163 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
3164 C-g
3165
3166 * viper-util.el (viper-nontrivial-find-file-function): Deleted.
3167 (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
3168 (viper-save-cursor-color,viper-restore-cursor-color):
3169 Improved cursor color handling.
3170 (viper-get-saved-cursor-color-in-replace-mode,
3171 viper-get-saved-cursor-color-in-insert-mode): New functions for
3172 better cursor color handling.
3173
3174 * viper-ex.el (ex-read,ex-edit):
3175 Fixes for correct interpretation of #,%.
3176 (viper-ex): Now works correctly when called from other functions.
3177 (viper-glob-function): New variable.
3178 (viper-ex): Save excursion before doing :global.
3179
3180 * viper-mous.el (viper-counting-clicks-p): Bug fixes.
3181
3182 * viper-cmd.el (viper-post-command-sentinel,
3183 viper-insert-state-post-command-sentinel,
3184 viper-insert-state-pre-command-sentinel): Takes better care of
3185 cursor colors.
3186
3187 * viper.el: Version change.
3188
3189 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com>
3190
3191 * whitespace.el (whitespace-update-modeline): Bugfix to ensure
3192 that the modeline display was updated *only* when
3193 `whitespace-display-in-modeline' was set, not otherwise.
3194
3195 1999-10-30 Gerd Moellmann <gerd@gnu.org>
3196
3197 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
3198 "frac12".
3199
3200 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
3201 ad-activate.
3202
3203 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
3204
3205 * whitespace.el: Test for existence of `defcustom' and `defgroup'
3206 using fboundp instead of assuming that these are not present in
3207 particular flavors of emacs.
3208 (whitespace-version): Update to 2.8
3209 (whitespace-display-in-modeline): Add custom variable to control
3210 displaying the whitespace errors on the modeline based on
3211 suggestion from <klaus.berndl@sdm.de>
3212 (whitespace-buffer): Now returns `t' if unclean and `nil' if
3213 clean, to enable using as a hook function, as suggested by Puneet
3214 Goel <puneet@computer.org>
3215 (whitespace-buffer): Fix a subtle bug that cleaned up only if
3216 quiet was not set, even with whitespace-auto-cleanup set.
3217 (whitespace-mode-line): Now uses less modeline real estate and
3218 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
3219 which is present in the file, and <y> is any type of whitespace
3220 whose check has been suppressed by setting
3221 `whitespace-check-<whitespace-type>' to nil.
3222 (whitespace-unchecked-whitespaces): New function to return the
3223 list of whitespaces for whom checks have been suppressed.
3224 (whitespace-display-unchecked-whitespaces): Renamed to
3225 `whitespace-update-modeline' to reflect its functionality.
3226
3227 1999-10-30 Gerd Moellmann <gerd@gnu.org>
3228
3229 * progmodes/compile.el (compilation-error-regexp-alist):
3230 Undo previous change.
3231
3232 1999-10-28 Dave Love <fx@gnu.org>
3233
3234 * help.el (help-follow): Make arg optional again and really
3235 default to point.
3236
3237 1999-10-28 Gerd Moellmann <gerd@gnu.org>
3238
3239 * paths.el (rmail-file-name): Make it an option.
3240
3241 * progmodes/ada-mode.el, progmodes/ada-prj.el,
3242 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
3243 comment fixes.
3244
3245 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
3246 MIPS Pro 7.3 compiler error message syntax.
3247
3248 1999-10-27 Dave Love <fx@gnu.org>
3249
3250 * progmodes/compile.el: Checkdoc-inspired fixes.
3251
3252 1999-10-27 Gerd Moellmann <gerd@gnu.org>
3253
3254 * lpr.el (print-buffer): Doc-string fix.
3255
3256 1999-10-27 Dave Love <fx@gnu.org>
3257
3258 * emacs-lisp/advice.el: Doc fixes.
3259 (ad-lemacs-p): Removed.
3260 (advice): Add :link to defgroup.
3261
3262 1999-10-27 Kenichi Handa <handa@etl.go.jp>
3263
3264 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
3265 last-coding-system-used by the call of ange-ftp-set-ascii-mode.
3266
3267 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3268
3269 * window.el (walk-windows): If ALL-FRAMES is a frame,
3270 start on that frame. Use save-selected-window.
3271
3272 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3273
3274 * emacs-lisp/advice.el (ad-activate-internal): Renamed from
3275 ad-activate. All callers changed, including those in data.c.
3276 (ad-activate-internal-off): Renamed from ad-activate-off.
3277 All uses changed.
3278 (ad-activate): Renamed from ad-activate-on. All uses changed.
3279 (ad-start-advice, ad-stop-advice, ad-recover-normality):
3280 Alter the definition of ad-activate-internal, not ad-activate.
3281
3282 1999-10-26 Gerd Moellmann <gerd@gnu.org>
3283
3284 * startup.el (command-line-1): Add support for command line
3285 arguments `file' and `execute'. Fix handling of `visit'.
3286
3287 1999-10-26 Kenichi Handa <handa@etl.go.jp>
3288
3289 * international/mule-cmds.el (read-input-method-name): Handle the
3290 case that the arg DEFAULT is symbol.
3291
3292 * international/mule-diag.el (mule-diag): Handle the case that
3293 default-input-method is symbol.
3294
3295 1999-10-26 Gerd Moellmann <gerd@gnu.org>
3296
3297 * textmodes/tildify.el: New file.
3298
3299 1999-10-25 Sam Steingold <sds@ksp.com>
3300
3301 * Makefile (compile-files): Fixed the "tr" strings.
3302 (EMACS): Set to ../src/emacs.
3303
3304 1999-10-25 Gerd Moellmann <gerd@gnu.org>
3305
3306 * info.el (Info-build-node-completions): Add '("*") to the
3307 completion list.
3308
3309 1999-10-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3310
3311 * frame.el (auto-raise-mode): When enabling the mode,
3312 immediately raise the selected frame.
3313
3314 * indent.el (indent-region): Doc fix.
3315
3316 * comint.el (comint-output-filter): Make the Comint buffer current
3317 for the comint-preoutput-filter-functions.
3318
3319 * mail/reporter.el: Doc fix.
3320
3321 1999-10-24 Stephen Eglen <stephen@gnu.org>
3322
3323 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
3324 that Octave lisp files can also run under XEmacs 20.
3325 (require 'custom) added so that files can run under Emacs 19.34.
3326
3327 * iswitchb.el (iswitchb-default-keybindings): No need to use
3328 read-kbd-macro in keybindings.
3329
3330 1999-10-23 Dave Love <fx@gnu.org>
3331
3332 * elide-head.el: New file.
3333
3334 1999-10-23 Gerd Moellmann <gerd@gnu.org>
3335
3336 * Makefile (compile-files, backup-compiled-files): New targets.
3337 (bootstrap, bootstrap-clean): Ditto.
3338
3339 1999-10-22 Paul Eggert <eggert@twinsun.com>
3340
3341 * international/mule-cmds.c (locale-language-names):
3342 Use Latin-1 (not Latin-3) for Afrikaans, Galician.
3343 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
3344 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
3345 Use Latin-8 for Welsh.
3346 Use Latin-1 for English if "en" is explicitly specified.
3347 Use Latin-1 for Scots Gaelic, Tagalog.
3348 Use Latin-1 (not Latin-4) for Greenlandic.
3349 Use Latin-1 (not Latin-2) for Albanian.
3350 (locale-preferred-coding-systems, locale-language-names):
3351 Remove generic ISO 8859 locales; locale-charset-language-names now
3352 does this.
3353 (locale-charset-language-names): New variable.
3354 (set-locale-environment): Use language name specified by
3355 locale-charset-language-names if its charsets disagree with the
3356 language name specified by locale-language-names.
3357
3358 1999-10-22 Dave Love <fx@gnu.org>
3359
3360 * make-mode.el: Minor doc fixes.
3361
3362 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
3363
3364 1999-10-21 Dave Love <fx@gnu.org>
3365
3366 * loadup.el: Add latin-8, latin-9.
3367
3368 1999-10-20 Paul Eggert <eggert@twinsun.com>
3369
3370 * disp-table.el (standard-display-european): Remove undocumented
3371 arg AUTO; no longer used by startup.el. Do not attempt to treat
3372 all non-English language environments as coding system names.
3373 Instead, use the downcased language environment name as a coding
3374 system name if it is one; otherwise, use latin-1.
3375
3376 1999-10-20 Gerd Moellmann <gerd@gnu.org>
3377
3378 * dired.el (dired-move-to-filename-regexp): Fix long comment lines
3379 that were split so that part of the comment appeared as Lisp code.
3380
3381 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3382
3383 * ps-bdf.el: Doc fix.
3384
3385 * ps-print-def.el: New file: common definitions for all parts of
3386 ps-print.
3387 (ps-multibyte-buffer): Moved from ps-mule.
3388
3389 * ps-mule.el: File dependence fix.
3390 (ps-multibyte-buffer): Moved to ps-print-def.
3391
3392 * ps-print.el: Doc fix, better customization.
3393 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
3394 (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
3395 (ps-end-file): Doc fix.
3396 (ps-setup, ps-begin-file): Fun fix.
3397 (postscript): New group.
3398 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
3399 (ps-print-prologue-1): Adjust PostScript programming.
3400 (ps-print): Adjust group hierarchy.
3401 (ps-print-n-up, ps-print-zebra, ps-print-background,
3402 ps-print-printer)
3403 (ps-print-page): New subgroups.
3404 (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
3405 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
3406 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
3407 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
3408 (ps-zebra-stripe-height, ps-print-background-image)
3409 (ps-print-background-text, ps-spool-config): Adjust customization.
3410 (dos-ps-printer): Definition eliminated.
3411
3412 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3413
3414 * ps-mule.el: Doc fix, define functions properly if mule package is
3415 loaded or not.
3416 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
3417 mule package is loaded or not.
3418
3419 * ps-print.el: Doc fix, n-up printing.
3420 (ps-print-version): New version number (5.0).
3421 (ps-page-dimensions-database): Added document media.
3422 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
3423 (ps-page-order, ps-printing-region-p): New vars.
3424 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
3425 funs.
3426 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
3427 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
3428 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
3429 (ps-n-up-xstart, ps-n-up-ystart): New macros.
3430 (ps-print-begin-sheet-hook): New hook.
3431 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
3432 const.
3433 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
3434 (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
3435 (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
3436 (ps-count-lines): Changed to defun.
3437 (ps-header-page): Changed to defsubst, fix fun.
3438 (ps-printing-region): Doc fix, adjust programming code.
3439 (ps-output-boolean, ps-background-pages, ps-background-text)
3440 (ps-background-image, ps-background, ps-get-boundingbox): Adjust
3441 programming code.
3442
3443 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3444
3445 * ps-print.el: Doc fix, duplex and setpagedevice configuration.
3446 (ps-print-version): New version number (4.2).
3447 (ps-spool-config, ps-spool-tumble): New vars.
3448 (ps-print-prologue-1): Changed to defconst, adjust PostScript
3449 programming, new PostScript procedure to handle errors.
3450 (ps-print-prologue-2): Changed to defconst.
3451 (ps-print-duplex-feature): New const: duplex and tumble setting.
3452 (ps-setup, ps-begin-file): Fix funs.
3453 (ps-boolean-capitalized): New fun.
3454
3455 1999-10-19 Stefan Monnier <monnier@cs.yale.edu>
3456
3457 * Makefile (dontcompilefiles): Obsoleted.
3458 (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
3459 (EL): Unused.
3460 (temacs): Removed (unused).
3461 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
3462 version of the file (necessary for the update to work properly).
3463 (autoloads): Force the use of `pwd`/loaddefs.el.
3464 (updates); Redefined in terms of other targets to reduce redundancy.
3465 (.el.elc): New default rule, just in case you want it.
3466 (compile): Use a single invocation of Emacs.
3467 (bootstrap-compile); Unneeded.
3468 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
3469
3470 1999-10-19 Dave Love <fx@gnu.org>
3471
3472 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
3473
3474 1999-10-19 Sam Steingold <sds@ksp.com>
3475
3476 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
3477 comply with the comment.
3478
3479 1999-10-19 Gerd Moellmann <gerd@gnu.org>
3480
3481 * autorevert.el (auto-revert-mode): Make auto-revert-mode
3482 permanent-local.
3483
3484 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl>
3485
3486 * progmodes/ps-mode.el (ps-mode-print-function): Fix default
3487 value: \"lpr\" changed to "lpr"
3488 (ps-mode-version): New constant
3489 (ps-mode-show-version): New function, added key in ps-mode-map
3490 (ps-run-messages): Removed
3491 (ps-run-font-lock-keywords-2): New defcustom variable replacing
3492 ps-run-messages. These keywords now include the value of
3493 ps-run-prompt, making its fontification customizable.
3494 (ps-run-init): Removed \\n from docstring, it is now added when
3495 the value is used
3496 (ps-run-font-lock-keywords-1): Added checking for initial ^ in
3497 ps-run-prompt
3498 (ps-mode): Added ps-run-font-lock-keywords-2 to list of
3499 customizable variables in doc-string (its equivalent
3500 ps-run-messages was missing in previous version of the doc-string)
3501 (ps-run-mode): Simplified assignment to font-lock-defaults, using
3502 symbols only
3503
3504 1999-10-19 Alex Schroeder <alex@gnu.org>
3505
3506 * ansi-color.el: Complete rewrite.
3507
3508 1999-10-19 Paul Eggert <eggert@twinsun.com>
3509
3510 Fix bootstrapping problems.
3511 Use the system locale to specify Emacs locale defaults.
3512
3513 * international/mule-cmds.el (global-map):
3514 Do not use backquote, because that makes a bootstrapping
3515 problem if you need to recompile all Lisp files using interpreted code.
3516 * international/mule.el (charset-id, charset-bytes,
3517 charset-dimension, charset-chars, charset-width,
3518 charset-direction, charset-iso-final-char,
3519 charset-iso-graphic-plane, charset-reverse-charset,
3520 charset-short-name, charset-long-name, charset-description,
3521 charset-plist): Likewise.
3522 * subr.el (save-match-data): Likewise.
3523
3524 * international/mule-cmds.el
3525 (set-display-table-and-terminal-coding-system): New function,
3526 containing code migrated out of set-language-environment.
3527 (set-language-environment, set-locale-environment): Use it.
3528 (locale-translation-file-name): Moved here from startup.el.
3529 (locale-language-names, locale-preferred-coding-systems):
3530 New vars.
3531 (locale-name-match, set-locale-environment): New functions.
3532
3533 * language/japan-util.el (setup-japanese-environment-internal):
3534 Prefer japanese-iso-8bit if the system-type is usg-unix-v.
3535
3536 * startup.el (iso-8859-n-locale-regexp): Remove.
3537 (locale-translation-file-name): Move to mule-cmds.el.
3538 (command-line): Move locale-stuff into set-locale-environment.
3539
3540 1999-10-18 Dave Love <fx@gnu.org>
3541
3542 * abbrev.el (add-abbrev, inverse-add-abbrev)
3543 (expand-region-abbrevs): Remove properties from buffer text.
3544
3545 1999-10-17 Gerd Moellmann <gerd@gnu.org>
3546
3547 * iswitchb.el (iswitchb-exhibit): Extract user-input only
3548 from the mini-buffer, without the prompt.
3549
3550 * simple.el (minibuffer-prompt-end): Return the position
3551 after the prompt, not the position of that last character
3552 of the prompt.
3553
3554 1999-10-17 Miles Bader <miles@gnu.org>
3555
3556 * simple.el: Doc fixes.
3557
3558 1999-10-17 Miles Bader <miles@gnu.org>
3559
3560 * simple.el (previous-matching-history-element, next-history-element):
3561 Change to work correctly even if the point is in the prompt.
3562 (choose-completion-string): Likewise.
3563 (minibuffer-prompt-width): New function (compatibility with old subr).
3564
3565 * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
3566 When constraining the final position to the current field,
3567 don't use the ONLY-IN-LINE mode of constrain-to-field.
3568
3569 1999-10-17 Miles Bader <miles@gnu.org>
3570
3571 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
3572 constrain-to-field.
3573 * textmodes/paragraphs.el (forward-sentence): Likewise.
3574
3575 1999-10-17 Miles Bader <miles@gnu.org>
3576
3577 * simple.el (line-move): Use constrain-to-field to avoid
3578 moving into a prompt.
3579 (previous-complete-history-element): Clarify doc string.
3580 (next-complete-history-element): Likewise.
3581 Use field-beginning instead of point-min.
3582 (next-matching-history-element): Use field-beginning and
3583 erase-field instead of point-min and erase-buffer.
3584 * textmodes/paragraphs.el
3585 (forward-paragraph, forward-sentence): Likewise.
3586 (backward-kill-paragraph, backward-kill-sentence): Remove code to
3587 constrain the kill to an field, as the movement commands now
3588 do this.
3589
3590 1999-10-17 Miles Bader <miles@gnu.org>
3591
3592 * simple.el (previous-matching-history-element): Get the
3593 minibuffer input with field-string instead of buffer-string.
3594 (choose-completion-string): Likewise.
3595 (next-history-element): Likewise.
3596 Erase the minibuffer input with erase-field, not erase-buffer.
3597 Use field-beginning to find the beginning of the input.
3598 * textmodes/paragraphs.el (backward-kill-sentence):
3599 Remove minibuffer-prompt hack.
3600 Constrain to any input field.
3601
3602 1999-10-17 Sam Steingold <sds@ksp.com>
3603
3604 * bindings.el (completion-ignored-extensions): Added ".sparcf"
3605 for CMUCL on sparc and ".ufsl" for LispWorks.
3606 (bound-and-true-p): Bugfix: free variable `v'.
3607
3608 1999-10-16 Dave Love <d.love@dl.ac.uk>
3609
3610 * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
3611 (edebug-uninstall-read-eval-functions): Use load-read-function,
3612 avoiding elisp-eval.
3613
3614 1999-10-16 Sam Steingold <sds@ksp.com>
3615
3616 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
3617 instead of `eql'.
3618
3619 1999-10-14 Stefan Monnier <monnier@cs.yale.edu>
3620
3621 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
3622 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
3623 (browse-url-temp-file-list, browse-url-delete-temp-file-list):
3624 * ediff-util.el (ediff-make-temp-file):
3625 * ediff-vers.el (ediff-pcl-cvs-view-revision):
3626 * emerge.el (emerge-make-temp-file):
3627 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
3628 * vc.el (vc-update-change-log):
3629 * mail/mailpost.el (post-mail-send-it):
3630 * mail/metamail.el (metamail-region):
3631 * progmodes/cmacexp.el (c-macro-expansion):
3632 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
3633
3634 1999-10-15 Gerd Moellmann <gerd@gnu.org>
3635
3636 * smtpmail.el (smtpmail-via-smtp): Add support for
3637 automatically appending a domain to RCPT TO: addresses.
3638
3639 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3640
3641 * dired.el (dired-insert-directory): Insert the amount of
3642 free space after the total size.
3643 (dired-free-space-program, dired-free-space-args): New variables.
3644
3645 1999-10-14 Karl Heuer <kwzh@gnu.org>
3646
3647 * mail/rmail.el (rmail-pop-password-error): Add new pattern.
3648
3649 1999-10-14 Dave Love <fx@gnu.org>
3650
3651 * international/characters.el:
3652 * international/fontset.el:
3653 * international/mule-conf.el: Add latin-iso8859-1[45].
3654
3655 * language/european.el: Add Latin-8, Latin-9. Modify some doc
3656 strings.
3657
3658 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
3659 (command-line): Detect Latin-[89] locales.
3660
3661 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
3662
3663 * international/mule-cmds.el (select-safe-coding-system)
3664 (leim-list-header): Avoid the use of strings that start with backslash
3665 newline since lread.c:read1 has a hack to turn those strings into
3666 integer 0 during the loadup.el process.
3667
3668 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
3669
3670 1999-10-13 Dave Love <fx@gnu.org>
3671
3672 * image.el (insert-image): Copy the image spec and add an
3673 intangible property.
3674
3675 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
3676
3677 * help.el (help-xref-interned): Make it also work on variable-only
3678 and function-only symbols.
3679 (help-make-xrefs): Take advantage of the new `help-xref-interned'.
3680 (help-follow): If the point under mouse is not highlighted, try
3681 `help-xref-interned' on the pointed-to symbol anyway.
3682
3683 * info.el (Info-on-current-buffer): New entry point.
3684 (Info-find-node): Split into two for Info-on-current-buffer to
3685 hook into it.
3686 (Info-current-file, Info-set-mode-line, Info-up):
3687 Info-current-file can now be t.
3688 (Info-clone-buffer-hook): Function for `clone-buffer'.
3689 (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
3690 Make `clone-buffer' available in various ways to the user.
3691
3692 1999-10-12 Stefan Monnier <monnier@cs.yale.edu>
3693
3694 * simple.el (shell-command, shell-command-on-region): Use
3695 make-temp-file.
3696 (clone-buffer, clone-process, clone-buffer-hook): New functions.
3697
3698 * subr.el (with-current-buffer): Don't use backquotes to avoid
3699 bootstrapping problems.
3700
3701 * loadup.el (load-path): Add subdirs for bootstrapping.
3702 (docstrings): Ignore errors during bootstrapping.
3703 (args): New `bootstrap' argument (for use in place of `dump').
3704
3705 1999-10-12 Emmanuel Briot <briot@gnat.com>
3706
3707 * ada-stmt.el: Doc-string fixes.
3708
3709 1999-10-12 Gerd Moellmann <gerd@gnu.org>
3710
3711 * recentf.el: New file.
3712
3713 * ps-mode.el: New file.
3714
3715 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
3716 case insensitive.
3717
3718 1999-10-12 Richard Sharman <rsharman@pobox.com>
3719
3720 * sh-script.el: Added support for indenting existing scripts.
3721 (sh-mode-map): Added new bindings.
3722 (sh-mode): Updated mode doc-string for new commands, added
3723 make-local-variable calls, initialize mode-specific variables.
3724 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line
3725 is now a different function.
3726 (sh-header-marker): Changed docstring.
3727 (sh-set-shell): Initialize mode-specific variables.
3728 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
3729 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
3730 Changed these define-skeleton calls to work with user-specified
3731 indentation settings.
3732 (sh-basic-indent-line, sh-blink, sh-calculate-indent)
3733 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
3734 (sh-electric-hash, sh-electric-less, sh-electric-rparen)
3735 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
3736 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
3737 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
3738 (sh-guess-basic-offset, sh-handle-after-case-label)
3739 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
3740 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
3741 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
3742 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
3743 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
3744 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
3745 (sh-handle-this-then, sh-help-string-for-variable)
3746 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
3747 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
3748 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
3749 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
3750 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
3751 (sh-remove-our-text-properties, sh-rescan-buffer)
3752 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
3753 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
3754 (sh-scan-case, sh-search-word, sh-set-char-syntax)
3755 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
3756 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
3757 functions.
3758 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
3759 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
3760 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
3761 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
3762 (sh-var-list): New variables.
3763
3764 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk>
3765
3766 * quickurl.el (quickurl-list-insert): `count-lines' was returning
3767 a value one line to high if the cursor wasn't at the start of a
3768 line. A `beginning-of-line' is now performed before making the
3769 call to `count-lines'.
3770
3771 1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
3772
3773 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
3774
3775 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
3776
3777 * Makefile (setwins): Abstract out the command to find subdirectories
3778 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
3779 (custom-deps, finder-data, autoloads, update-subdirs, updates)
3780 (autoloads-with-other-emacs): Use it.
3781
3782 * diff-mode.el: New file. A mode for viewing/editing context diffs.
3783
3784 1999-10-09 Gerd Moellmann <gerd@gnu.org>
3785
3786 * Makefile (bootstrap-compile): New target. Compile Lisp
3787 files with ../src/temacs.
3788
3789 1999-10-08 Dave Love <fx@gnu.org>
3790
3791 * ange-ftp.el: Require dired when compiling.
3792 (ange-ftp-normal-login): Allow EFS-style port specification.
3793
3794 1999-10-08 Simon Marshall <simon@gnu.org>
3795
3796 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
3797 (regexp-opt-group): Use it to get common suffixes in STRINGS.
3798 If STRINGS is nil, return "" rather than nil.
3799
3800 1999-10-08 Gerd Moellmann <gerd@gnu.org>
3801
3802 * Makefile (compile): Compile files one by one. Set load-path to
3803 current directory and subdirectories when compiling.
3804
3805 1999-10-08 Gerd Moellmann <gerd@gnu.org>
3806
3807 * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
3808 (emacs): Use it everywhere instead of EMACS.
3809 (compile): New target. Compile all Lisp files from scratch.
3810 (recompile): New target. Recompile lisp directory.
3811 (autoloads-with-other-emacs): New target. Build loaddefs.el with
3812 an Emacs executable not built in the current directory tree.
3813
3814 1999-10-07 Peter Breton <pbreton@ne.mediaone.net>
3815
3816 * filecache.el (file-cache-completion-ignore-case): New variable,
3817 defaulting to the value of completion-ignore-case.
3818 (file-cache-minibuffer-complete): Use it.
3819 (file-cache-files-matching, file-cache-files-matching-internal):
3820 New functions.
3821
3822 1999-10-07 Emmanuel Briot <briot@gnat.com>
3823
3824 * ada-xref.el: New file
3825
3826 * ada-prj.el: New file
3827
3828 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
3829
3830 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
3831 subprogram being created.
3832
3833 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
3834 ada-indent-newline-indent): Rewritten to support the new indentation
3835 scheme
3836
3837 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
3838 New functions
3839
3840 * ada-mode.el (ada-fill-comment-paragraph): Add support for the
3841 justification parameter
3842
3843 * ada-mode.el (ada-make-body, ada-gen-treat-proc,
3844 ada-make-subprogram-body): Rewritten to benefit from the gnatstub
3845 external program
3846
3847 1999-10-07 Dave Love <fx@gnu.org>
3848
3849 * bindings.el (bound-and-true-p): New macro.
3850 (make-mode-line-mouse-sensitive): Don't require easymenu.
3851
3852 1999-10-07 Gerd Moellmann <gerd@gnu.org>
3853
3854 * custom.el (defface): Extend documentation for new values of
3855 `type'.
3856
3857 * faces.el (face-spec-set-match-display): Recognize `type' of
3858 `motif', `lucid', `x-toolkit'.
3859 (menu): New face.
3860
3861 1999-10-05 Dave Love <fx@gnu.org>
3862
3863 * files.el: Recognize temporary crontab files.
3864
3865 * info.el: Require jka-compr when compiling.
3866 (Info-suffix-list): Add bzip2 files (non-ms-dos only).
3867
3868 1999-10-04 Dave Love <fx@gnu.org>
3869
3870 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
3871 scroll-up-aggressively, scroll-down-aggressively.
3872
3873 * time.el (display-time-mode): Add autoload cookie.
3874
3875 * rect.el (delete-extract-rectangle): Doc fix from verna.
3876
3877 * help-macro.el (three-step-help): Customize.
3878
3879 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3880
3881 * hexl.el (hexlify-buffer): Move point in proper range
3882 if it is too large.
3883 (hexl-after-revert-hook): Update hexl-max-address.
3884 (hexl-address-to-marker): Doc fix.
3885
3886 1999-10-03 Dave Love <fx@gnu.org>
3887
3888 * image.el (defimage): Remove redundant code. Substitute file in
3889 image plist.
3890
3891 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
3892
3893 * vc.el (vc-backend-checkout): Use coding system 'no-conversion
3894 when doing with-temp-file.
3895
3896 1999-10-01 Dave Love <fx@gnu.org>
3897
3898 * cus-edit.el (custom-comment-create): Fill :from and :to slots.
3899
3900 * help.el: Require view when compiling.
3901 (view-emacs-FAQ): Use Info version.
3902
3903 1999-09-29 Ken'ichi Handa <handa@gnu.org>
3904
3905 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
3906 (normat->normal). Use correct font names for Korean
3907 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
3908
3909 1999-09-29 Kenichi Handa <handa@etl.go.jp>
3910
3911 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
3912 code not used by KOI8 to the same 8-bit code instead of mapping to
3913 SPC.
3914 (cyrillic-alternativnyj-decode-table): Likewise.
3915
3916 1999-09-29 Alex Schroeder <alex@gnu.org>
3917
3918 * sql.el (sql-imenu-generic-expression): Aew, used to set
3919 imenu-generic-expression.
3920 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
3921 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression,
3922 imenu-case-fold-search, and imenu-syntax-alist.
3923 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
3924 setting font-lock-defaults' SYNTAX-ALIST.
3925
3926 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3927
3928 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
3929 macro, try again.
3930
3931 1999-09-28 Dave Love <fx@gnu.org>
3932
3933 * cus-edit.el (custom-comment): Change widget definition.
3934 (custom-comment-create, custom-comment-show)
3935 (custom-comment-invisible-p): Don't use :comment-overlay.
3936 (custom-comment-hide): New function.
3937 (custom-variable-set, custom-variable-save)
3938 (custom-variable-reset-standard, custom-face-set)
3939 (custom-face-save): Use it.
3940
3941 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3942
3943 * hexl.el (hexl-mode): Do nothing if already in hexl mode.
3944
3945 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3946
3947 * faces.el (region): Doc fix.
3948
3949 1999-09-27 Dave Love <fx@gnu.org>
3950
3951 * isearch.el (isearch): Add :links in defgroup.
3952 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
3953 (isearch-switch-frame-handler): Comment out (unused).
3954 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
3955 (isearch-ring-retreat-edit): Doc fix.
3956 (isearch-mouse-yank): New command.
3957 (isearch-last-command-char): Removed. Callers changed to use
3958 last-command-char.
3959 (isearch-char-to-string): Removed. Callers changed to use
3960 char-to-string.
3961
3962 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
3963
3964 * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
3965 option for Russian.
3966
3967 1999-09-25 Gerd Moellmann <gerd@gnu.org>
3968
3969 * faces.el (face-differs-from-default-p): Compare face
3970 attributes individually.
3971
3972 * image.el (put-image, insert-image): Add string argument.
3973
3974 1999-09-24 Gerd Moellmann <gerd@gnu.org>
3975
3976 * ange-ftp.el (ange-ftp-date-regexp): Make it work for
3977 LANG=de_DE.iso88591 on HPUX 11.0.
3978
3979 * dired.el (dired-move-to-filename-regexp): Make it work
3980 for LANG=de_DE.iso88591 on HPUX 11.0.
3981
3982 1999-09-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3983
3984 * info.el (info-initialize): Don't test existence of ALTERNATIVE
3985 if we know for some other reason it should not be used.
3986
3987 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
3988 New variable.
3989 (edebug-recursive-edit): Save current-prefix-arg there,
3990 bind it, and set it back at the end.
3991 (edebug-outside-excursion): Restore and update the outside
3992 value of current-prefix-arg.
3993 (edebug-emacs-version-specific): Delete support for Epoch.
3994
3995 1999-09-24 Howard Melman <howard@silverstream.com>
3996
3997 * imenu.el (imenu-after-jump-hook): New variable.
3998 (imenu): Run menu-after-jump-hook.
3999 (imenu-name-lookup-function): New variable.
4000 * imenu.el (imenu--in-alist): Use those variables.
4001
4002 1999-09-24 Carsten Dominik <cd@gnu.org>
4003
4004 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
4005 multiple thebibliography environments.
4006
4007 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
4008 with recentering window.
4009 (reftex-extract-bib-entries-from-thebibliography,
4010 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal
4011 with multiple thebibliography environments.
4012
4013 * textmodes/reftex-vars.el
4014 (reftex-section-levels): Function allowed as cdr.
4015 (reftex-max-section-depth) New option.
4016
4017 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
4018 with multiple thebibliography environments.
4019
4020 1999-09-23 Gerd Moellmann <gerd@gnu.org>
4021
4022 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
4023 instead of point-min in call to delete-region.
4024
4025 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de>
4026
4027 * vc.el (vc-backend-checkout): Use with-temp-file when checking
4028 out into arbitrary file names.
4029
4030 1999-09-19 Ken'ichi Handa <handa@gnu.org>
4031
4032 * language/european.el ("Turkish"): New language environment.
4033
4034 1999-09-19 Dave Love <fx@gnu.org>
4035
4036 * delim-col.el: New file.
4037
4038 1999-09-17 Richard Stallman <rms@gnu.org>
4039
4040 * files.el (after-find-file): When visiting a backup file,
4041 make it read-only.
4042
4043 * apropos.el (apropos-symbol-face): Non-nil even for ttys.
4044 (apropos-keybinding-face, apropos-label-face): Likewise.
4045 (apropos-property-face, apropos-match-face): Likewise.
4046 (apropos-label-properties): New variable.
4047 (apropos-print-doc): Use apropos-label-properties.
4048 (apropos-print): Set apropos-label-properties.
4049
4050 1999-09-15 Richard Stallman <rms@gnu.org>
4051
4052 * winner.el: Use aref instead of sref.
4053
4054 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
4055
4056 1999-09-14 Gerd Moellmann <gerd@gnu.org>
4057
4058 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
4059
4060 1999-09-14 Richard Stallman <rms@gnu.org>
4061
4062 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
4063 cookie, even if followed by a letter.
4064
4065 1999-09-14 Stephen Eglen <stephen@gnu.org>
4066
4067 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
4068 --no-line-editing are passed to Octave by including them here
4069 rather than storing them in inferior-octave-startup-args.
4070
4071 1999-09-14 Eli Zaretskii <eliz@gnu.org>
4072
4073 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
4074 command, option, env and sc.
4075
4076 * subr.el (shell-quote-argument): Quote argument with double
4077 quotes for ms-dos.
4078
4079 1999-09-14 Richard Stallman <rms@gnu.org>
4080
4081 * simple.el (eval-expression-print-level): New variable.
4082 (eval-expression-print-length): New variable.
4083 (eval-expression-debug-on-error): New variable.
4084 (eval-expression): Bind print-level, print-length and
4085 debug-on-error from those vars.
4086
4087 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
4088 Bind print-level, print-length and debug-on-error.
4089
4090 1999-09-14 Inge Frick <inge@nada.kth.se>
4091
4092 * dired.el (dired-recursive-deletes): New custom variable.
4093 (dired-re-no-dot): New variable.
4094 (dired-delete-file): New function deletes files and directories
4095 recursively.
4096 (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
4097
4098 * dired-aux.el (dired-recursive-copies): New custom variable.
4099 (dired-handle-overwrite): Broke a long line.
4100 (dired-copy-file): Call `dired-copy-file-recursive' instead of
4101 `copy-file'.
4102 (dired-copy-file-recursive): New function. Copy directories
4103 recursively.
4104 (dired-do-create-files): Added support for generalized directory
4105 target. How-to function may now return a function. New fluid
4106 variable `dired-one-file'.
4107 (dired-copy-how-to-fn): New variable.
4108 (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
4109 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
4110 (dired-do-copy-regexp): No recursive copies.
4111
4112 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com>
4113
4114 * whitespace.el (whitespace-version): Update version to 2.4
4115
4116 * whitespace.el: Add customization variables to conditionally test
4117 any of the five whitespaces, per request from Rune Kleveland
4118 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
4119
4120 * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
4121
4122 * whitespace.el (whitespace-modes): Add `change-log-mode' to the
4123 list of modes to be checked for bogus whitespaces.
4124
4125 * whitespace.el (whitespace-rescan-timer-time): Update
4126 documentation.
4127
4128 * whitespace.el (whitespace-display-unchecked-whitespaces):
4129 New function to update modeline with untested whitespaces.
4130
4131 * whitespace.el (whitespace-buffer): Test only whitespaces whose
4132 checking is turned on, and update modeline using the newly created
4133 `whitespace-display-unchecked-whitespaces'.
4134
4135 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
4136 whose checking is turned on, and update modeline using the newly
4137 created `whitespace-display-unchecked-whitespaces'.
4138
4139 * whitespace.el (whitespace-describe): Update documentation.
4140
4141 * whitespace.el (whitespace-tickle-timer): Test if
4142 `whitespace-rescan-timer-time' is non-zero before tickling timer.
4143
4144 1999-09-13 Dave Love <fx@gnu.org>
4145
4146 * hideif.el (hide-ifdef-mode): Add autoload cookie.
4147
4148 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
4149 for temp buffer.
4150 (checkdoc-this-string-valid): Don't assume default comment-start.
4151
4152 1999-09-13 Gerd Moellmann <gerd@gnu.org>
4153
4154 * rsz-mini.el: Remove code, keep the interface.
4155
4156 1999-09-13 Dave Love <fx@gnu.org>
4157
4158 * help.el (help-highlight-p): Doc fix.
4159
4160 * faces.el (mode-line, header-line, tool-bar): Add :version.
4161 (highlight, secondary-selection): Add :group.
4162 (trailing-whitespace): Add :group, :version.
4163
4164 * wid-edit.el: Remove some compatibility code and checks.
4165 (widget-specify-field, widget-specify-button): Don't use XEmacs
4166 properties.
4167 (widget-overlay-inactive): Change error message.
4168 (widget-button-pressed-face): New variable.
4169 (widget-button-click): Use it.
4170 (widget-documentation-link-add): Specify mouse and button faces.
4171 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
4172 removed now the functionality is built in.
4173
4174 * cus-edit.el: Don't define-widget-keywords.
4175 (multimedia): New group.
4176 (custom-last): Function removed.
4177 (custom-quote): Add vectorp case, comment out characterp case.
4178 (custom-buffer-done-function, custom-raised-buttons): New option.
4179 (Custom-buffer-done): New function.
4180 (custom-buffer-create-internal): Obey custom-raised-buttons,
4181 Custom-buffer-done.
4182 (custom-button-face): Make it `released-button'.
4183 (custom-button-pressed-face): Make it `pressed-button'
4184 (custom-mode-map): Bind "q" to Custom-buffer-done.
4185 (custom-mode): Deal with raised/pressed buttons.
4186
4187 Changes from Didier Verna:
4188 (custom-prompt-variable): Optional third arg makes prompt for a
4189 comment string.
4190 (customize-set-value, customize-set-variable,
4191 customize-save-variable): Optional prefix makes function handle
4192 variable comments.
4193 (customize-customized, customize-saved, custom-variable-state-set)
4194 (custom-variable-set, custom-variable-save, custom-face-state-set)
4195 (custom-variable-reset-saved, custom-variable-reset-standard)
4196 (custom-face-set, custom-face-save, custom-face-reset-saved)
4197 (custom-face-reset-standard, customize-save-customized): Handle
4198 custom comments.
4199 (custom-comment-face, custom-comment-tag-face): New face.
4200 (custom-comment): New widget.
4201 (custom-comment-create, custom-comment-delete)
4202 (custom-comment-value-set, custom-comment-show)
4203 ()custom-comment-invisible-p): New functions.
4204 (custom-variable-value-create, custom-face-value-create): Create a
4205 comment field widget.
4206 (custom-variable-menu, custom-face-menu): New entry for custom
4207 comment.
4208 (custom-face-value-create): Remove compatibility code.
4209 (custom-save-variables, custom-save-faces): Possibly save custom
4210 comments.
4211
4212 * cus-face.el (custom-face-attributes): Simplify :underline,
4213 :overline, :inverse-video cases. Fix up :box case (probably needs
4214 more work).
4215
4216 Change from Didier Verna:
4217 (custom-set-faces): The arguments can now have a custom comment as
4218 fourth argument.
4219
4220 * custom.el: Don't define-widget-keywords.
4221 Change from Didier Verna:
4222 (custom-set-variables): The arguments can now have a
4223 custom comment as fifth element.
4224
4225 1999-09-13 Richard Stallman <rms@gnu.org>
4226
4227 * info.el (Info-find-node): Cope better if guesspos is too large.
4228
4229 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4230
4231 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
4232 of buffer-substring because buffer-string doesn't copy the
4233 prompt.
4234
4235 * faces.el (mode-line): Replaces `modeline'.
4236 (toplevel): Make `modeline' an alias for `mode-line'.
4237
4238 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4239
4240 * gs.el: Change `ghostscript' to `postscript' in comment.
4241
4242 1999-09-11 Rob Riepel <riepel@Stanford.EDU>
4243
4244 * emulation/tpu-edt.el (tpu-version): New version.
4245 (tpu-search-overlay, tpu-replace-overlay): New variables.
4246 (tpu-search-highlight, tpu-toggle-direction): New functions.
4247 (tpu-lm-replace): Set tpu-replace-overlay.
4248 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
4249 command hook.
4250
4251 1999-09-11 Richard Stallman <rms@gnu.org>
4252
4253 * isearch.el (isearch-mode-map): Undo previous change.
4254
4255 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
4256 use all of that as the sexp.
4257
4258 * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
4259 and use the initial argument as file name directly.
4260 Likewise if nothing matches.
4261
4262 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no>
4263
4264 * winner.el: Major changes. Avoid changing point and mark.
4265 Save configurations after they change, not before.
4266
4267 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
4268
4269 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
4270 Bind print-continuous-numbering and print-number-table.
4271
4272 1999-09-10 Dave Love <fx@gnu.org>
4273
4274 * bindings.el (debug-ignored-errors): Restore BBDB stuff.
4275
4276 1999-09-09 Richard Stallman <rms@gnu.org>
4277
4278 * whitespace.el: Finish making it fit Emacs conventions.
4279 Add autoloads.
4280
4281 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il>
4282
4283 * generic-x.el (bat-generic-mode): "::"-style comments don't
4284 need to begin with "-". Fix the font-lock definitions of ON/OFF
4285 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO
4286 from the list of keywords. Add DO to the list of keywords.
4287
4288 1999-09-09 Dave Love <fx@gnu.org>
4289
4290 * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
4291 (byte-optimize-backward-word): New optimizations.
4292 (side-effect-free-fns, side-effect-and-error-free-fns): Add
4293 entries.
4294
4295 1999-09-09 Gerd Moellmann <gerd@gnu.org>
4296
4297 * image.el (put-image): Remove optional buffer parameter.
4298
4299 * faces.el (face-italic-p): Return t only for values `italic'
4300 and `oblique'.
4301
4302 * mouse.el (mouse-drag-mode-line-1): Extension of former
4303 mouse-drag-mode-line that also drags the header line.
4304 (mouse-drag-mode-line): Call it.
4305 (mouse-drag-header-line): New.
4306 (toplevel): Bind down-mouse-1 on header lines to
4307 mouse-drage-header-line.
4308
4309 1999-09-08 Gerd Moellmann <gerd@gnu.org>
4310
4311 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
4312 (make-mode-line-mouse-sensitive): Replace `top-line' by
4313 `header-line'.
4314
4315 1998-09-08 Michael Ernst <mernst@alum.mit.edu>
4316
4317 * help.el (describe-function-1): Don't return empty string for keymaps.
4318
4319 * fill.el (fill-region-as-paragraph, canonically-space-region):
4320 Respect colon-double-space at end of line.
4321
4322 1999-09-08 Stephen Gildea <gildea@alum.mit.edu>
4323
4324 * files.el (backup-by-copying-when-privileged-mismatch): New variable.
4325 (backup-buffer): Use it.
4326
4327 1999-09-08 Peter Breton <pbreton@ne.mediaone.net>
4328
4329 * generic-x.el (generic-define-unix-modes): Added new modes:
4330 inetd-conf-generic-mode, etc-services-generic-mode,
4331 etc-passwd-generic-mode. These are all defined for Unix by default.
4332 (apache-generic-mode): Use an imenu-generic-expression to list
4333 Configuration keywords.
4334 (samba-generic-mode): Use both ; and # as comment characters.
4335 (samba-generic-mode): Font-lock expressions now highlight name
4336 value pairs.
4337 (bat-generic-mode): Keywords are now case-insensitive through
4338 font-lock-defaults setting.
4339 (java-properties-generic-mode): Supports both ! and # as comment
4340 characters.
4341 (java-properties-generic-mode): Added an imenu-generic-expression
4342 (java-properties-generic-mode): Reworked to support the various
4343 different ways to separate name and value (viz, '=', ':' and
4344 whitespace).
4345 (show-tabs-generic-mode): Added this new generic-mode.
4346
4347 1999-09-08 Richard Stallman <rms@gnu.org>
4348
4349 * progmodes/inf-lisp.el: Moved from top directory.
4350
4351 * tar-mode.el (tar-header-block-tokenize):
4352 Use `when' instead of `and'. Fix some clobbered text.
4353
4354 * gud.el (gud-make-debug-menu): Make a child for the
4355 local menu, for its menu bar, and the debug menu.
4356 (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
4357 Use the history in the simple way.
4358
4359 1999-09-07 Kenichi Handa <handa@etl.go.jp>
4360
4361 * language/korea-util.el (default-korean-keyboard): Initialize it
4362 according to the environment variable HANGUL_KEYBOARD_TYPE.
4363
4364 1999-09-07 Richard Stallman <rms@gnu.org>
4365
4366 * subr.el (make-temp-file): New function.
4367
4368 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
4369
4370 * font-lock.el (font-lock-multiline): New text property contains
4371 a boolean to indicate if the char is part of a multiline match.
4372 (font-lock-default-fontify-region): Extend the region appropriately
4373 for multiline keywords.
4374 (font-lock-default-unfontify-region): Also remove the new
4375 font-lock-multiline text property.
4376 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
4377 (font-lock-fontify-keywords-region): Mark multiline regexp matches.
4378
4379 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4380
4381 * diary-lib.el (list-diary-entries): Make sure two-digit years
4382 have leading zeros.
4383
4384 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4385
4386 * faces.el (face-set-after-frame-default): Initialize some
4387 attributes of some faces from frame parameters.
4388
4389 * faces.el (scroll-bar, border, cursor, mouse): New faces.
4390
4391 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4392
4393 * faces.el (fringe): Replaces face `margin'.
4394
4395 1999-09-07 Dave Love <fx@gnu.org>
4396
4397 * tar-mode.el (tar-header-block-tokenize): Bind linkname.
4398
4399 1999-09-07 Richard Stallman <rms@gnu.org>
4400
4401 * subr.el (push): Doc fix.
4402
4403 1999-09-06 Richard Stallman <rms@gnu.org>
4404
4405 * vc.el (vc-annotate-display): Use < 69 not < 70
4406 to distinguish 20YY from 19YY.
4407
4408 * timezone.el (timezone-parse-date): Use < 69 not < 70
4409 to distinguish 20YY from 19YY.
4410
4411 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
4412
4413 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk>
4414
4415 * quickurl.el: (quickurl-list-focused-line): Removed.
4416 (quickurl-list-insert): Now works out the focused line using
4417 `count-lines' instead of using `quickurl-list-focused-line'.
4418
4419 1999-09-06 Richard Stallman <rms@gnu.org>
4420
4421 * mail/rmail.el (rmail-retry-failure): Unconditionally move
4422 to beginning of message.
4423
4424 1999-09-06 Dave Love <fx@gnu.org>
4425
4426 * isearch.el (isearch-mode-map): Add mouse-2.
4427
4428 * mail/rmail.el (rmail-read-password): Deleted.
4429 (rmail-get-pop-password): Use read-password.
4430
4431 * quickurl.el: Don't conditionally define caddr.
4432 (quickurl-url-comment): Use nth, not caddr in function and
4433 defsetf.
4434
4435 1999-09-06 Richard Stallman <rms@gnu.org>
4436
4437 * auto-show.el: Doc fixes.
4438
4439 1999-09-06 Stephen Eglen <stephen@gnu.org>
4440
4441 * progmodes/octave-inf.el (inferior-octave-startup-args): Add
4442 --no-line-editing so that TABs in source files are not interpreted
4443 as completion requests.
4444
4445 1999-09-06 Gerd Moellmann <gerd@gnu.org>
4446
4447 * hscroll.el, auto-show.el: Remove all code, keep the public
4448 interface as no-ops.
4449
4450 * faces.el (face-bold-p): Don't return t if face has lighter
4451 weight than normal.
4452
4453 1999-09-06 Eli Zaretskii <eliz@gnu.org>
4454
4455 * startup.el (command-line): Make small-temporary-file-directory
4456 be nil except on ms-dos.
4457
4458 * files.el (small-temporary-file-directory): Ditto. Also doc fix.
4459
4460 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
4461 is defined.
4462
4463 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
4464 letters with a colon after d or l.
4465
4466 1999-09-06 Dave Love <fx@gnu.org>
4467
4468 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now
4469 primitive.)
4470
4471 1999-09-05 Richard Stallman <rms@gnu.org>
4472
4473 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
4474
4475 * textmodes/paragraphs.el (backward-kill-sentence):
4476 Don't test minibuffer-prompt-end here.
4477 (forward-sentence): Do handle it here.
4478 (backward-kill-paragraph): Don't test it here.
4479 (forward-paragraph): Handle it here.
4480
4481 * mouse.el (font-menu-add-default): Simplify code.
4482
4483 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4484
4485 * faces.el (header-line): Renamed from `top-line'.
4486
4487 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4488
4489 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
4490
4491 1999-09-04 Richard Stallman <rms@gnu.org>
4492
4493 * whitespace.el: New file.
4494
4495 1999-09-04 Dave Love <fx@gnu.org>
4496
4497 * paths.el: Make some doc strings obey the make-docfile convention.
4498
4499 * bindings.el: Likewise.
4500 (debug-ignored-errors): Remove BBDB ones.
4501
4502 1999-09-03 Richard Stallman <rms@gnu.org>
4503
4504 * mail/mh-comp.el (mh-forward): Get new subject line from the original,
4505 not from the draft to forward.
4506
4507 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
4508
4509 1999-09-03 Dave Love <fx@gnu.org>
4510
4511 * double.el (double-mode): Customize the variable.
4512
4513 1999-09-03 Kenichi Handa <handa@etl.go.jp>
4514
4515 * international/characters.el: Delete duplicated code.
4516
4517 1999-09-02 Richard Stallman <rms@gnu.org>
4518
4519 * indent.el (indent-relative): Doc fix.
4520
4521 * quickurl.el (quickurl): Doc fix.
4522
4523 1999-09-02 Gerd Moellmann <gerd@gnu.org>
4524
4525 * faces.el (margin): Change background to "gray" for mono (this is
4526 drawn with a stipple pattern).
4527
4528 1999-09-02 Gerd Moellmann <gerd@gnu.org>
4529
4530 * simple.el (next-history-element): Use minibuffer-prompt-end once
4531 again. Remove test for minibuffer-prompt-in-buffer.
4532
4533 1999-09-02 Eli Zaretskii <eliz@gnu.org>
4534
4535 * files.el (small-temporary-file-directory): New variable.
4536
4537 * startup.el (command-line): Compute the value of
4538 small-temporary-file-directory.
4539
4540 * ediff-init.el (ediff-temp-file-prefix): Use
4541 small-temporary-file-directory if non-nil.
4542
4543 * vc.el (vc-update-change-log): Likewise.
4544
4545 * progmodes/cmacexp.el (c-macro-expansion): Likewise.
4546
4547 * simple.el (shell-command, shell-command-on-region): Use
4548 make-temp-name properly. Use small-temporary-file-directory if
4549 non-nil, otherwise temporary-file-directory, to generate temporary
4550 files.
4551
4552 * dos-w32.el (direct-print-region-helper): Use
4553 temporary-file-directory. (From Stefan Monnier.)
4554
4555 1999-09-02 Richard Stallman <rms@gnu.org>
4556
4557 * progmodes/asm-mode.el (asm-mode): Set comment-start properly
4558 from asm-comment-char.
4559 (asm-font-lock-keywords): Recognize instruction width suffixes.
4560
4561 1999-09-01 Richard Stallman <rms@gnu.org>
4562
4563 * play/fortune.el: New file.
4564
4565 1999-08-31 Dave Love <fx@gnu.org>
4566
4567 * help.el (help-make-xrefs): Don't lose on non-empty blank line
4568 after key table.
4569
4570 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
4571 redisplay variables.
4572
4573 * subr.el (push): Fix typo.
4574
4575 1999-08-30 Kevin Blake <kblake@ticnet.com>
4576
4577 * emacs-lisp/ring.el: Many doc fixes.
4578 (ring-size, ring-copy): New functions.
4579
4580 1999-08-29 Richard Stallman <rms@gnu.org>
4581
4582 * progmodes/etags.el (tags-loop-continue):
4583 After tags-loop-operate returns, force skip to next file.
4584
4585 * mail/mail-extr.el (mail-extr-all-letters-but-separators)
4586 (mail-extr-first-letters, mail-extr-last-letters):
4587 Use character classes [:alpha:] and [:alnum:].
4588
4589 * subr.el (push, pop): New macros.
4590
4591 * progmodes/compile.el (compilation-error-regexp-alist):
4592 New item for SGI IRIX MipsPro compilers.
4593
4594 * speedbar.el (speedbar-directory-buttons): Recognize
4595 device names when checking for file names.
4596
4597 * array.el (array-reconfigure-rows): Use generate-new-buffer.
4598
4599 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
4600 and specially handle defvar inside their expansions.
4601 (eval-defun-1): New subroutine.
4602
4603 * progmodes/compile.el (compilation-error-regexp-alist):
4604 Fix the Perl -w entry to allow period after line number.
4605 Don't allow newlines in file name, but allow them after line number
4606 for Perl debugging traces.
4607
4608 * which-func.el (which-func-cleanup-function): New variable.
4609 (which-function): Call that function.
4610
4611 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
4612 to end a function name.
4613
4614 * informat.el (Info-tagify): Don't insert more than one newline
4615 before the tag table.
4616
4617 1999-08-29 Stefan Monnier <monnier@cs.yale.edu>
4618
4619 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
4620 than make-temp-name, use match-string-no-properties, and eliminate
4621 a quadratic behavior when building bibtex-strings.
4622
4623 1999-08-29 Alex Schroeder <alex@gnu.org>
4624
4625 * comint.el (comint-input-ring-separator): New variable.
4626 (comint-read-input-ring): Doc change; use
4627 comint-input-ring-separator when reading file.
4628 (comint-write-input-ring): Use
4629 comint-input-ring-separator when writing file.
4630
4631 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com>
4632
4633 * informat.el (Info-tagify): Start by widening.
4634 Match node headers that don't list the file name,
4635 and more kinds of page separations.
4636 Strip properties during tagification.
4637 Use start of node header line as tag's position.
4638 Fix the "done" message.
4639
4640 (Info-validate): Save and restore match data around narrowing down.
4641
4642 1999-08-28 Richard M. Stallman <rms@gnu.org>
4643
4644 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
4645 On repeated call, override previous values put into
4646 minor-mode-map-alist and minor-mode-alist.
4647
4648 1999-08-28 Michael Ernst <mernst@alum.mit.edu>
4649
4650 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
4651
4652 1999-08-27 Andreas Schwab <schwab@gnu.org>
4653
4654 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
4655 from cvs update.
4656
4657 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4658
4659 * calendar/calendar.el (calendar-move-hook): New hook.
4660
4661 * calendar/cal-move.el: Call the new hook in every movement function.
4662
4663 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
4664 the right function name.
4665
4666 1999-08-26 Stephen Gildea <gildea@alum.mit.edu>
4667
4668 * time-stamp.el: Put quote-backquote around all symbol names
4669 in doc strings, for mousing.
4670 (time-stamp): Support multi-line patterns.
4671 (time-stamp-inserts-lines): New variable.
4672 (time-stamp-count): New variable.
4673 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
4674 "Thu" instead of "%a".
4675
4676 1999-08-25 Gerd Moellmann <gerd@gnu.org>
4677
4678 * simple.el (kill-word): Undo previous change.
4679
4680 1999-08-25 Gerd Moellmann <gerd@gnu.org>
4681
4682 * jit-lock.el (jit-lock-function): Extend the fontified range
4683 to the beginning of the line containing the range start and
4684 the beginning of the line following the range end.
4685
4686 1999-08-24 Dave Love <fx@gnu.org>
4687
4688 * timezone.el: Move provide to end.
4689 (timezone-parse-date): Simplify somewhat. Assume 2-digit years
4690 <70 are 2000+.
4691 (timezone-parse-time): Simplify somewhat.
4692
4693 1999-08-24 Gerd Moellmann <gerd@gnu.org>
4694
4695 * faces.el (margin): Renamed from bitmap-area.
4696
4697 1999-08-24 Alex Schroeder <alex@gnu.org>
4698
4699 * sql.el: Doc changes.
4700 (sql-sybase): Use sql-server instead of sql-database.
4701
4702 1999-08-23 Dave Love <fx@gnu.org>
4703
4704 * rect.el: Add/fix various doc strings. Add `*' to all the
4705 interactive specs.
4706
4707 1999-08-21 Gerd Moellmann <gerd@gnu.org>
4708
4709 * jit-lock.el (jit-lock-function): Use line-beginning-position.
4710 Don't unwind-protect font-lock-fontify-region.
4711
4712 * paragraphs.el (backward-kill-paragraph): Don't move
4713 point into mini-buffer prompt.
4714 (backward-kill-sentence): Ditto.
4715
4716 * simple.el (next-history-element): Use minibuffer-prompt-end.
4717 Remove test for minibuffer-prompt-in-buffer.
4718 (kill-word): Don't move point into mini-buffer prompt.
4719
4720 1999-08-21 Dave Love <fx@gnu.org>
4721
4722 * Makefile: Exclude CVS dirs like RCS.
4723
4724 1999-08-19 Dave Love <fx@gnu.org>
4725
4726 * tooltip.el (tooltip-mode): Customize this, per convention.
4727 (tooltip-active): Option deleted.
4728
4729 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize.
4730
4731 * hanoi.el, page-ext.el: Declare dynamic vars.
4732
4733 * term.el: Avoid ange-ftp related compilation warnings.
4734
4735 1999-08-18 Gerd Moellmann <gerd@gnu.org>
4736
4737 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
4738 the default so that beginners can benefit from it without
4739 searching in manuals.
4740
4741 1999-08-18 Ray Blaak <blaak@gnu.org>
4742
4743 * progmodes/delphi.el: Consider assembly sections as blocks, to
4744 indent them better. Make auto-indent on newline optional.
4745
4746 1999-08-17 Gerd Moellmann <gerd@gnu.org>
4747
4748 * bindings.el (mode-line-modified): Look up key binding for C-x
4749 C-q. If it's bound call that binding, otherwise call
4750 toggle-read-only.
4751
4752 1999-08-17 Dave Love <fx@gnu.org>
4753
4754 * info.el (info): Doc fix.
4755
4756 * finder.el (finder-known-keywords): Add `multimedia'.
4757
4758 * apropos.el: Don't capitalize custom group name.
4759
4760 * info-look.el: Remove compatibility code.
4761 (info-lookup-guess-default*): DTRT for point at start of symbol.
4762 (info-complete): Don't lose with point not at end of symbol.
4763
4764 1999-08-16 Gerd Moellmann <gerd@gnu.org>
4765
4766 * term.el (toplevel): Make face `term-default' an empty face.
4767 The code relied on the fact that Emacs ignored invalid faces in
4768 face text properties in 20.4.
4769
4770 1999-08-16 Richard M. Stallman <rms@gnu.org>
4771
4772 * subr.el (point-at-eol, point-at-bol): New aliases.
4773
4774 * simple.el: Functions reordered.
4775
4776 * rect.el (delete-rectangle-line): Use line-end-position.
4777
4778 1999-08-16 Karl Heuer <kwzh@gnu.org>
4779
4780 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
4781 here from simple.el.
4782
4783 1999-08-16 Dave Love <fx@gnu.org>
4784
4785 * mouse.el: Provide `mldrag' for compatibility.
4786 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
4787 marked obsolete.
4788
4789 * mldrag.el: Removed since the features are in mouse.el.
4790
4791 * jka-compr.el (auto-compression-mode): New variable for
4792 customization.
4793
4794 * bindings.el (mode-line-mule-info): Doc fix.
4795
4796 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
4797 name comparisons.
4798
4799 * files.el (interpreter-mode-alist): Add make, guile, clisp.
4800 (find-file): Doc fix.
4801
4802 1999-08-16 Carsten Dominik <cd@gnu.org>
4803
4804 * textmodes/reftex.el: Most of the code moved to other files.
4805 * textmodes/reftex-auc.el: New file, split out from reftex.el
4806 * textmodes/reftex-cite.el: New file, split out from reftex.el
4807 * textmodes/reftex-global.el: New file, split out from reftex.el
4808 * textmodes/reftex-index.el: New file, split out from reftex.el
4809 * textmodes/reftex-parse.el: New file, split out from reftex.el
4810 * textmodes/reftex-ref.el: New file, split out from reftex.el
4811 * textmodes/reftex-sel.el: New file, split out from reftex.el
4812 * textmodes/reftex-toc.el: New file, split out from reftex.el
4813 * textmodes/reftex-vars.el: New file, split out from reftex.el
4814 * textmodes/reftex-vcr.el: New file, split out from reftex.el
4815
4816 1999-08-16 Carsten Dominik <cd@gnu.org>
4817
4818 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
4819 conflict with pop-up-frames.
4820 (reftex-special-environment-parsers): New constant.
4821 (reftex-label-alist): car of an entry can also be a function.
4822 (reftex-what-special-env): Cew function.
4823 (reftex-label-location): Call `reftex-what-special-env'.
4824 (reftex-compile-variables): Check for symbol in
4825 `reftex-label-alist'.
4826 (reftex-what-environment): Fixed bug with stacked environments of
4827 same kind (e.g. enumerate).
4828 (reftex-process-string): Preserve default directory.
4829 (reftex-label-alist-builtin): Changed prefixes of endnote and
4830 footnote. Also the magic words.
4831 (reftex-reference): Interprete new option
4832 `reftex-fref-is-default'.
4833 (reftex-replace-prefix-escapes): Interprete new `%S' format.
4834 (reftex-toc-mouse-view-line): Command removed (had no binding).
4835 (reftex-everything-regexp): New function.
4836 (reftex-nearest-match): Made better.
4837 (reftex-toc-find-section): Use new version of
4838 `reftex-nearest-match'.
4839 (reftex-insert-docstruct): Adapted to work with the index stuff.
4840 (reftex-parse-from-file): Find index entries as well.
4841 (reftex-toc-toggle-index): New function
4842 (reftex-toc-map): `i' is now used to togle the index, File
4843 boundaries has been moved to `F'.
4844 (reftex-select-label-map): Toggling display of file boundaries is
4845 now on the `F' key, for consistency with `reftex-toc-map'.
4846 (reftex-erase-all-selection-and-index-buffers): Renamed from
4847 `reftex-erase-all-selection-buffer'. Now also kills the index
4848 buffers.
4849 (reftex-viewing-cross-references): Customization group renamed
4850 from reftex-viewing-cross-references-and-citations.
4851 (reftex-index-macro-regexp,
4852 reftex-find-index-entry-regexp-format): New variables
4853 (reftex-macros-with-index): New variable
4854 (reftex-add-index-macros): New function
4855 (reftex-renumber-simple-labels, reftex-translate): Allow for
4856 multiple labels in a single ref command.
4857 (reftex-index-support): New customization group
4858 (reftex-support-index, reftex-index-special-chars,
4859 reftex-index-macros, reftex-index-default-macro,
4860 reftex-index-default-tag, reftex-index-math-format,
4861 reftex-index-section-letters, reftex-index-include-context,
4862 reftex-index-follow-mode, reftex-index-header-face,
4863 reftex-index-section-face, reftex-index-tag-face,
4864 reftex-index-face): New options
4865 (reftex-index-map, reftex-index-menu, reftex-last-index-file,
4866 reftex-index-tag, reftex-index-return-marker,
4867 reftex-index-restriction-indicator, reftex-index-restriction-data,
4868 reftex-index-macro-regexp, reftex-index-level-re,
4869 reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
4870 reftex-everything-regexp-no-index, reftex-index-re,
4871 reftex-macros-with-index, reftex-index-macro-alist): New variables
4872 (reftex-index-help, reftex-index-macros-builtin,
4873 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
4874 reftex-query-index-macro-help): New constants
4875 (reftex-index-selection-or-word, reftex-index,
4876 reftex-default-index, reftex-update-default-index,
4877 reftex-index-complete-tag, reftex-index-select-tag,
4878 reftex-index-complete-key, reftex-index-update-taglist,
4879 reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
4880 reftex-display-index, reftex-insert-index,
4881 reftex-index-insert-new-letter, reftex-get-restriction,
4882 reftex-index-pre-command-hook, reftex-index-post-command-hook,
4883 reftex-index-show-help, reftex-index-next, reftex-index-previous,
4884 reftex-index-toggle-follow, reftex-index-toggle-context,
4885 reftex-index-view-entry, reftex-index-goto-entry-and-hide,
4886 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
4887 reftex-index-quit, reftex-index-quit-and-kill,
4888 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
4889 reftex-index-revert, reftex-index-switch-index-tag,
4890 reftex-index-restrict-to-section, reftex-index-widen,
4891 reftex-index-restriction-forward,
4892 reftex-index-restriction-backward, reftex-index-visit-location,
4893 reftex-index-analyze-entry, reftex-index-globalize,
4894 reftex-index-edit, reftex-index-toggle-range-beginning,
4895 reftex-index-toggle-range-end, reftex-index-edit-key,
4896 reftex-index-edit-attribute, reftex-index-edit-visual,
4897 reftex-index-edit-part, reftex-index-level-down,
4898 reftex-index-level-up, reftex-index-kill, reftex-index-undo,
4899 reftex-index-change-entry, reftex-index-goto-letter,
4900 reftex-add-index-macros, reftex-ensure-index-support,
4901 reftex-index-info-safe, reftex-index-info): New functions.
4902
4903
4904 1999-08-15 Richard M. Stallman <rms@gnu.org>
4905
4906 * paren.el (show-paren-mode): Support making show-paren-mode
4907 a buffer-local variable. Don't check for a window system.
4908 (show-paren-function): Check whether show-paren-function is
4909 enabled in current buffer; do the right thing if not.
4910 Don't check for a window system.
4911 (show-paren-mode): Make it a user variable.
4912
4913 * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
4914 Handle `enum' like `struct'.
4915
4916 * server.el (server-process-filter): If a client visits no buffers,
4917 close it immediately before recording it.
4918
4919 * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
4920 Optimize by calling concat just once. Handle =\n sequence.
4921 (mail-unquote-printable-region): New command.
4922 (mail-quote-printable): Make it autoload.
4923
4924 1999-08-15 Karl Heuer <kwzh@gnu.org>
4925
4926 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
4927
4928 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
4929
4930 * lisp/texinfmt.el: Handle @ifnottex.
4931
4932 1999-08-15 Eli Zaretskii <eliz@gnu.org>
4933
4934 * frame.el (blink-cursor): Don't turn on cursor blinking for
4935 ms-dos.
4936
4937 * faces.el (face-valid-attribute-values): Look in
4938 x-bitmap-file-path only for x and w32 window systems.
4939
4940 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
4941 Do that if width is nil as well.
4942 (x-display-mm-height, x-display-mm-width): Update values.
4943 (x-colors): Compute the list from msdos-color-values.
4944 (x-select-enable-clipboard): Doc fix.
4945 (x-frob-font-weight, x-font-family-list): New functions.
4946
4947 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk>
4948
4949 * window.el (shrink-window-if-larger-than-buffer): Don't try to
4950 back up from beginning of buffer.
4951
4952 1999-08-13 Karl Heuer <kwzh@gnu.org>
4953
4954 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
4955
4956 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>
4957
4958 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G
4959 doomsday clock, speed control is added and changes are made to
4960 allow large numbers of rings: rings now show the whole ring
4961 number, not just the last digit; consecutive rings are allowed to
4962 be the same size when necessary to fit all the rings in the
4963 window; and poles can be oriented horizontally. Face support is
4964 thrown in gratuitously.
4965 (hanoi): Changed default number of rings back to 3.
4966 (hanoi-unix, hanoi-unix-64): New commands
4967 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
4968 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
4969 hanoi-odd-ring-face): New variables.
4970 (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
4971 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
4972 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
4973 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
4974 (hanoi-topos, hanoi-draw-ring): Removed.
4975
4976 1999-08-12 Gerd Moellmann <gerd@gnu.org>
4977
4978 * faces.el (face-valid-attribute-values): Return an alist for
4979 families on ttys.
4980 (face-read-integer): Handle unspecified face attributes. Add
4981 completion for `unspecified'.
4982 (read-face-attribute): Handle unspecified font attributes.
4983 (face-valid-attribute-values): Add `unspecified' to lists so that
4984 it can be chosen via completion.
4985 (face-read-string): Don't recognize "none" as input.
4986
4987 1999-08-10 Dave Love <fx@gnu.org>
4988
4989 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
4990 string.
4991
4992 * sun-curs.el: Require sun-fns.
4993
4994 1999-08-10 Dave Love <fx@gnu.org>
4995
4996 * autorevert.el (auto-revert-mode): Add autoload cookie.
4997
4998 * hscroll.el, auto-show.el: Files deleted -- we have built-in
4999 hscroll.
5000
5001 * simple.el (hscroll-step, hscroll-point-visible)
5002 (hscroll-window-column): Remove now we have the mentioned real
5003 horizontal autoscrolling.
5004
5005 1999-08-10 Richard M. Stallman <rms@gnu.org>
5006
5007 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
5008 control use of -f option.
5009 (mail-specify-envelope-from): New variable.
5010 (mail-from-style): Doc fix.
5011
5012 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
5013 (easy-menu-get-map): New arg TO-MODIFY helps choose
5014 between local and global maps.
5015 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
5016 (easy-menu-change): Doc fix.
5017
5018 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
5019 (info-lookup-guess-default): Simplified and cleaned up.
5020 (info-lookup-guess-default*): Preserve point.
5021
5022 * view.el (view-mode-disable): If buffer-read-only is nil,
5023 don't change it.
5024
5025 * files.el (after-find-file): Disable View mode if buffer is no
5026 longer read-only.
5027
5028 * view.el (view-mode-enable, view-mode-disable):
5029 Call force-mode-line-update.
5030
5031 1999-08-10 Karl Heuer <kwzh@gnu.org>
5032
5033 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
5034 * array.el, play/landmark.el, international/latin-3.el: Likewise.
5035 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
5036
5037 1999-08-10 Alex Schroeder <asc@bsiag.com>
5038
5039 * ansi-color.el (ansi-color-to-text-properties): Added New state 5
5040 to prevent m-eating-bug.
5041
5042 1999-08-10 Eli Zaretskii <eliz@gnu.org>
5043
5044 * term/pc-win.el (msdos-bg-mode): Remove. Call
5045 frame-set-background-mode instead. All callers changed.
5046 (msdos-face-setup): Don't force color display parameter, it is set
5047 by frame-set-background-mode.
5048 (make-msdos-frame): Call x-handle-reverse-video and
5049 face-set-after-frame-default. Delete frame if creation failed.
5050
5051 * faces.el (face-set-after-frame-default): Don't call
5052 make-face-x-resource-internal for the pc window-system.
5053
5054 1999-08-10 Dave Love <fx@melange.gnu.org>
5055
5056 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
5057 case with no docstring specially.
5058
5059 1999-08-09 Eli Zaretskii <eliz@gnu.org>
5060
5061 * complete.el (PC-do-completion): If completing on file name,
5062 reproduce str by concatenating its directory and basename parts.
5063
5064 1999-08-07 Dave Love <fx@gnu.org>
5065
5066 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid
5067 unibyte to multibyte conversion of search-forward (from Handa),
5068 but avoid the replacement if the language is Latin-N.
5069
5070 1999-08-06 Richard Stallman <rms@gnu.org>
5071
5072 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
5073 of eval-buffer.
5074
5075 * international/mule.el (load-with-code-conversion):
5076 Pass t to eval-buffer for DO-ALLOW-PRINT.
5077
5078 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
5079
5080 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
5081 of filenames and attributes.
5082 (ls-lisp-insert-directory): Use directory-files-and-attributes
5083 for speed.
5084
5085 1999-08-05 Dave Love <fx@gnu.org>
5086
5087 * auto-show.el (auto-show-mode): Fix :set.
5088
5089 * widget.el (define-widget-keywords): Make dummy definition and
5090 comment-out its use.
5091
5092 1999-08-04 Richard Stallman <rms@gnu.org>
5093
5094 * progmodes/tcl.el: Customized.
5095
5096 * sql.el (sql-accumulate-and-indent): Instead of testing
5097 whether this is Emacs 20 before calling comint-accumulate,
5098 test whether comint-accumulate is defined.
5099
5100 1999-08-04 Dave Love <fx@gnu.org>
5101
5102 * sgml-mode.el: Require outline when compiling.
5103 (sgml-mode-hook, html-mode-hook): Customize.
5104 (sgml-validate-command): Fix :version.
5105 (html-autoview-mode): Doc fix.
5106
5107 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
5108 nothing in Latin-N environment.
5109
5110 * info.el (Info-find-node): Call info-initialize here.
5111 (info): Not here.
5112 (Info-file-list-for-emacs): Add message, dired-x, c, viper.
5113
5114 1999-08-04 Richard Stallman <rms@gnu.org>
5115
5116 * ansi-color.el: New file.
5117
5118 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
5119
5120 * dired.el (dired-string-replace-match): Return `nil' when no match
5121 found with global search.
5122
5123 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
5124 * terminal.el (te-terminfo-directory):
5125 * mail/mailpost.el (post-mail-send-it):
5126 * mail/metamail.el (metamail-region):
5127 * progmodes/ada-mode.el (ada-tmp-directory):
5128 Use temporary-file-directory.
5129
5130 * progmodes/compile.el (compilation-parsing-end,compilation-setup)
5131 (compilation-filter, compilation-forget-errors)
5132 (compilation-parse-errors): Use a marker instead of an integer for
5133 `compilation-parsing-end'.
5134
5135 * progmodes/diff.el (diff-parse-differences):
5136 Use a marker instead of an integer for `compilation-parsing-end'.
5137 * textmodes/tex-mode.el (tex-compilation-parse-errors):
5138 Use a marker instead of an integer for `compilation-parsing-end'.
5139
5140 1999-08-03 Richard Stallman <rms@gnu.org>
5141
5142 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
5143 (Buffer-menu-mode): Doc fix.
5144 (Buffer-menu-view): New command.
5145 (Buffer-menu-view-other-window): New command.
5146
5147 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com>
5148
5149 * replace.el (query-replace-regexp-eval)
5150 (replace-eval-replacement, replace-loop-through-replacements)
5151 (replace-match-string-symbols): New functions.
5152 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
5153 Use replace-loop-through-replacements.
5154
5155 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk>
5156
5157 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
5158 (5x5): Doc fix.
5159
5160 1999-08-03 Dave Love <fx@gnu.org>
5161
5162 * fortran.el (fortran-indent-new-line): Make it an alias
5163 for reindent-then-newline-and-indent.
5164
5165 1999-08-03 Didier Verna <verna@inf.enst.fr>
5166
5167 * rect.el: All functions rewritten, except when noted above
5168 their declaration. Below is a list of interface changes.
5169 (apply-on-rectangle): New function, mostly replaces
5170 `operate-on-rectangle'. All callers changed.
5171 (move-to-column-force): Pass new second argument to `move-to-column'.
5172 (kill-rectangle): Added optional prefix arg to fill lines.
5173 (delete-rectangle): Ditto.
5174 (delete-whitespace-rectangle): Ditto.
5175 (delete-extract-rectangle): Ditto.
5176 (open-rectangle): Ditto.
5177 (clear-rectangle): Ditto.
5178 (delete-whitespace-rectangle-line): New function.
5179 (delete-rectangle-line): Added third arg FILL.
5180 (delete-extract-rectangle-line): Ditto.
5181 (open-rectangle-line): Ditto.
5182 (clear-rectangle-line): Ditto.
5183
5184 1999-08-03 Ray Blaak <blaak@gnu.org>
5185
5186 * progmodes/delphi.el: New file.
5187
5188 1999-08-02 Richard Stallman <rms@gnu.org>
5189
5190 * textmodes/outline.el (outline-previous-heading): New function.
5191 (outline-up-heading-all): Use outline-previous-heading.
5192 (outline-next-heading): Delete definition inserted yesterday.
5193
5194 1999-08-01 Richard Stallman <rms@gnu.org>
5195
5196 * textmodes/outline.el (outline-next-heading): New function.
5197 (outline-up-heading-all): New function.
5198 (outline-font-lock-level): Using outline-up-heading-all.
5199 Tell outline-back-to-heading to accept invisible headings.
5200
5201 * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
5202
5203 * mail/mh-utils.el (mh-find-path-run): New variable.
5204 (mh-find-path): Test and set that.
5205 Set mail-user-agent only the first time this function is run.
5206 (mail-user-agent): Defvar deleted.
5207
5208 * info.el (info-initialize): New function.
5209 (info): Call info-initialize.
5210 (Info-directory-list): Initialize to nil,
5211 so info-initialize will set it up for real.
5212
5213 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5214
5215 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
5216 does not interpret a time as the year in a day-month entry.
5217
5218 * calendar/diary-lib.el: Change syntax table entry for colon in
5219 the diary as part of the european-date-diary-pattern fix.
5220
5221 1999-08-01 Eli Zaretskii <eliz@gnu.org>
5222
5223 * international/mule.el (set-auto-coding): Allow whitespace before
5224 and after the "variable: value" pair.
5225
5226 1999-07-30 Ken'ichi Handa <handa@gnu.org>
5227
5228 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
5229 (default-sendmail-coding-system): Doc-string fixed.
5230
5231 1999-07-30 Dave Love <fx@gnu.org>
5232
5233 * subr.el (assoc-delete-all): New function, renamed from
5234 frame-delete-all.
5235
5236 * frame.el: Change comments to doc strings and other doc fixes.
5237 (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
5238 Callers changed.
5239 (set-background-color, set-foreground-color, set-cursor-color)
5240 (set-mouse-color, set-border-color): Offer completion of colours.
5241 (cursor): Add :version to defgroup.
5242
5243 * facemenu.el (list-colors-display): Make it work on ttys.
5244 (facemenu-read-color): Likewise.
5245
5246 1999-07-30 Richard M. Stallman <rms@gnu.org>
5247
5248 * frame.el (frame-notice-user-settings): If background
5249 color has been changed, update background-mode from it,
5250 then update faces.
5251
5252 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com>
5253
5254 * net-utils.el (finger): Don't do indirect fingering.
5255
5256 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5257
5258 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
5259 rules. Add separator at end of holidays.
5260 (cal-tex-rules): New customizable variable.
5261 (cal-tex-latexify-list): Add optional parameter to put separator
5262 at end.
5263
5264 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu>
5265
5266 * textmodes/fill.el (fill-individual-paragraphs): Calculate new
5267 fill prefix on each line while looping to the end of paragraph.
5268 End paragraph if it's longer than the existing fill prefix.
5269
5270 * textmodes/fill.el (fill-context-prefix): Doc fix.
5271
5272 1999-07-30 Dave Love <fx@gnu.org>
5273
5274 * font-lock.el (jit-lock): Fix :load, add :version.
5275
5276 1999-07-30 Eli Zaretskii <eliz@gnu.org>
5277
5278 * term/pc-win.el (msdos-face-setup): Register standard colors in
5279 Vface_tty_color_alist.
5280 (face-color-supported-p, face_color_gray_p): New functions.
5281
5282 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
5283 is bound.
5284
5285 * startup.el (command-line): Don't register default colors for
5286 MSDOS window-system.
5287
5288 1999-07-29 Dave Love <fx@gnu.org>
5289
5290 * f90.el (f90-mode-syntax-table): Change backslash to escape, not
5291 charquote.
5292
5293 * lisp-mode.el (eval-defun): Re-written to avoid
5294 capturing variables.
5295
5296 * picture.el (picture-beginning-of-line): Don't call
5297 hscroll-point-visible now we have real autoscrolling.
5298 (picture-end-of-line, picture-newline, picture-open-line):
5299 Likewise.
5300
5301 * international/latin-8.el: New file.
5302 * international/latin-9.el: New file.
5303
5304 1999-07-28 Dave Love <fx@gnu.org>
5305
5306 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
5307
5308 * msb.el: Require cl only when compiling.
5309 (msb--home-dir): Deleted.
5310 (msb--format-title): Use abbreviate-file-name.
5311 (msb--choose-file-menu): Simplify string comparison.
5312
5313 1999-07-28 Gerd Moellmann <gerd@gnu.org>
5314
5315 * faces.el (toolbar): Add face definition for mono displays.
5316
5317 1999-07-27 Richard M. Stallman <rms@gnu.org>
5318
5319 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
5320
5321 * frame.el (frame-initialize): When setting frame-initial-frame-alist,
5322 force copying of default-frame-alist.
5323
5324 1999-07-26 Ken'ichi Handa <handa@gnu.org>
5325
5326 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
5327
5328 1999-07-26 Richard M. Stallman <rms@gnu.org>
5329
5330 * frame.el (set-mouse-color): If new color is nil,
5331 really respecify the current color.
5332
5333 1999-07-26 Gerd Moellmann <gerd@gnu.org>
5334
5335 * faces.el (bitmap-area): Change background of face `bitmap-area'
5336 to white for mono displays.
5337
5338 1999-07-26 Kenichi Handa <handa@etl.go.jp>
5339
5340 * international/ccl.el (ccl-embed-symbol): New function.
5341 (ccl-program-p): Deleted. Now it's implemented in C code.
5342 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
5343 (ccl-compile-translate-character): Likewise.
5344 (ccl-compile-map-single): Likewise.
5345 (ccl-compile-multiple-map-function): Likewise.
5346 (declare-ccl-program): Doc-string modified.
5347 (check-ccl-program): Check compiled CCL code by ccl-program-p.
5348
5349 1999-07-25 Ken'ichi Handa <handa@etl.go.jp>
5350
5351 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
5352
5353 1999-07-25 Markus Rost <rost@gnu.org>
5354
5355 * cus-edit.el (custom-save-variables, custom-save-faces): Sort
5356 the entries to make custom-file more readable.
5357
5358 1999-07-25 Richard M. Stallman <rms@gnu.org>
5359
5360 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
5361
5362 * emacs-lisp/edebug.el: Delete compatibility code.
5363 (edebug-next-token-class): If . is followed by a digit,
5364 return `symbol' for the token class.
5365
5366 * startup.el (command-line): If we don't find the user's init file,
5367 set user-init-file to nil.
5368
5369 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5370
5371 * info-look.el (info-lookup-interactive-arguments): Add optional
5372 argument query for new choice of help mode.
5373 (info-lookup-symbol): Use it.
5374 (info-lookup-file): Ditto.
5375 (info-lookup): Don't switch to other window, if already in Info
5376 buffer.
5377
5378 1999-07-23 Dave Love <fx@gnu.org>
5379
5380 * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
5381 syntax.
5382 (fortran-fontify-string, fortran-match-!-comment): Deleted.
5383 (fortran-font-lock-syntactic-keywords): New variable.
5384 (fortran-mode): Use it.
5385 (fortran-font-lock-keywords-1): Don't do comments.
5386 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
5387 match data.
5388
5389 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
5390
5391 * msb.el (msb-menu-bar-update-buffers): Renamed from
5392 menu-bar-update-buffers.
5393 (msb-custom-set, msb--toggle-menu-type): Call
5394 msb-menu-bar-update-buffers.
5395 (msb-mode): Revise the hook setting.
5396
5397 * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
5398
5399 1999-07-23 Gerd Moellmann <gerd@gnu.org>
5400
5401 * font-lock.el, help.el, simple.el: Re-integrate previously
5402 described changes that were lost due to errors while checking them
5403 in.
5404
5405 1999-07-23 Kevin Blake <kblake@ticnet.com>
5406
5407 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
5408
5409 1999-07-23 Ken'ichi Handa <handa@etl.go.jp>
5410
5411 * international/encoded-kb.el
5412 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
5413 but push it to unread-command-events.
5414 (encoded-kbd-self-insert-iso2022-8bit): Likewise.
5415 (encoded-kbd-self-insert-sjis): Likewise.
5416 (encoded-kbd-self-insert-big5): Likewise.
5417
5418 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
5419 before left margin and fill-prefix by fill-find-break-point.
5420
5421 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5422
5423 * info-look.el (info-lookup-setup-mode): Don't give up, if
5424 info-lookup-make-completions returns an error.
5425 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
5426 name latex, not latex2e.
5427
5428 1999-07-21 Richard M. Stallman <rms@gnu.org>
5429
5430 * replace.el (perform-replace): Turn off case-fold-search
5431 if FROM-STRING argument has uppercase in it.
5432
5433 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5434
5435 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
5436 mode is on. Don't use end of changed text.
5437
5438 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5439
5440 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
5441 (cl-hash-table-p): Renamed from hash-table-p.
5442 (cl-hash-table-count): Renamed from hash-table-count.
5443 (maphash): Alias to cl-maphash removed.
5444 (gethash): Likewise.
5445 (puthash): Likewise.
5446 (remhash): Likewise.
5447 (clrhash): Likewise.
5448
5449 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5450
5451 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
5452 third arg non-nil. See comment there why this isn't a good idea.
5453
5454 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5455
5456 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
5457
5458 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
5459 sit-for with 3rd arg non-nil to prevent redisplay.
5460
5461 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5462
5463 * image.el (image-type-from-file-header): If file doesn't
5464 have a directory part, add data-directory.
5465
5466 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5467
5468 * tooltip.el (tooltip-gud-tips-p): Set default to nil.
5469 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
5470 motion handling when tooltip-gud-tips-p is nil.
5471
5472 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5473
5474 * tooltip.el (tooltip-mode): Don't use `plusp'.
5475 (tooltip-active): Use initial value of nil.
5476
5477 * jit-lock.el (jit-lock-mode): Don't use `plusp'.
5478
5479 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5480
5481 * bindings.el (make-mode-line-mouse-sensitive): Add key
5482 definitions for `top-line'.
5483
5484 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5485
5486 * faces.el (top-line): New face.
5487
5488 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5489
5490 * image.el (image-type-regexps): Add regexp for PS files.
5491
5492 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5493
5494 * faces.el (set-face-attribute): Fix wrong handling of frame
5495 begin equal to t.
5496
5497 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5498
5499 * image.el (image-type-regexps): Add PNG format.
5500
5501 1999-07-21 Dave Love <fx@gnu.org>
5502
5503 * bindings.el (mode-line-modified): New variable.
5504 (mode-line-mode-menu-1): Switch to appropriate window before
5505 showing menu.
5506
5507 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5508
5509 * faces.el (face-underline): Removed.
5510 (face-underline-color): Ditto.
5511
5512 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5513
5514 * faces.el (face-x-resources): Fix typo.
5515
5516 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5517
5518 * faces.el: Remove handling of `:relief', extend handling of
5519 `:box'.
5520 (frame-set-background-mode): Choose new defface specs after
5521 frame parameters have changed.
5522
5523 * cus-face.el: Ditto.
5524
5525 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5526
5527 * custom.el (defface): Extend documentation to include new
5528 face attributes.
5529
5530 * cus-face.el (custom-face-attributes): Add overline,
5531 strike-through, box.
5532
5533 * faces.el (face-valid-attribute-values): Handle overline,
5534 strike-through, box.
5535 (face-attribute-name-alist): Add pairs for new face attributes.
5536 (describe-face): Handle new face attributes.
5537
5538 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5539
5540 * faces.el (face-x-resources): Add overline, strike-through, box.
5541
5542 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5543
5544 * enriched.el (enriched-translations): Add `display' and
5545 "x-display".
5546 (enriched-handle-display-prop): New.
5547 (enriched-decode-display-prop): New.
5548
5549 * format.el (top-level): Give `display' property
5550 `format-list-atomic-p.
5551 (format-annotate-single-property-change): Test that property.
5552 If present, treat list property values like atoms.
5553
5554 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5555
5556 * cus-face.el (custom-face-attributes): Use `choice' everywhere
5557 so that "*" can be entered.
5558
5559 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5560
5561 * cus-face.el (custom-face-attributes): Don't use `#''.
5562
5563 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5564
5565 * cus-face.el (custom-face-attributes): Return underline
5566 face attribute directly from the second lambda of underline.
5567
5568 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5569
5570 * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
5571
5572 * frame.el (after-setting-font-hooks): New variable.
5573 (set-frame-font): Run those hooks.
5574
5575 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
5576
5577 * faces.el (set-face-attribute): Fix doc string.
5578
5579 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5580
5581 * cus-face.el (custom-face-attributes): Accept color name.
5582
5583 * faces.el (face-underline-p): Accept unspecified underlining.
5584 (face-underline): Ditto. Fix doc string.
5585
5586 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5587
5588 * faces.el (face-underline-color): New function.
5589
5590 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5591
5592 * cus-face.el (custom-face-attributes): Support underline coloring.
5593 Added slot to choose a color.
5594
5595 * faces.el (face-underline): New function.
5596 (face-underline-p): Support underline coloring.
5597 Return nil only if the underline attribute is 'normal.
5598 (set-face-underline): New function.
5599 (face-valid-attribute-values): Support underline coloring.
5600
5601 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5602
5603 * image.el (insert-image): Use `display' instead of `glyph'
5604 as text property name.
5605 (put-image): Ditto.
5606 (image-type-from-file-header): Use insert-file-contents-literally.
5607
5608 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5609
5610 * easymenu.el (easy-menu-do-add-item): Don't use the empty
5611 string to indicate separators.
5612
5613 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5614
5615 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
5616 instead of message-log.
5617
5618 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5619
5620 * faces.el (bitmap-area): New face.
5621
5622 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5623
5624 * image.el (insert-image): New.
5625
5626 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5627
5628 * frame.el (blink-cursor): Set the symbol's value.
5629 (show-trailing-whitespace): Change group to font-lock.
5630
5631 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5632
5633 * jit-lock.el: New.
5634 * font-lock.el: Add jit-mode as new support mode.
5635
5636 * font-lock.el (font-lock-fontify-keywords-region): Stop when
5637 reaching end instead of letting re-search-forward signal an error.
5638 (demand-lock-mode): New.
5639 (font-lock-turn-on-thing-lock): Add demand-lock-mode.
5640 (font-lock-turn-off-thing-lock): Ditto.
5641 (font-lock-after-fontify-buffer): Ditto.
5642 (font-lock-after-unfontify-buffer): Ditto.
5643
5644 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5645
5646 * gs.el: New file.
5647
5648 * startup.el (command-line-1): Activate tooltip mode if
5649 interactive.
5650
5651 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5652
5653 * faces.el (toolbar): Grey default background.
5654 (modeline): Ditto.
5655
5656 * image.el (image-type-regexps): New.
5657 (image-type-from-file-header): New.
5658 (create-image): Call it.
5659
5660 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5661
5662 * image.el: New file.
5663
5664 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5665
5666 * bindings.el (mode-line-format): Replace `mode-name' with
5667 `(:eval mode-line-mode-name)'.
5668 (mode-line-mode-name): New.
5669 (make-mode-line-mouse-sensitive): Don't change default value
5670 of `mode-name'.
5671
5672 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5673
5674 * tooltip.el: New file.
5675
5676 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5677
5678 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
5679 instead of mouse-3 to pop up menus.
5680 (mode-line-kill-buffer): Removed.
5681 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
5682 buffer name.
5683 (mode-line-buffer-menu-1): Removed.
5684
5685 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
5686
5687 * bindings.el (mode-line-buffer-identification-keymap): New.
5688 (mode-line-buffer-menu-keymap): New.
5689 (mode-line-mode-menu-keymap): New.
5690 (mode-line-unbury-buffer): New.
5691 (mode-line-other-buffer): New.
5692 (mode-line-kill-buffer): New.
5693 (mode-line-buffer-menu-1): New.
5694 (mode-line-mode-menu-1): New.
5695 (make-mode-line-mouse-sensitive): New.
5696
5697 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5698
5699 * help.el (describe-key-briefly): Handle mode line strings
5700 with local-map properties.
5701 (describe-key): Ditto.
5702 (mode-line-key-binding): New.
5703
5704 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5705
5706 * scroll-bar.el (scroll-bar-timer): New.
5707 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
5708
5709 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5710
5711 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
5712 and `bottom'.
5713
5714 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5715
5716 * scroll-bar.el (scroll-bar-toolkit-scroll): New.
5717 (global): Use different key bindings if using tookit scroll bars.
5718
5719 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5720
5721 * faces.el (modeline): Define mode line face with relief for
5722 class color, only.
5723 (toolbar): New face.
5724
5725 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5726
5727 * frame.el (frame-initialize): Set frame-creation-function to
5728 tty-create-frame-with-faces.
5729
5730 * faces.el (frame-set-background-mode): Make it work for
5731 window-system nil.
5732
5733 * faces.el (tty-create-frame-with-faces): New.
5734 (face-set-after-frame-default): Make it work for TTY frames.
5735
5736 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5737
5738 * faces.el (face-valid-attribute-values): Use tty-defined-colors.
5739 Return a list of one font family for TTYs. Don't return bitmap
5740 file paths for TTY frames.
5741
5742 * faces.el: Add face specs for tty displays to basic faces.
5743
5744 * font-lock.el (font-lock-comment-face): Add spec for color tty.
5745 (font-lock-string-face): Ditto.
5746 (font-lock-keyword-face): Ditto.
5747 (font-lock-builtin-face): Ditto.
5748 (font-lock-function-name-face): Ditto.
5749 (font-lock-variable-name-face): Ditto.
5750 (font-lock-type-face): Ditto.
5751 (font-lock-constant-face): Ditto.
5752 (font-lock-warning-face): Ditto.
5753
5754 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5755
5756 * startup.el (command-line): Register default tty colors.
5757
5758 * faces.el (face-spec-set-match-display): Recognize `type tty'.
5759
5760 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5761
5762 * faces.el (modeline): For X frames, use a modeline with relief.
5763
5764 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5765
5766 * faces.el (frame-update-faces): Copied from 20.2.
5767 (frame-update-face-colors): Ditto. Code removed that isn't
5768 applicable in the new face implementation.
5769
5770 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5771
5772 * frame.el (show-trailing-whitespace): New.
5773
5774 * faces.el (trailing-whitespace): New basic face.
5775
5776 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5777
5778 * cus-face.el (custom-facep): Always define as alias for facep.
5779
5780 * cus-face.el (custom-face-attributes): Use choice widgets.
5781 Remove :bold and :italic.
5782
5783 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5784
5785 * faces.el (face-charset-registries): Removed since fontset.el
5786 is no always loaded.
5787
5788 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5789
5790 * faces.el (internal-get-face): Added as obsolete function for
5791 compatibility.
5792
5793 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5794
5795 * frame.el (blink-cursor-end): Call show-cursor.
5796 (blink-cursor-mode): Ditto.
5797
5798 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5799
5800 * faces.el (face-spec-reset-face): Reset all attributes to
5801 `unspecified'.
5802 (face-spec-set): Use it.
5803
5804 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5805
5806 * faces.el (read-all-face-attributes): Bug fix.
5807 (face-read-integer): Allow nil default value.
5808 (face-valid-attribute-values): Use symbol names of attribute
5809 values for completion list.
5810
5811 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5812
5813 * faces.el (internal-find-face): Define for compatibility with
5814 20.2.
5815 (face-id): Likewise.
5816
5817 * faces.el (face-id): Return the ID of a realized face for ASCII.
5818
5819 * fontset.el (x-charset-registries): Removed. Now in faces.el.
5820 (x-complement-fontset-spec): Use face-charset-registries.
5821
5822 * faces.el (face-font-selection-order): Set font selection order
5823 from Lisp.
5824 (face-alternative-font-family-alist): Set alternative font
5825 families from Lisp.
5826
5827 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5828
5829 * faces.el (set-face-charset-registries): Set symbol value.
5830
5831 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5832
5833 * faces.el (face-set-after-frame-default): Call function
5834 internal-merge-in-global-face.
5835
5836 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5837
5838 * faces.el (face-list): Return symbols from face-global-alist.
5839
5840 * faces.el (face-list): Return a copy of the face name list so
5841 that it cannot be modified from outside (facemenu.el uses
5842 nreverse, for example).
5843
5844 * cus-face.el (custom-face-attributes): Add :bold and :italic
5845 for compatibility with old code.
5846
5847 * faces.el (set-face-attributes-from-resources): Additional
5848 frame parameter.
5849 (make-face-x-resource-internal): Set attributes from resources
5850 for a given frame or all frames.
5851
5852 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5853
5854 * faces.el (all-faces): Removed.
5855
5856 * custom.el (defface): Add new face attributes to function
5857 comment.
5858
5859 * font-lock.el (font-lock-comment-face): Use new face attribute
5860 names.
5861 (font-lock-string-face): Ditto.
5862 (font-lock-keyword-face): Ditto.
5863 (font-lock-builtin-face): Ditto.
5864 (font-lock-function-name-face): Ditto.
5865 (font-lock-variable-name-face): Ditto.
5866 (font-lock-type-face): Ditto.
5867 (font-lock-reference-face): Ditto.
5868 (font-lock-warning-face): Ditto.
5869 ((boundp 'font-lock-face-attributes)): Ditto.
5870
5871 * cus-face.el (custom-face-attributes): Use new face attributes.
5872
5873 * faces.el (set-face-attribute-from-resource): Initialize
5874 from resources only for X and W32.
5875
5876 * cus-face.el (custom-declare-face): Don't make frame-local
5877 faces.
5878
5879 * faces.el (describe-face): Use princ instead of insert.
5880
5881 * faces.el: Add XLFD manipulation functions from 20.2 again
5882 because fontset.el uses them.
5883 (face-set-after-frame-default): Add empty definition.
5884
5885 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5886
5887 * faces.el (make-face): Correct typo.
5888 (set-face-attribute-from-resource): Use let*.
5889 (face-underline-p): Correct typo.
5890 (face-inverse-video-p): Ditto.
5891 (set-face-stipple): Ditto.
5892 (face-read-string): Make completion-list optional parameter.
5893
5894 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5895
5896 * faces.el (face-charset-registries): Alist mapping charset
5897 symbols to registries and encoding.
5898
5899 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5900
5901 * frame.el (blink-cursor-mode): Use interactive spec "P".
5902
5903 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5904
5905 * frame.el (blink-cursor-mode): Function to toggle blinking cursor
5906 mode. The cursor of selected_window blinks if the mode is enabled.
5907
5908 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5909
5910 * simple.el (next-history-element): Set point to the end of the
5911 prompt if minibuffer-prompt-in-buffer.
5912
5913 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5914
5915 * faces.el (x-font-regexp): Add sub-expression parentheses for
5916 several font name components.
5917
5918 1999-07-21 Gerd Moellmann <gerd@acm.org>
5919
5920 * faces.el (set-face-relief): Use index 12 for relief.
5921 (face-fill-in): Set relief from data.
5922 (internal-make-face): Init relief to zero.
5923
5924 * faces.el (face-spec-set): Call modify-face with additional
5925 parameters for relief and fixed-p.
5926
5927 1999-07-21 Gerd Moellmann <gerd@acm.org>
5928
5929 * cus-face.el: ':fixed and ':relief added.
5930
5931 * faces.el (describe-face): Add fixed font attribute and relief.
5932 (face-attr-match-p): Ditto.
5933 (face-attr-construct): Ditto.
5934 (face-spec-set): Ditto.
5935
5936 1999-07-21 Gerd Moellmann <gerd@acm.org>
5937
5938 * faces.el (internal-make-face): Function to create a Lisp vector
5939 suitable for representing a face.
5940 (make-face): Use it instead of make-vector.
5941 (x-create-frame-with-faces): Use it instead of vector.
5942 (internal-facep): Increase vector size to 14.
5943 (internal-make-face): Ditto.
5944 (face-relief): Access relief thickness.
5945 (face-fixed-p): Access fixed font attribute.
5946 (set-face-fixed-p): Set fixed font attribute.
5947 (set-face-relief): Set relief attribute.
5948 (internal-face-interactive-int): Read int attribute of face.
5949 (modify-face): Add fixed-p and relief parameters.
5950 (copy-face): Handle fixed-p and relief.
5951 (face-equal): Compare fixed-p and relief.
5952 (face-differs-from-default-p): Ditto.
5953 (face-nontrivial-p): Add fixed-p and relief.
5954
5955 1999-07-21 Gerd Moellmann <gerd@acm.org>
5956
5957 * faces.el (eval-when-compile): Add set-face-shadow-thickness.
5958 (internal-facep): Increase vector size.
5959 (make-face): Ditto.
5960 (face-shadow-thickness): Added.
5961 (set-face-shadow-thickness): Added.
5962 (modify-face): Add optional shadow-thickness parameter.
5963 (make-face-x-resource-internal): Add shadows.
5964 (copy-face): Ditto.
5965 (face-equal): Ditto.
5966 (face-differs-from-default-p): Ditto.
5967 (face-nontrivial-p): Ditto.
5968 (face-attr-match-p): Ditto.
5969 (face-attr-construct): Ditto.
5970 (face-spec-set): Ditto.
5971 (face-fill-in): Ditto.
5972
5973 1999-07-21 Gerd Moellmann <gerd@acm.org>
5974
5975 * bench.el (bench-mark-split-window): New bench mark.
5976
5977 1999-07-21 Gerd Moellmann <gerd@acm.org>
5978
5979 * faces.el (set-face-font): Don't pass default font to
5980 x-resolve-font so that font will not have to be of the same
5981 size.
5982
5983 1999-07-20 Dave Love <fx@gnu.org>
5984
5985 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
5986 unconditionally t.
5987
5988 1999-07-20 Karl Heuer <kwzh@gnu.org>
5989
5990 * font-lock.el (c++-font-lock-extra-types): Add "type_info".
5991
5992 1999-07-20 Dave Love <fx@gnu.org>
5993
5994 * help.el (describe-variable): Fix test for customizability.
5995
5996 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
5997 Check for readonly buffer in interactive spec.
5998 (zap-to-char, kill-line, kill-region, comment-region, kill-word)
5999 (backward-kill-word): Add * to interactive spec.
6000
6001 * underline.el (underline-region, ununderline-region): Add * to
6002 interactive spec.
6003
6004 * fill.el (canonically-space-region, justify-current-line): Add *
6005 to interactive spec.
6006 (fill-region-as-paragraph, fill-paragraph, fill-region)
6007 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
6008 readonly buffer in interactive spec.
6009
6010 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
6011 (backward-kill-sentence, kill-sentence): Add * to interactive
6012 spec.
6013
6014 1999-07-19 Richard M. Stallman <rms@gnu.org>
6015
6016 * dired-aux.el (dired-do-shell-command): Doc fix.
6017
6018 * shell.el (shell-unquote-argument): New function.
6019 (shell-directory-tracker): Use shell-unquote-argument.
6020 * comint.el (comint-arguments): Handle \ followed by space or tab.
6021
6022 1999-07-19 John Wiegley <jwiegley@borland.com>
6023
6024 * term.el (ansi-term-fg-faces-vector): Added support for ANSI
6025 color codes 39 and 49, which by the way lynx uses them seem to
6026 mean "foreground reset" and "background reset".
6027
6028 1999-07-19 Karl Heuer <kwzh@gnu.org>
6029
6030 * font-lock.el (c++-keywords): Add "typeid".
6031
6032 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
6033 selects no font, treat that as zero selections, not one.
6034
6035 1999-07-19 Dave Love <fx@gnu.org>
6036
6037 * info.el (Info-search): Don't lose with empty regexp.
6038
6039 * version.el: Cater for (free) `ident' program, not `which'.
6040
6041 * hl-line.el: New file.
6042
6043 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
6044 for modes which don't define menus.
6045
6046 1999-07-16 Richard M. Stallman <rms@gnu.org>
6047
6048 * webjump.el (webjump-sample-sites): Update some URLs.
6049
6050 1999-07-14 Richard Stallman <rms@gnu.org>
6051
6052 * Version 20.4 released.
6053
6054 1999-07-14 Andreas Schwab <schwab@gnu.org>
6055
6056 * compare-w.el (compare-windows): Try to find the next window in
6057 the current frame before looking at the other frames.
6058
6059 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
6060
6061 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
6062 Use cyrillic-jcuken as default input method.
6063
6064 1999-07-12 Richard Stallman <rms@gnu.org>
6065
6066 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
6067 Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
6068
6069 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
6070 (ispell-local-dictionary-alist): Add koi8-r for character set.
6071
6072 * textmodes/flyspell.el (flyspell-get-word):
6073 Add special handling for when ispell-otherchars is empty.
6074
6075 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no>
6076
6077 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
6078 when having nested functons.
6079 (pascal-indent-nested-functions) (pascal-indent-line)
6080 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
6081 indenting nested functions.
6082
6083 1999-07-09 Richard Stallman <rms@gnu.org>
6084
6085 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
6086
6087 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no>
6088
6089 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
6090 the `end' keyword was in the very beginning of the buffer.
6091
6092 1999-07-08 Richard Stallman <rms@gnu.org>
6093
6094 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
6095
6096 * term.el (term-emulate-terminal): Avoid infinite loop
6097 in strange case where minibuffer window is selected but not active.
6098
6099 1999-07-07 Stephen Eglen <stephen@gnu.org>
6100
6101 * progmodes/octave-inf.el (inferior-octave-directory-tracker):
6102 Change regexp so that it doesn't match commands beginning with `cd'.
6103
6104 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6105
6106 * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
6107
6108 1999-07-06 Richard Stallman <rms@gnu.org>
6109
6110 * hscroll.el (hscroll-minibuffer-hook): New function.
6111 (hscroll-global-mode): Add and remove that hook.
6112 Set hscroll-old-truncate-was-global's default value.
6113
6114 1999-07-05 Richard Stallman <rms@gnu.org>
6115
6116 * files.el (revert-buffer): Don't preserve point here.
6117 (revert-buffer-insert-file-contents-function): Doc fix.
6118
6119 * isearch.el (isearch-process-search-char): Write octal 200 correctly.
6120
6121 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
6122 doing a `stat' when it isn't necessary because that can cause
6123 trouble when an NFS server is down.
6124
6125 1999-07-04 Richard Stallman <rms@gnu.org>
6126
6127 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
6128
6129 1999-07-03 Richard Stallman <rms@gnu.org>
6130
6131 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
6132 for \200...\240 also.
6133 (isearch-printing-char): Use unibyte-char-to-multibyte.
6134
6135 1999-07-02 Richard Stallman <rms@gnu.org>
6136
6137 * frame.el (minibuffer-frame-alist): Use defcustom.
6138 (pop-up-frame-alist): Likewise.
6139 (initial-frame-alist): Specify * in the doc string.
6140
6141 * hscroll.el (hscroll-mode): Make it a permanent local.
6142 (hscroll-mode): Don't cancel the timer
6143 if HScroll mode is enabled in some other buffer.
6144
6145 * isearch.el (isearch-done): If search ends in middle of intangible
6146 text (due to text property), move on to the limit of that text.
6147
6148 1999-07-01 Andrew Innes <andrewi@gnu.org>
6149
6150 * man.el (Man-build-man-command): Use value of null-device,
6151 instead of hard-coding "/dev/null".
6152
6153 * dos-w32.el (untranslated-canonical-name): Avoid expanding
6154 ange-ftp file names, which might force ange-ftp to prompt for a
6155 password.
6156
6157 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
6158 to prevent references to temp files.
6159
6160 1999-06-30 Richard Stallman <rms@gnu.org>
6161
6162 * progmodes/sh-script.el (sh-feature): If nothing is known
6163 about the given shell, use the values for `sh'.
6164
6165 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de>
6166
6167 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
6168 to make it non-recursive.
6169
6170 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
6171
6172 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6173
6174 * auto-show.el (auto-show-mode): Fix Typo in :set.
6175
6176 1999-06-29 Richard M. Stallman <rms@gnu.org>
6177
6178 * progmodes/sh-script.el (sh-mode): When setting syntax
6179 table, default to the standard one.
6180
6181 1999-06-27 Richard M. Stallman <rms@gnu.org>
6182
6183 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
6184
6185 1999-06-27 Stefan Monnier <monnier@cs.yale.edu>
6186
6187 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
6188 a frame when `return' is requested (even if pop-up-frames = t)
6189 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
6190 should only be set for the bibtex buffer.
6191
6192 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
6193
6194 * progmodes/compile.el: Deal with compilation-error-screen-columns
6195 being buffer-local.
6196
6197 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6198
6199 * comint.el (comint-password-prompt-regexp): Allow "(again)".
6200
6201 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
6202
6203 * cal-x.el (calendar-only-one-frame-setup): New function.
6204 * calendar.el (calendar): Call it if requested.
6205
6206 1999-06-24 Karl Heuer <kwzh@gnu.org>
6207
6208 * startup.el (iso-8859-n-locale-regexp): Doc fix.
6209
6210 1999-06-22 Richard M. Stallman <rms@gnu.org>
6211
6212 * mail/supercite.el (sc-emacs-features): Doc fix.
6213
6214 1999-06-22 Karl Heuer <kwzh@gnu.org>
6215
6216 * files.el (auto-mode-alist): Add pike-mode.
6217
6218 1999-06-20 Paul R. Eggert <eggert@twinsun.com>
6219
6220 * tar-mode.el (tar-header-block-tokenize): Don't assume that the
6221 last byte of a numeric field is a space or a NUL. Parse it as
6222 potentially part of the number. This is used by GNU tar
6223 1.12.64012 to handle larger values.
6224
6225 1999-06-20 Karl Heuer <kwzh@gnu.org>
6226
6227 * custom.el (custom-handle-keyword): Fix error message.
6228
6229 1999-06-18 Andrew Innes <andrewi@gnu.org>
6230
6231 * mail/smtpmail.el (smtpmail-send-it): Use
6232 convert-standard-filename to make file names for queued mail safe
6233 on Windows (`:' is invalid in file names on Windows).
6234
6235 1999-06-17 Kenichi Handa <handa@etl.go.jp>
6236
6237 * international/mule-cmds.el (describe-current-input-method):
6238 Current-input-method is string.
6239 (toggle-input-method): Docstring fixed.
6240
6241 * international/mule-diag.el
6242 (describe-current-coding-system-briefly): Fix format string.
6243
6244 * international/mule-util.el (coding-system-eol-type-mnemonic):
6245 Docstring modified. Return a string.
6246
6247 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch>
6248
6249 * sql.el (sql-input-ring-file-name): Doc fix.
6250
6251 1999-06-17 Richard M. Stallman <rms@gnu.org>
6252
6253 * calendar/cal-x.el (special-display-buffer-names):
6254 Don't put (get-file-buffer diary-file) on this list.
6255
6256 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov>
6257
6258 * play/mpuz.el (mpuz-try-proposal): Fix message call.
6259 Don't penalize player for certain impossible guesses.
6260
6261 1999-06-16 Andrew Innes <andrewi@gnu.org>
6262
6263 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
6264 return the string "Unk 0 0000" so at least it appears to be a
6265 valid timestamp to `dired-move-to-filename-regexp'.
6266
6267 1999-06-15 Ken'ichi Handa <handa@gnu.org>
6268
6269 * ps-print.el (ps-control-character): Fix previous change.
6270
6271 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6272
6273 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
6274 multiple output of the last message.
6275
6276 1999-06-14 Eli Zaretskii <eliz@gnu.org>
6277
6278 * term/internal.el (IT-display-table-setup): Do not remap \222 to
6279 the ASCII apostrophe, as most DOS codepages have some other glyph
6280 there.
6281
6282 1999-06-14 Ken'ichi Handa <handa@gnu.org>
6283
6284 * language/ethio-util.el (setup-ethiopic-environment-internal):
6285 Use quail-activate-hook instead of obsolete hook quail-mode-hook.
6286 (exit-ethiopic-environment): Likewize.
6287
6288 1999-06-12 Richard M. Stallman <rms@gnu.org>
6289
6290 * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
6291
6292 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6293
6294 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
6295 custom-initialize-default to avoid infinite loop.
6296 (crisp-mode): (defun) Call transient-mark-mode here, not when
6297 loading the file. Run crisp-mode-hook here, and run
6298 crisp-load-hook when loading the file.
6299
6300 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
6301 rmail-summary buffer, search for pattern in rmail-file.
6302
6303 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
6304
6305 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
6306
6307 * ps-print.el (ps-printer-name): Fix custom type.
6308
6309 1999-06-12 Reto Zimmermann <reto@synopsys.com>
6310
6311 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
6312 (vhdl-port-paste-generic-map): Fix indentation bug.
6313 (vhdl-port-paste-port-map): Fix indentation bug.
6314 (vhdl-scan-file-contents): Make scanning case insensitive.
6315
6316 1999-06-11 Richard M. Stallman <rms@gnu.org>
6317
6318 * files.el (write-file): When buffer is not already visiting a file,
6319 don't put buffer name in the minibuffer, just make it the default.
6320 Also handle just directory as arg usefully in that case.
6321
6322 * simple.el (sendmail-user-agent-compose):
6323 Ignore case when inserting the rest of the "other" headers.
6324
6325 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n.
6326
6327 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
6328 (info-lookup-interactive-arguments): Never insert the default
6329 into the minibuffer automatically.
6330
6331 * emacs-lisp/cl-extra.el (getf): Don't call get*.
6332
6333 1999-06-09 Richard M. Stallman <rms@gnu.org>
6334
6335 * simple.el (shell-command): Avoid printing "mark set" message.
6336
6337 1999-06-09 Dave Love <fx@gnu.org>
6338
6339 * progmodes/compile.el (compilation-error-regexp-alist): Allow
6340 digits in program name in first pattern.
6341
6342 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de>
6343
6344 * vc.el (vc-dired-mode): Don't match anything before the date in
6345 dired-move-to-filename-regexp.
6346
6347 1999-06-07 Ken'ichi Handa <handa@gnu.org>
6348
6349 * international/quail.el (quail-define-rules): Fix typo in
6350 docstring.
6351
6352 1999-06-05 Stephen Eglen <stephen@gnu.org>
6353
6354 * iswitchb.el (iswitchb-default-keybindings): Add
6355 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
6356 than when package is loaded.
6357
6358 1999-06-04 Richard M. Stallman <rms@gnu.org>
6359
6360 * startup.el (command-line): Don't set user-init-file directly;
6361 tell `load' to set it.
6362
6363 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
6364
6365 * simple.el (next-history-element):
6366 Handle minibuffer-text-before-history properly when reading sexps.
6367
6368 * disp-table.el (standard-display-european):
6369 For an interactive call by the user,
6370 don't set enable-multibyte-characters,
6371 and don't set the terminal coding system.
6372
6373 * textmodes/refbib.el: Don't print any messages or display
6374 a buffer when loading the library.
6375 (r2b-help): Doc fix.
6376 (r2b-help-message): Update the documentation.
6377 (r2b-load-quietly): Variable deleted.
6378 (r2b-convert-buffer): Doc fix.
6379
6380 1999-06-04 Dave Love <fx@gnu.org>
6381
6382 * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
6383
6384 * auto-show.el: Don't change hooks on loading.
6385 (auto-show-mode): Autoload. Default to nil. Add :set &c.
6386 (auto-show-mode): Add to hooks here.
6387
6388 1999-06-04 Richard Sharman <rsharman@pobox.com>
6389
6390 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
6391 recursion on bogus input.
6392
6393 1999-06-04 Eric M. Ludlam <zappo@ultranet.com>
6394
6395 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
6396 does not select a buffer from the buffers menu, then the attached
6397 frame is not switched to anything.
6398
6399 1999-06-03 Ken'ichi Handa <handa@gnu.org>
6400
6401 * language/vietnamese.el (ccl-encode-vscii): Typo fixed
6402 (viet-viscii-...->viet-vscii...).
6403
6404 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
6405
6406 1999-06-01 Dave Love <fx@gnu.org>
6407
6408 * progmodes/fortran.el: Add :link to defgroup.
6409 (fortran-blink-matching-if): Match ELSE statements too.
6410 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
6411 that filling is always done.
6412
6413 1999-05-31 Richard M. Stallman <rms@gnu.org>
6414
6415 * simple.el (append-next-kill): Use an arg to distinguish
6416 interactive calls from Lisp calls, rather than (interactive-p).
6417
6418 * international/iso-transl.el (iso-transl-language-alist):
6419 Interchange n and N.
6420
6421 1999-05-31 Dave Love <fx@gnu.org>
6422
6423 * msb.el Add to minor-mode-map-alist. Remove hook installation
6424 and keymap munging on load.
6425 (msb-mode): New option.
6426 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
6427 Doc fix.
6428 (msb-mode-map): New variable.
6429 (msb-mode): New command.
6430
6431 1999-05-31 Dave Love <fx@gnu.org>
6432
6433 * ispell.el: (ispell-alternate-dictionary): Fix custom type.
6434 (ispell-complete-word-dict): Likewise.
6435
6436 1999-05-31 Eli Zaretskii <eliz@gnu.org>
6437
6438 * forms.el (forms-save-buffer): Call set-buffer-modified-p to
6439 force the data buffer to be saved, even if the data didn't
6440 change, in case the write filter was modified. Restore the
6441 current record after read-file-filter finishes.
6442
6443 1999-05-29 Karl Heuer <kwzh@gnu.org>
6444
6445 * ispell4.el: Obsolete; file deleted.
6446
6447 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
6448
6449 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
6450 VALUE is a syntax table.
6451
6452 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
6453
6454 * simple.el (zap-to-char): Doc fix.
6455
6456 1999-05-27 Ken'ichi Handa <handa@gnu.org>
6457
6458 * isearch.el (isearch-quote-char): Don't assume character codes
6459 0200 - 0237 stand for characters in some single-byte character
6460 charset.
6461
6462 1999-05-27 Dave Love <fx@gnu.org>
6463
6464 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
6465
6466 1999-05-27 Andreas Schwab <schwab@gnu.org>
6467
6468 * dired-aux.el (dired-insert-subdir-doinsert): Check that the
6469 headerline does not exist already.
6470
6471 1999-05-26 Richard Stallman <rms@gnu.org>
6472
6473 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
6474 Avoid nested null-loops.
6475
6476 1999-05-26 Ken'ichi Handa <handa@gnu.org>
6477
6478 * international/characters.el: Typo fixed; prefered->preferred.
6479
6480 * international/mule-cmds.el (find-coding-systems-for-charsets):
6481 Typo fixed; prefered->preferred.
6482
6483 * map-ynp.el (map-y-or-n-p): Don't inherit the current input
6484 method in read-event.
6485
6486 * international/mule.el (charset-info): Doc-string fixed.
6487
6488 1999-05-25 Ken'ichi Handa <handa@gnu.org>
6489
6490 * mail/smtpmail.el (smtpmail-send-it): Bind
6491 smtpmail-code-conv-from properly.
6492 (smtpmail-send-data-1): If DATA is a multibyte string, encode it
6493 by smtpmail-code-conv-from.
6494
6495 1999-05-24 Richard Stallman <rms@gnu.org>
6496
6497 * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
6498 Binding deleted also.
6499
6500 1999-05-24 Karl Heuer <kwzh@gnu.org>
6501
6502 * comint.el (comint-bol-or-process-mark): Doc fix.
6503
6504 1999-05-23 Dave Love <fx@gnu.org>
6505
6506 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
6507 Enter it on minor-mode-map-alist.
6508 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed.
6509 Autoload. Add custom setter.
6510 (crisp-mark-line): Doc fix.
6511 (crisp-mode): Autoload. Re-write not to frob keymaps directly.
6512 (crisp-mode-hook): Define.
6513
6514 1999-05-23 Ken'ichi Handa <handa@gnu.org>
6515
6516 * files.el (recover-file): Recover buffer-file-coding-system.
6517
6518 1999-05-22 Richard Stallman <rms@gnu.org>
6519
6520 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
6521 regexp match the date, to avoid treating date as file size.
6522 Add YYYY S option to WESTERN/
6523
6524 * bookmark.el: Delete some XEmacs compatibility code.
6525 (bookmark-jump-noselect): Check vc-backend.
6526
6527 * subr.el (add-to-list): Doc fix.
6528
6529 1999-05-21 Stephen Eglen <stephen@gnu.org>
6530
6531 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
6532
6533 1999-05-18 Richard Stallman <rms@gnu.org>
6534
6535 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
6536 non-space after the @anchor command.
6537 (texinfo-format-var): Handle other nested constructs, using
6538 texinfo-parse-expanded-arg and texinfo-discard-command, not
6539 texinfo-parse-arg-discard.
6540
6541 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
6542 (debug): Bind and use debugger-outer-inhibit-redisplay.
6543 Bind inhibit-redisplay to nil.
6544 (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
6545
6546 1999-05-17 Dave Love <fx@gnu.org>
6547
6548 * help.el (describe-function-1): Extra arg, interactive-p.
6549 (describe-key, describe-function): Use it.
6550
6551 1999-05-17 Karl Heuer <kwzh@gnu.org>
6552
6553 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
6554
6555 1999-05-16 Dave Love <fx@gnu.org>
6556
6557 * cus-start.el (all): Delete selective-display. Add scroll-margin,
6558 scroll-preserve-screen-position, scroll-conservatively.
6559
6560 1999-05-16 Dave Love <fx@gnu.org>
6561
6562 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
6563
6564 1999-05-15 Reto Zimmermann <reto@Synopsys.COM>
6565
6566 * progmodes/vhdl-mode.el: Completely revised and massively extended.
6567
6568 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6569
6570 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
6571 magic number and is not associated with a file.
6572
6573 1999-05-14 Richard M. Stallman <rms@gnu.org>
6574
6575 * files.el (find-file-noselect-1): Fix previous change.
6576
6577 1999-05-14 Simon Marshall <simon@gnu.org>
6578
6579 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
6580
6581 1999-05-13 Ken'ichi Handa <handa@gnu.org>
6582
6583 * international/mule-diag.el (mule-diag): Change MULE to Mule in
6584 docstring.
6585
6586 * international/mule-cmds.el: Change MULE to Mule in docstrings
6587 and menus.
6588
6589 1999-05-10 Kenichi HANDA <handa@etl.go.jp>
6590
6591 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
6592 to correctly reflect the value of BaseLineOffset in
6593 RelativeCompose. Now the value of RelativeCompose is an array of
6594 low and high positions.
6595 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
6596 RLC for the above change.
6597
6598 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org>
6599
6600 * comint.el (comint-password-prompt-regexp): Modified to match the
6601 output of ksu and ssh-add.
6602
6603 1999-05-11 Kenichi HANDA <handa@etl.go.jp>
6604
6605 * language/korea-util.el (isearch-toggle-korean-input-method):
6606 Adjusted for the change of input method handling in isearch.el.
6607 (isearch-hangul-switch-symbol-ksc): Likewise.
6608 (isearch-hangul-switch-hanja): Likewise.
6609
6610 1999-05-10 Dave Love <fx@gnu.org>
6611
6612 * help.el (help-make-xrefs): Fix typo.
6613
6614 1999-05-10 Andreas Schwab <schwab@gnu.org>
6615
6616 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
6617 unibyte-display-via-language-environment.
6618
6619 * help.el (help-make-xrefs): Handle more cases when looking for
6620 commands in a keymap description.
6621
6622 1999-05-10 Eli Zaretskii <eliz@gnu.org>
6623
6624 * loadup.el: For ms-dos systems, load ccl and codepage.
6625
6626 1999-05-09 Ken'ichi Handa <handa@gnu.org>
6627
6628 * ps-print.el (ps-control-character): Call
6629 ps-mule-prepare-ascii-font to setup ASCII fonts.
6630
6631 * ps-mule.el (ps-mule-begin-job): Redo this change "if
6632 ps-multibyte-buffer is nil, use
6633 ps-mule-font-info-database-default."
6634
6635 1999-05-08 Ken Stevens <k.stevens@ieee.org>
6636
6637 * ispell.el (ispell-local-dictionary-alist): New variable for
6638 customizing local dictionaries not accessable by everyone.
6639 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
6640 (ispell-required-version): Changed format `(major minor
6641 revision)' to support general pattern matching.
6642 (ispell-tex-skip-alists): AMS Tex block comment and `\author'
6643 skip region commented out due to incorrect skip potential in std latex.
6644 (ispell-word): Removed `when' macro. Fixed bug of not restoring
6645 cursor point on small words for calls from `ispell-minor-mode'.
6646 (check-ispell-version): Tests and accepts versions major.minor
6647 and above, with adjustments for interactions in 3.1.0-3.1.11.
6648 (ispell-get-line): No longer skips ispell process special characters.
6649 (ispell-comments-and-strings): Removed `when' macro call.
6650 (ispell-minor-check): Requires ispell-word to restore cursor point.
6651 (ispell-buffer-local-parsing): Supports checking comments only.
6652
6653 1999-05-08 Karl Heuer <kwzh@gnu.org>
6654
6655 * comint.el (comint-password-prompt-regexp): Fix last change to be
6656 more specific.
6657
6658 1999-05-07 Richard M. Stallman <rms@gnu.org>
6659
6660 * subr.el (with-temp-message): Fix the other call to message
6661 to use %s.
6662
6663 1999-05-07 Michael Ernst <mernst@alum.mit.edu>
6664
6665 * gud.el (gud-format-command): "%F" means file sans extension.
6666 (jdb): Use %F, not %f, for gud-break.
6667
6668 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org>
6669
6670 * comint.el (comint-password-prompt-regexp): Modified so that it
6671 matches the output of kinit.
6672
6673 1999-05-06 Greg Stark <gsstark@mit.edu>
6674
6675 * timezone.el (timezone-parse-date): Recognize new format used in
6676 internet cookies.
6677
6678 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu>
6679
6680 * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
6681
6682 1999-05-04 Andrew Innes <andrewi@gnu.org>
6683
6684 * time.el (display-time-update): Allow for wrap-around when
6685 checking against display-time-server-down-time.
6686
6687 1999-05-04 Ken'ichi Handa <handa@gnu.org>
6688
6689 * international/mule-diag.el (describe-coding-system): Fix English
6690 message.
6691
6692 1999-05-03 Jason Rumney <jasonr@altavista.net>
6693
6694 * term/w32-win.el: Change the x-charset-registry property for the
6695 Japanese charsets that are supported by Japanese Windows fonts.
6696
6697 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
6698
6699 * diary-lib.el (diary-remind): Rewritten to behave sensibly for
6700 diary-block diary entries for which the reminders and the diary
6701 entries can overlap.
6702
6703 1999-05-02 Jason Rumney <jasonr@altavista.net>
6704
6705 * term/w32-win.el (mouse-set-font): Ensure constructed fontset
6706 matches the font selected in the dialog.
6707
6708 1999-05-02 Dave Love <fx@gnu.org>
6709
6710 * browse-url.el (browse-url-browser-function): Add :version.
6711
6712 * international/mule.el (auto-coding-alist): Add .tgz.
6713
6714 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il>
6715
6716 * international/codepage.el (cp-coding-system-for-codepage-1):
6717 Make the magnification parameter for the -dos encoder be 2.
6718
6719 1999-05-2 Andrew Innes <andrewi@gnu.org>
6720
6721 * term/w32-win.el (w32-drag-n-drop): Select file in window where
6722 it is dropped, rather than current window.
6723
6724 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
6725 after switching buffer, as case-fold-search is a buffer local
6726 variable.
6727
6728 * w32-fns.el (convert-standard-filename): Only convert directory
6729 separators to backslash if the interactive shell is one of the
6730 standard Windows shells that has DOS semantics.
6731
6732 * ls-lisp.el (ls-lisp-format-time): Trap errors from
6733 format-time-string, and return a suitable string to indicate the
6734 timestamp was invalid.
6735
6736 * hexl.el (hexlify-command): Apply shell-quote-argument after
6737 expanding hexl-program in case exec-directory contains a space.
6738 (dehexlify-command): Ditto.
6739
6740 * dos-w32.el (file-name-buffer-file-type-alist): Remove various
6741 file extension regexps which aren't necessarily binary files.
6742 (direct-print-region-helper): Use subst-char-in-string instead of
6743 binding directory-sep-char to convert filenames to DOS syntax.
6744 (direct-print-region-use-command-dot-com): New variable.
6745 (direct-print-region-helper): Use it to control whether to invoked
6746 command.com to print on Windows 9x.
6747
6748 * browse-url.el (browse-url-browser-function): Default to
6749 browse-url-default-windows-browser on windows-nt.
6750 (browse-url-default-windows-browser): New function.
6751
6752 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il>
6753
6754 * forms.el (forms-mode): Don't call forms-first-record or
6755 forms-last-record if the data file has zero records.
6756
6757 1999-04-29 Richard M. Stallman <rms@gnu.org>
6758
6759 * files.el (find-file-noselect-1): If buffer-file-name has changed
6760 after find-file-not-found-hooks runs, recompute the truename.
6761 And don't use FILENAME after that point.
6762
6763 1999-04-27 Dave Love <fx@gnu.org>
6764
6765 * paren.el (show-paren-mode)
6766 * which-func.el (which-func-mode-global)
6767 * type-break.el (type-break-mode)
6768 * time.el (display-time-mode)
6769 * rsz-mini.el (resize-minibuffer-mode)
6770 * mouse-sel.el (mouse-sel-mode)
6771 * icomplete.el (icomplete-mode)
6772 * hscroll.el (hscroll-global-mode)
6773 * help.el (temp-buffer-resize-mode)
6774 * font-lock.el (global-font-lock-mode)
6775 * delsel.el (delete-selection-mode)
6776 * avoid.el (mouse-avoidance-mode)
6777 * autoinsert.el (auto-insert-mode)
6778 * winner.el (winner-mode): Doc fix.
6779
6780 1999-04-26 Karl Heuer <kwzh@gnu.org>
6781
6782 * mail/rmail.el (rmail-next-same-subject): When searching, ignore
6783 the same whitespace that was ignored in choosing the subject string.
6784
6785 1999-04-26 Richard M. Stallman <rms@gnu.org>
6786
6787 * info.el (Info-find-node): Position properly after finding anchor.
6788
6789 * cus-start.el (all): Handle unibyte-display-via-language-environment.
6790
6791 * simple.el (indent-new-comment-line): Fix previous change.
6792
6793 * complete.el: Delete the wildcard expansion feature
6794 since that is now standard in find-file.
6795 (PC-try-load-many-files): Function deleted.
6796 (PC-after-load-many-files): Function deleted.
6797 (PC-many-files-list): Variable deleted.
6798 (PC-disable-wildcards): Variable deleted.
6799 (partial-completion-mode): Don't enable the wildcard feature.
6800
6801 * complete.el (PC-look-for-include-file): Don't set global variables
6802 `error', `buf' and `filename' here.
6803
6804 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
6805
6806 1999-04-26 John Wiegley <johnw@oneworld.new-era.com>
6807
6808 * textmodes/outline.el (outline-regexp): Doc fix.
6809
6810 1999-04-26 John Wiegley <johnw@borland.com>
6811
6812 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
6813 C++Builder 4.0 error message syntax.
6814
6815 1999-04-26 Mark Diekhans <markd@Grizzly.COM>
6816
6817 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
6818 supported, use find -exec.
6819
6820 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
6821
6822 * textmodes/texinfmt.el (texinfo-format-buffer): Bind
6823 coding-system-for-write, to avoid hanging when non-interactive.
6824
6825 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
6826
6827 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
6828 start with a newline.
6829
6830 1999-04-13 Ken'ichi Handa <handa@gnu.org>
6831
6832 * international/mule-conf.el (x-ctext): New coding system.
6833
6834 1999-04-12 Richard M. Stallman <rms@gnu.org>
6835
6836 * international/mule-cmds.el (input-method-function):
6837 Add permanent-local property.
6838
6839 1999-04-12 Dave Love <fx@gnu.org>
6840
6841 * jka-compr.el (jka-compr-insert-file-contents): Fix previous
6842 change to use jka-compr-byte-compiler-base-file-name.
6843
6844 * supercite.el (sc-scan-info-alist): Revert last change.
6845 (sc-attrib-selection-list): Fix :type here instead.
6846
6847 1999-04-11 Eli Zaretskii <eliz@gnu.org>
6848
6849 * international/mule.el (auto-coding-alist-lookup): Include ms-dos
6850 in the list of case-insensitive filesystems.
6851
6852 1999-04-09 Kenichi Handa <handa@etl.go.jp>
6853
6854 * international/fontset.el (create-fontset-from-fontset-spec):
6855 Don't register duplicated alias fontset names.
6856
6857 1999-04-08 Richard Stallman <rms@gnu.org>
6858
6859 * international/mule.el (auto-coding-alist-lookup): New function.
6860 (set-auto-coding): Use auto-coding-alist-lookup.
6861
6862 * jka-compr.el (jka-compr-insert-file-contents):
6863 Use auto-coding-alist-lookup to check for files that
6864 should not have eol conversion, in the unibyte case.
6865
6866 1999-04-07 Dave Love <fx@gnu.org>
6867
6868 * help.el (describe-variable): Check custom-loads property as well
6869 as custom-type.
6870
6871 * abbrev.el (abbrev-mode): Customizing sets the default value.
6872
6873 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de>
6874
6875 * vc.el (vc-backend-revert): For CVS files that were made
6876 writeable with "cvs edit", call "cvs unedit" to undo that.
6877
6878 1999-04-08 Dave Love <fx@gnu.org>
6879
6880 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
6881 more.
6882 (sc-emacs-features): Recognize Emacs 20.
6883 (sc-read-string): Use history arg.
6884 (sc-scan-info-alist): Check for rtnvalue a cons.
6885
6886 1999-04-08 Kenichi HANDA <handa@etl.go.jp>
6887
6888 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
6889 coding system to encode the message by
6890 select-message-coding-system.
6891
6892 1999-04-07 Richard Stallman <rms@gnu.org>
6893
6894 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
6895
6896 * winner.el: Reorder definitions.
6897
6898 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
6899
6900 * mail/rmail.el (rmail-decode-babyl-format):
6901 Undo previous change.
6902
6903 1999-04-06 Richard Stallman <rms@gnu.org>
6904
6905 * info.el (Info-find-node): Check for an anchor at the
6906 proper place, before reading an indirect file.
6907
6908 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
6909
6910 * jka-compr.el (jka-compr-insert-file-contents):
6911 Use raw-text-unix when we want no conversion.
6912
6913 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
6914
6915 * timezone.el (timezone-parse-date): Corrected regexp for
6916 style (5) date format so that tenths of seconds are optional.
6917
6918 1999-04-05 Eli Zaretskii <eliz@gnu.org>
6919
6920 * term/internal.el (dos-cpNNN-setup): New function, with the guts
6921 of dos-codepage-setup.
6922 (cjk-codepages-alist): New variable, an alist of Far-Eastern
6923 codepages for which there's no need to set up cpNNN coding
6924 systems.
6925 (dos-codepage-setup): Support Far-Eastern DOS terminals.
6926
6927 1999-04-05 Richard Stallman <rms@gnu.org>
6928
6929 * mail/rmail.el (rmail-ignored-headers): Doc fix.
6930
6931 1999-04-02 Richard Stallman <rms@gnu.org>
6932
6933 * progmodes/compile.el (compilation-handle-exit): Do right thing
6934 if (car status) doesn't end in a newline.
6935
6936 1999-04-01 Dave Love <fx@gnu.org>
6937
6938 * progmodes/sql.el (SQL): Add defgroup :version.
6939
6940 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6941
6942 * emacs-lisp/bytecomp.el (byte-compile-file): Clear
6943 buffer-file-coding-system. If the coding system used is raw-text,
6944 etc., make the *Compiler Input* buffer unibyte.
6945
6946 * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
6947
6948 * loadup.el: Don't write the fns-...el file if not dumping.
6949
6950 1999-03-31 Dave Love <fx@gnu.org>
6951
6952 * snmp-mode.el (snmp): Fix defgroup :version.
6953
6954 * hilit-chg.el (highlight-changes): Add defgroup :version.
6955
6956 1999-03-31 Andreas Schwab <schwab@gnu.org>
6957
6958 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
6959 the gnus-save-hidden-threads macro.
6960
6961 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk>
6962
6963 * faces.el (face-set-after-frame-default): Obey the
6964 `customized-face' for new faces.
6965
6966 1999-03-30 Dave Love <fx@gnu.org>
6967
6968 * international/mule-cmds.el (current-language-environment): Doc fix.
6969 * abbrev.el (abbrev-mode): Doc fix.
6970 * autoinsert.el (auto-insert-mode): Doc fix.
6971 * complete.el (partial-completion-mode): Doc fix.
6972 * avoid.el (mouse-avoidance-mode): Doc fix.
6973 * delsel.el (delete-selection-mode): Doc fix.
6974 * font-lock.el (global-font-lock-mode): Doc fix.
6975 * help.el (temp-buffer-resize-mode): Doc fix.
6976 * hscroll.el (hscroll-global-mode): Doc fix.
6977 * icomplete.el (icomplete-mode): Doc fix.
6978 * mouse-sel.el (mouse-sel-mode): Doc fix.
6979 * paren.el (show-paren-mode): Doc fix.
6980 * rsz-mini.el (resize-minibuffer-mode): Doc fix.
6981 * time.el (display-time-mode): Doc fix.
6982 * type-break.el (type-break-mode): Doc fix.
6983 * which-func.el (which-func-mode-global): Doc fix.
6984 * winner.el (winner-mode): Doc fix.
6985
6986 1999-03-30 Michael Ernst <mernst@alum.mit.edu>
6987
6988 * wid-edit.el (widget-before-change): Signal text-read-only rather
6989 than an ordinary error.
6990
6991 1999-03-30 Richard M. Stallman <rms@gnu.org>
6992
6993 * repeat.el: Don't require advice.
6994 (repeat): Do function-indirection in check for kbd macro.
6995 In self-insert case, use the *last* char in INSERTION.
6996
6997 1999-03-30 Karl Heuer <kwzh@gnu.org>
6998
6999 * progmodes/cc-cmds.el (c-indent-command): Doc fix.
7000
7001 1999-03-29 Andreas Schwab <schwab@gnu.org>
7002
7003 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
7004 comint-input-filter-functions. Make variables related to shell
7005 directory tracking local.
7006
7007 1999-03-26 Andreas Schwab <schwab@gnu.org>
7008
7009 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
7010
7011 * simple.el (shell-command-on-region): Cope with exit-status being
7012 nil, which happens if call-process-region was interrupted.
7013
7014 1999-03-26 Richard M. Stallman <rms@gnu.org>
7015
7016 * simple.el (indent-new-comment-line): Handle use at a point
7017 after a comment-end. Handle multiple comments.
7018
7019 * mail/rmail.el (rmail-decode-babyl-format):
7020 To prevent locking, bind buffer-file-name to nil.
7021
7022 1999-03-26 Karl Fogel <kfogel@red-bean.com>
7023
7024 * mail-hist.el (mail-hist-current-header-name): Don't make
7025 off-by-one-error when determining if in message body.
7026
7027 1999-03-25 Andrew Innes <andrewi@gnu.org>
7028
7029 * w32-fns.el (set-default-process-coding-system): Copied from
7030 dos-w32.el, but modified to use Unix line endings for process
7031 input, and to add a suitable entry to process-coding-system-alist
7032 for DOS shells.
7033
7034 * dos-fns.el (set-default-process-coding-system): Copied from
7035 dos-w32.el.
7036
7037 * dos-w32.el (set-default-process-coding-system): Move function to
7038 dos-fns.el; a different version is used in w32-fns.el.
7039
7040 1999-03-24 Dave Love <fx@gnu.org>
7041
7042 * info.el (Info-directory-list): Revert change to re-writing
7043 Info-default-directory-list, but put `alternative' first.
7044 (Info-insert-dir): Modify selecting the top dir file as a consequence.
7045
7046 1999-03-23 Simon Marshall <simon@gnu.org>
7047
7048 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
7049 on the line by itself.
7050 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if
7051 it is not in a declarative context.
7052
7053 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk>
7054
7055 * cus-edit.el (custom-variable-prompt): Allow customization of
7056 autoloaded symbols.
7057
7058 1999-03-22 Kenichi HANDA <handa@etl.go.jp>
7059
7060 * simple.el (what-cursor-position): Don't cause error when point
7061 is at invalid multibyte sequence.
7062
7063 1999-03-21 Karl Heuer <kwzh@gnu.org>
7064
7065 * complete.el (partial-completion-mode): Doc fix.
7066
7067 1999-03-19 Richard M. Stallman <rms@gnu.org>
7068
7069 * progmodes/cplus-md.el (old-c++): Remove :group.
7070
7071 * progmodes/c-mode.el (old-c): Remove :group.
7072
7073 1999-03-18 Simon Marshall <simon@gnu.org>
7074
7075 * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
7076 (java-font-lock-keywords-2): Added "strictfp" keyword.
7077
7078 1999-03-17 Jason Rumney <jasonr@altavista.net>
7079
7080 * w32-fns.el (set-w32-system-coding-system) New function.
7081 (w32-system-coding-system) Initialize to 'iso-latin-1.
7082
7083 1999-03-17 Eli Zaretskii <eliz@gnu.org>
7084
7085 * international/mule-cmds.el (set-language-environment): Fix
7086 previous change: don't use dos-codepage when unbound.
7087
7088 1999-03-17 Karl Heuer <kwzh@gnu.org>
7089
7090 * calendar/appt.el (appt-make-list): Fix previous change.
7091
7092 1999-03-16 Richard M. Stallman <rms@gnu.org>
7093
7094 * window.el (shrink-window-if-larger-than-buffer):
7095 Don't try to redisplay with the cursor at the end
7096 on its own line--that would force a scroll and spoil things.
7097
7098 1999-03-16 Eli Zaretskii <eliz@gnu.org>
7099
7100 * international/mule-cmds.el (set-language-environment): Don't use
7101 cpNNN-nonascii-translation-table if it is unbound.
7102
7103 * term/internal.el (dos-codepage-setup): Compute the unibyte
7104 syntax table and bind unibyte-display-via-language-environment
7105 here, rather than at top level, so that resetting to unibyte in
7106 .emacs works as expected.
7107
7108 1999-03-15 Simon Marshall <simon@gnu.org>
7109
7110 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
7111
7112 1999-03-14 Milan Zamazal <pdm@pvt.net>
7113
7114 * abbrev.el (inverse-add-abbrev): Inherit the current input method.
7115
7116 1999-03-14 Kenichi Handa <handa@etl.go.jp>
7117
7118 * international/mule-util.el (detect-coding-with-priority):
7119 Restore the internal database.
7120
7121 1999-03-14 Stephen Eglen <stephen@gnu.org>
7122
7123 * mail/sendmail.el (sendmail-send-it): Fix typo in error string
7124 if mail-from-style has invalid value.
7125
7126 1999-03-12 Karl Heuer <kwzh@gnu.org>
7127
7128 * vc.el (vc-delete-logbuf-window): New var.
7129 (vc-finish-logentry): Use it.
7130
7131 1999-03-12 Richard M. Stallman <rms@gnu.org>
7132
7133 * startup.el (command-line-1): Improve startup msg.
7134
7135 1999-03-12 Eric M. Ludlam <zappo@ultranet.com>
7136
7137 * speedbar.el: Added commentary about stealthy functions.
7138 (speedbar-message) new function.
7139 (speedbar-y-or-n-p): New function
7140 (speedbar-with-attached-buffer) Moved macro before reference.
7141 Now uses `save-selected-window'.
7142 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
7143 speedbar-generic-item-info, speedbar-item-info-file-helper,
7144 speedbar-item-delete, speedbar-insert-generic-list,
7145 speedbar-timer-fn, speedbar-check-vc-this-line,
7146 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
7147 speedbar-buffers-item-info) Use speedbar-message.
7148 (speedbar-item-info) Limit `message-log-max'.
7149 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
7150 speedbar-item-delete, speedbar-item-object-delete,
7151 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
7152
7153 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp>
7154
7155 * server.el (server-start): Set coding system for the server
7156 process to raw-text.
7157 (server-process-filter): Decode file names if necessary.
7158
7159 1999-03-12 Dave Love <fx@gnu.org>
7160
7161 * textmodes/fill.el (sentence-end-double-space): Doc fix.
7162
7163 * textmodes/paragraphs.el (sentence-end): Doc fix.
7164
7165 1999-03-11 Karl Heuer <kwzh@gnu.org>
7166
7167 * comint.el (comint-password-prompt-regexp): Accept "login password:"
7168
7169 1999-03-09 Karl Heuer <kwzh@gnu.org>
7170
7171 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
7172 (ispell-dictionary-alist-2): Likewise.
7173 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
7174 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
7175 (ispell-dictionary-alist): Build from six pieces, not just two.
7176
7177 * ps-bdf.el (bdf-directory-list): Doc fix.
7178
7179 * enriched.el (enriched-mode): Make var permanent-local.
7180
7181 1999-03-09 Dave Love <fx@gnu.org>
7182
7183 * textmodes/sgml-mode.el (html-mode): Use
7184 sentence-end-double-space when setting sentence-end.
7185
7186 1999-03-09 Ken'ichi Handa <handa@gnu.org>
7187
7188 * language/thai.el (tis-620): New alias coding system for thai-tis620.
7189
7190 1999-03-08 Felix Lee <flee@cygnus.com>
7191
7192 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
7193
7194 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
7195
7196 1999-03-08 Karl Heuer <kwzh@gnu.org>
7197
7198 * dired-aux.el (dired-do-copy-regexp): Doc fix.
7199 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7200
7201 * dired.el (dired-do-copy-regexp): Doc fix.
7202 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7203
7204 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com>
7205
7206 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
7207
7208 1999-03-08 Jason Rumney <jasonr@altavista.net>
7209
7210 * international/codepage.el (cp1250-decode-table)
7211 (cp1251-decode-table, cp1253-decode-table)
7212 (cp1257-decode-table): New translation tables for MS Windows codepages.
7213 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
7214
7215 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
7216
7217 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
7218
7219 1999-03-07 Eli Zaretskii <eliz@gnu.org>
7220
7221 * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
7222
7223 * term/internal.el (top level): Display character 255 as 8bit as well.
7224
7225 1999-03-06 Dave Love <fx@gnu.org>
7226
7227 * progmodes/cc-cmds.el (c-outline-level): Bind
7228 buffer-invisibility-spec.
7229
7230 * progmodes/c-mode.el (c-outline-level): Likewise.
7231
7232 * progmodes/ada-mode.el (ada-outline-level): Likewise.
7233
7234 1999-03-05 Felix Lee <flee@cygnus.com>
7235
7236 * textmodes/outline.el (outline-get-last-sibling): Doc fix.
7237
7238 1999-03-05 Richard M. Stallman <rms@gnu.org>
7239
7240 * bindings.el (complete-symbol): Invert meaning of prefix arg.
7241
7242 1999-03-05 Andrew Innes <andrewi@gnu.org>
7243
7244 * w32-fns.el (convert-standard-filename): Convert directory
7245 separators to Windows format.
7246
7247 1999-03-05 Andreas Schwab <schwab@gnu.org>
7248
7249 * international/skkdic-cnv.el: Provide skkdic-cnv.
7250 (skkdic-convert): Emit code to require skkdic-cnv at compile time.
7251 (batch-skkdic-convert): Doc fix.
7252
7253 1999-03-04 Dave Love <fx@gnu.org>
7254
7255 * custom.el (custom-set-variables): Protect against setter errors.
7256
7257 1999-03-04 Eli Zaretskii <eliz@gnu.org>
7258
7259 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
7260 the file sizes from overflowing.
7261 (ls-lisp-format): If file size is a float, use %8.0f to print it.
7262 Under -s, print the size in blocks with %4.0f, in case they have
7263 a *really* huge file.
7264
7265 1999-03-03 Dave Love <fx@gnu.org>
7266
7267 * options.el (edit-options): Doc fix.
7268 (list-options): Don't lose with unbound symbols. Maintain
7269 Edit-options-mode.
7270
7271 1999-03-01 Dave Love <fx@gnu.org>
7272
7273 * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
7274
7275 1999-02-28 Richard M. Stallman <rms@gnu.org>
7276
7277 * ispell.el (ispell-dictionary-alist-override): New variable.
7278 (ispell-dictionary-alist): Don't setq it,
7279 if ispell-dictionary-alist-override is set.
7280
7281 * simple.el (shell-command-default-error-buffer): Renamed from
7282 shell-command-on-region-default-error-buffer.
7283 (shell-command-on-region): Mention in echo area when there
7284 is some error output. Mention success or failure, too.
7285 Accumulate multiple error outputs
7286 going forward, with formfeed in between. Display the error buffer
7287 when we have put something in it.
7288 (shell-command): Add the ERROR-BUFFER argument feature.
7289
7290 1999-02-28 Karl Heuer <kwzh@gnu.org>
7291
7292 * mail/mh-utils.el (mh-lib): Doc fix.
7293 (mh-lib-progs, mh-nmh-p): New vars.
7294 (mh-find-progs): Set mh-lib-progs along with other vars.
7295 (mh-path-search): New arg FUNC-P; if specified, use that instead
7296 of mh-file-command-p.
7297 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
7298
7299 * mail/mh-comp.el (mh-repl-formfile): New var.
7300 (mh-smail-batch): Don't ignore all arguments.
7301 (mh-reply): Do the right thing when using nmh.
7302
7303 1999-02-27 Kenichi Handa <handa@etl.go.jp>
7304
7305 * international/mule-cmds.el (select-safe-coding-system): Be sure
7306 to show a buffer being decoded.
7307
7308 1999-02-26 Ken'ichi Handa <handa@gnu.org>
7309
7310 * ps-bdf.el (bdf-directory-list): Initialize it to
7311 '("/usr/local/share/emacs/fonts/bdf").
7312
7313 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7314
7315 * ps-print.el: PostScript programming fix.
7316 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
7317 setpagedevice operator).
7318
7319 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7320
7321 * ps-print.el: Doc fix, font size specifies landscape and portrait
7322 sizes.
7323 (ps-print-version): New version number (4.1.4).
7324 (ps-font-size, ps-header-font-size, ps-header-title-font-size):
7325 Specifies landscape and portrait sizes.
7326 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
7327 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
7328 fix.
7329 (ps-get-font-size): New fun.
7330 (ps-font-size-internal, ps-header-font-size-internal)
7331 (ps-header-title-font-size-internal): New vars.
7332
7333 * ps-mule.el: Change of ps-print font size variable name.
7334 (ps-mule-generate-font): Fun fix.
7335 (ps-mule-begin-job): Programming uniformization.
7336
7337 1999-02-25 Dave Love <fx@gnu.org>
7338
7339 * help.el (help-xref-info-regexp): Allow linebreaks and capital.
7340 (help-make-xrefs): Do Info case first.
7341
7342 * repeat.el: Don't require advice.
7343 (repeat-last-kill-command): Variable deleted.
7344
7345 1999-02-25 Richard Stallman <rms@gnu.org>
7346
7347 * simple.el (shell-command-on-region): Don't go into the REPLACE = t
7348 case just because the current buffer is the output buffer.
7349
7350 1999-02-25 Kenichi Handa <handa@etl.go.jp>
7351
7352 * simple.el (what-cursor-position): To show the character's
7353 encoding, use encoded-string-description instead of information
7354 of chaset-origin-alist.
7355
7356 * international/mule-cmds.el (iso-2022-control-alist): New variable.
7357 (encoded-code-description): New function.
7358 (encoded-string-description): New function.
7359 (encode-coding-char): New function.
7360
7361 1999-02-25 Andrew Innes <andrewi@gnu.org>
7362
7363 * startup.el (command-line) [windows-nt]: Fix typo in regexp
7364 checking for .emacs[.el[c]].
7365
7366 1999-02-24 Richard Stallman <rms@gnu.org>
7367
7368 * help.el (describe-function-1): Don't print a whole lambda-function.
7369
7370 1999-02-23 Ken'ichi Handa <handa@gnu.org>
7371
7372 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
7373 inputting ?\240.
7374
7375 1999-02-23 Karl Heuer <kwzh@gnu.org>
7376
7377 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
7378
7379 * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
7380 (clean-buffer-list-kill-buffer-names): Doc fix.
7381
7382 * gud.el (gud-jdb-massage-args): Spelling fix.
7383
7384 1999-02-23 Richard M. Stallman <rms@gnu.org>
7385
7386 * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
7387
7388 1999-02-22 Eli Zaretskii <eliz@gnu.org>
7389
7390 * arc-mode.el (archive-set-buffer-as-visiting-file): Save
7391 excursion while calling set-auto-coding-function.
7392
7393 * play/handwrite.el (handwrite): Require ps-print, and use
7394 ps-printer-name and ps-lpr-command. Call ps-print-region-function
7395 if it's defined, instead of forking ps-lpr-command unconditionally.
7396
7397 1999-02-22 Kenichi Handa <handa@etl.go.jp>
7398
7399 * international/codepage.el (cp-coding-system-for-codepage-1): Put
7400 charset-origin-alist property to a coding system for the codepage.
7401
7402 * international/mule.el: Modify comment for charset-origin-alist
7403 property of a coding system.
7404
7405 * simple.el (what-cursor-position): charset-origin-alist property
7406 of a coding system may be a translation table or a symbol of which
7407 `translation-table' property is a translation table.
7408
7409 1999-02-21 Richard Stallman <rms@gnu.org>
7410
7411 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
7412 to the "html" template.
7413
7414 1999-02-21 Peter Breton <pbreton@ne.mediaone.net>
7415
7416 * dirtrack.el (dirtrack): Added docstring. Now returns input.
7417
7418 1999-02-18 Peter Breton <pbreton@ne.mediaone.net>
7419
7420 * dirtrack.el (dirtrack): Check for the prompt in the input string
7421 instead of the buffer.
7422
7423 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch>
7424
7425 * sql.el: Set version to 1.4.1. Changed mail address to
7426 alex@gnu.org. Mention the mailing list sql.el@gnu.org.
7427 (sql-input-ring-separator): Doc fix.
7428 (sql-mode-syntax-table): double-dash starts comments is defined as
7429 ". 56" instead of ". 12b" for XEmacs.
7430 (sql-stop, sql-interactive-mode): Doc fixes.
7431 (sql-postgres): Queries for database and server, not just one.
7432 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
7433
7434 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
7435 changed. This is needed for master.el to work.
7436 (sql-set-sqli-buffer): Use the new hook.
7437
7438 * sql.el (sql-make-alternate-buffer-name): Function that sets
7439 sql-alternate-buffer-name.
7440 (sql-alternate-buffer-name): Possible name of SQLi buffers.
7441 (sql-interactive-mode): Set sql-alternate-buffer-name.
7442 (sql-rename-buffer): New command.
7443 (sql-interactive-mode-menu): Menu for SQLi buffers.
7444
7445 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator
7446 and sql-input-ring-file-name are used to temporarily set
7447 comint-input-ring-file-name and comint-input-ring-separator when
7448 reading and writing input history files.
7449
7450 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
7451 (sql-input-ring-file-name): New variable with customization.
7452 (sql-input-ring-separator): New variable with customization.
7453 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
7454 Callers changed.
7455 (sql-show-sqli-buffer): The message for "sql-buffer is not set"
7456 now includes the name of the current buffer.
7457
7458 (sql-mode): Set paragraph-separate and paragraph-start so that
7459 sql-send-paragraph sends the entire SQL statements, even if it
7460 contains indented lines.
7461
7462 1999-02-18 Dave Love <fx@gnu.org>
7463
7464 * format.el (format-encode-run-method, format-decode-run-method):
7465 Fix previous change.
7466
7467 1999-02-18 Ken'ichi Handa <handa@gnu.org>
7468
7469 * international/mule.el (coding-system-list): Moved here from
7470 mule-util.el to avoid autoloading mule-util by the call of
7471 select-safe-coding-system.
7472
7473 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
7474
7475 * simple.el (turn-on-auto-fill): Mark it as an option for
7476 `text-mode-hook'.
7477
7478 1999-02-17 Richard Stallman <rms@gnu.org>
7479
7480 * emacs-lisp/easymenu.el (easy-menu-get-map):
7481 Don't crash if (current-local-map) is nil.
7482
7483 1999-02-17 Peter Breton <pbreton@ne.mediaone.net>
7484
7485 * filecache.el (file-cache-filter-regexps): Added .class.
7486
7487 1999-02-17 Ken'ichi Handa <handa@gnu.org>
7488
7489 * international/mule-util.el (decompose-region): Use
7490 insert-buffer-substring instead of insert-buffer to avoid putting
7491 mark.
7492
7493 1999-02-17 Andreas Schwab <schwab@gnu.org>
7494
7495 * calendar/cal-move.el (scroll-calendar-left): Don't set
7496 displayed-month and displayed-year here, let generate-calendar do
7497 it, after range checking.
7498
7499 1999-02-17 Simon Marshall <simon@gnu.org>
7500
7501 * progmodes/cc-engine.el (c-at-toplevel-p): New function.
7502
7503 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
7504 correctly between an object declared via a constructor and a method.
7505 (font-lock-defaults-alist): Don't give `.' word syntax for Java.
7506 (java-font-lock-keywords-1): Fontify package names individually.
7507 (java-font-lock-extra-types): Ensure regexp matches capitalised only.
7508 (java-font-lock-keywords-2): Simplify type fontification.
7509 (java-font-lock-keywords-3): Likewise.
7510
7511 1999-02-17 Kenichi Handa <handa@etl.go.jp>
7512
7513 * language/japanese.el (iso-2022-jp-2): New coding system.
7514 ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
7515
7516 1999-02-16 Dave Love <fx@gnu.org>
7517
7518 * help.el (describe-function-1): Accept non-symbols.
7519
7520 1999-02-16 Paul Eggert <eggert@twinsun.com>
7521
7522 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
7523 find the last match if there are multiple matches.
7524
7525 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7526
7527 * tex-mode.el (tex-run-command, latex-run-command)
7528 (slitex-run-command, tex-command): Doc changes.
7529 (tex-start-options-string): Autoload it. Doc change. Provide
7530 a menu for customization. Allow nil. Quote backslashes only once.
7531 (tex-start-tex): Handle nil value of tex-start-options-string
7532 and apply shell-quote-argument to it.
7533
7534 1999-02-16 Eli Zaretskii <eliz@gnu.org>
7535
7536 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
7537 the size in blocks, since it can be a float.
7538 (ls-lisp-format): Likewise
7539
7540 1999-02-16 Ken'ichi Handa <handa@gnu.org>
7541
7542 * language/japanese.el (japanese-shift-jis): Add
7543 charset-origin-alist property.
7544
7545 1999-02-15 Richard Stallman <rms@gnu.org>
7546
7547 * progmodes/compile.el (compile-internal): Use save-selected-window.
7548
7549 * subr.el (momentary-string-display): Bind inhibit-read-only.
7550
7551 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
7552
7553 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il>
7554
7555 * mail/rmail.el (rmail-show-message): If an unseen message has a
7556 Summary-line in its header, get past one more line before looking
7557 for the X-Coding-System header.
7558
7559 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
7560
7561 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
7562 explicitly to accomodate Windows 9X lack of a useful copy program.
7563
7564 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
7565
7566 * wid-edit.el (widget-choice-value-create): Use `equal'
7567 instead of `eq'.
7568
7569 1999-02-14 Richard Stallman <rms@gnu.org>
7570
7571 * international/iso-transl.el:
7572 (iso-transl-ae): Renamed from iso-transl-e-slash.
7573 (iso-transl-a-ring): Renamed from iso-transl-a-slash.
7574 (iso-transl-AE): Renamed from iso-transl-E-slash.
7575 (iso-transl-A-ring): Renamed from iso-transl-A-slash.
7576 (iso-transl-char-map): Related changes.
7577
7578 * format.el (format-replace-strings): Fix value of TO in REVERSE case.
7579
7580 1999-02-13 Richard Stallman <rms@gnu.org>
7581
7582 * textmodes/texinfmt.el (texinfo-alias): New function.
7583 (texinfo-fold-nodename-case): Add defvar.
7584 (texinfo-format-node): Do case folding if specified.
7585
7586 * ffap.el (ffap-file-at-point): Test local file names
7587 immediately. Strip off line numbers.
7588
7589 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch>
7590
7591 * sql.el: Set version to 1.3.2
7592 (sql-solid-program): Added support for solid.
7593 (sql-help): Doc mentions sql-solid.
7594 (sql-solid): Entry function for Solid.
7595 (sql-buffer): Doc explains the use of the variable and how to
7596 change it.
7597 (sql-mode-menu): Included entries for sql-show-sqli-buffer and
7598 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
7599 disabled if sql-buffer doesn't have a process; sql-send-paragraph
7600 is new.
7601 (sql-show-sqli-buffer): New function to display the value of
7602 sql-buffer.
7603 (sql-change-sqli-buffer): New function to change sql-buffer.
7604 (sql-mode): Doc explains how to change sql-buffer.
7605 (sql-send-paragraph): New function to send a paragraph.
7606 (sql-mode-map): Added keybinding for sql-send-paragraph.
7607 (sql-mysql): Doc corrected.
7608 (sql-ms): Doc corrected.
7609
7610 * sql.el (sql-server): Doc fix.
7611 (sql-mysql): Added the use of sql-server to specify the host,
7612 sql-database now specifies database instead of host.
7613 (sql-mode-menu): Send... menu items are only active if sql-buffer
7614 is non-nil.
7615 (sql-help): Changed tag of entry functions a bit.
7616
7617 * sql.el: Added keywords from `finder-by-keyword'.
7618 (sql-mode): Made sql-buffer a local variable, changed the
7619 documentation: removed instructions to add *.sql files to
7620 auto-mode-alist, added documentation for having mutliple SQL
7621 buffers sending their stuff to different SQLi buffers, each
7622 running a different process.
7623 (sql-postgres): Quoted *SQL* in doc string.
7624 (sql-ms): Likewise.
7625 (sql-ingres): Likewise.
7626 (sql-ingres): Quoted *SQL* in doc string, added references to
7627 sql-user and sql-password used during login.
7628 (sql-sybase): Quoted *SQL* in doc string, added comma.
7629 (sql-oracle): Likewise.
7630 (sql-interactive-mode): Added extensive documentation for having
7631 mutliple SQL buffers sending their stuff to different SQLi
7632 buffers, each running a different process.
7633 (sql-buffer): Changed doc from *SQL* to SQLi.
7634 (sql-get-login): Doc fix.
7635
7636 1999-02-12 Ken'ichi Handa <handa@gnu.org>
7637
7638 * international/mule-conf.el (undecided): Set ascii in
7639 safe-charsets property.
7640
7641 1999-02-12 Richard Stallman <rms@gnu.org>
7642
7643 * textmodes/paragraphs.el (paragraph-separate): Doc fix.
7644
7645 1999-02-12 Ken'ichi Handa <handa@gnu.org>
7646
7647 * ps-mule.el (ps-mule-font-info-database-default): Set the initial
7648 value to ps-mule-font-info-database-latin.
7649
7650 1999-02-13 Kenichi HANDA <handa@etl.go.jp>
7651
7652 * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
7653 (ps-mule-font-info-database-default): New variable.
7654 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
7655 ps-mule-font-info-database-default.
7656
7657 1999-02-12 Dave Love <fx@gnu.org>
7658
7659 * timezone.el (timezone-make-date-sortable)
7660 (timezone-make-date-arpa-standard): Doc fix.
7661
7662 1999-02-12 Ken'ichi Handa <handa@gnu.org>
7663
7664 * international/quail.el (quail-show-kbd-layout): Bind
7665 blink-matching-paren to nil.
7666
7667 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
7668 for ASCII and Latin-1.
7669
7670 1999-02-12 Andreas Schwab <schwab@gnu.org>
7671
7672 * gud.el (jdb): Fix regexp for comint-prompt-regexp.
7673
7674 1999-02-12 Kenichi Handa <handa@etl.go.jp>
7675
7676 * international/mule-cmds.el (language-info-alist): Remove
7677 description about charset-origin-alist.
7678
7679 * international/mule.el: Comment added for a new coding system
7680 property `charset-origin-alit'.
7681 (make-translation-table): This variable deleted.
7682
7683 * language/chinese.el (chinese-big5): Add charset-origin-alist
7684 property.
7685 ("Chinese-CNS"): Remove charset-origin-alist property.
7686
7687 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
7688 property.
7689 (cyrillic-alternativnyj): Likewise.
7690 ("Cyrillic-KOI8"): Remove charset-origin-alist property.
7691 ("Cyrillic-ALT"): Likewise.
7692
7693 * language/vietnamese.el (vietnamese-viqr): Add
7694 charset-origin-alist property.
7695 ("Vietnamese"): Remove charset-origin-alist property.
7696
7697 * simple.el (what-cursor-position): Don't use the varialbe
7698 charset-origin-alist, but use charset-origin-alist property of
7699 buffer-file-coding-system to decide external character set code.
7700
7701 1999-02-10 Richard Stallman <rms@gnu.org>
7702
7703 * shadowfile.el: Don't turn on the mode when the file is loaded.
7704
7705 1999-02-09 Richard Stallman <rms@gnu.org>
7706
7707 * progmodes/compile.el (compile-auto-highlight): Customize.
7708
7709 * add-log.el (add-log-file-name-function): New variable.
7710 (add-change-log-entry): Call that function, if non-nil.
7711
7712 1999-02-09 Michael Ernst <mernst@alum.mit.edu>
7713
7714 * rmail.el (rmail-search): Track match with a marker, not an integer.
7715
7716 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7717
7718 * progmodes/compile.el (compilation-setup): Set value of
7719 compilation-directory-stack as in compilation-forget-errors.
7720 (compile-reinitialize-errors): Bind buffer-undo-list and
7721 deactivate-mark.
7722 (compilation-forget-errors): Likewise.
7723
7724 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com>
7725
7726 * textmodes/texinfo.el (texinfo-environment-regexp): Add the
7727 def... constructs.
7728
7729 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
7730 Remove calls to sleep-for.
7731
7732 1999-02-08 Eli Zaretskii <eliz@gnu.org>
7733
7734 * international/codepage.el (cp-coding-system-for-codepage-1): On
7735 MS-DOS, use dos-unsupported-char-glyph for characters not
7736 supported by the codepage.
7737 (cp-make-coding-systems-for-codepage): Likewise.
7738
7739 1999-02-08 Andreas Schwab <schwab@gnu.org>
7740
7741 * international/mule-util.el (coding-system-list): Don't sort
7742 coding-system-list here.
7743
7744 * international/mule.el (coding-system-lessp): Moved here from
7745 mule-util.el
7746 (add-to-coding-system-list): New function.
7747 (make-subsidiary-coding-system, make-coding-system,
7748 define-coding-system-alias): Use it instead of setting
7749 coding-system-list directly.
7750
7751 1999-02-07 Dave Love <fx@gnu.org>
7752
7753 * calendar/appt.el (appt-make-list): Don't splice quotes and date
7754 onto message.
7755
7756 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7757
7758 * imenu.el (imenu--last-menubar-index-alist): Add doc.
7759 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist.
7760
7761 1999-02-06 Richard Stallman <rms@gnu.org>
7762
7763 * language/european.el (setup-slovenian-environment): New function.
7764 ("Slovenian"): New language environment.
7765
7766 * progmodes/sql.el (sql-help): Doc fix.
7767 (sql-mysql): Doc fix.
7768
7769 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7770
7771 * tex-mode.el: When compiling, require compare-w and skeleton
7772 to pacify the byte-compiler. Move the def's of the tex-commands
7773 together. Add a comment on kill-process vs. quit-process.
7774
7775 1999-02-05 Dave Love <fx@gnu.org>
7776
7777 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
7778 null markers.
7779 (compile-goto-error): Likewise.
7780
7781 1999-02-05 Stephen Gildea <gildea@alum.mit.edu>
7782
7783 * time-stamp.el (time-stamp-format): Format doc tighter.
7784 (time-stamp-line-limit): 0 searches the entire buffer (careful!).
7785 (time-stamp): Don't re-write the time stamp if it didn't change.
7786
7787 1999-02-05 Alex Schroeder <asc@bsiag.com>
7788
7789 * progmodes/sql.el: Changed version to 1.2.1.
7790 (sql-pop-to-buffer-after-send-region): Improved documentation.
7791 (sql-mysql-program): Added MySQL support.
7792 (sql-prompt-length): Made prompt-length configurable.
7793 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
7794 (sql-help): Added MySQL support, changed documentation.
7795 (sql-send-region): A message is displayed if something is sent.
7796 (sql-mode): Added buffer-local comment-start.
7797 (sql-interactive-mode): Use sql-prompt-length to set left-margin.
7798 (sql-interactive-mode): Added buffer-local comment-start.
7799 (sql-oracle): Set sql-prompt-length.
7800 (sql-sybase): Set sql-prompt-length.
7801 (sql-mysql): Added MySQL support.
7802 (sql-ingres): Set sql-prompt-length.
7803 (sql-ms): Set sql-prompt-length.
7804 (sql-postgres): Set sql-prompt-length.
7805
7806 1999-02-04 Eli Zaretskii <eliz@gnu.org>
7807
7808 * term/internal.el (dos-codepage-setup): Set selection coding
7809 system to cpNNN-dos.
7810
7811 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7812
7813 * international/characters.el: Let ethiopic use iso-2022-7bit.
7814
7815 1999-02-02 Dave Love <fx@gnu.org>
7816
7817 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
7818 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
7819
7820 1999-02-02 Karl Heuer <kwzh@gnu.org>
7821
7822 * terminal.el (terminal-emulator): Doc fix.
7823
7824 1999-02-02 Ken'ichi Handa <handa@gnu.org>
7825
7826 * international/mule-util.el (compose-chars): Doc-string
7827 modified. Correctly handle a composition character in ARGS.
7828
7829 1999-02-01 Richard Stallman <rms@gnu.org>
7830
7831 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
7832 (makefile-menu-index-function): Function deleted.
7833 (makefile-mode): Use makefile-imenu-generic-expression.
7834
7835 1999-02-01 Geoff Voelker <voelker@cs.washington.edu>
7836
7837 * term/w32-win.el (w32-create-initial-fontsets): Back out previous
7838 change, invoke from before-init-hook.
7839
7840 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu>
7841
7842 * subr.el (remove-from-invisibility-spec): Cope with the case when
7843 buffer-invisibility-spec is t.
7844
7845 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu>
7846
7847 * calendar/calendar.el (calendar-mode-map): Fix bindings for
7848 appt-add and appt-delete.
7849
7850 1999-02-01 Eli Zaretskii <eliz@gnu.org>
7851
7852 * term/pc-win.el (msdos-approximate-color): New function.
7853 (msdos-color-translate): Call it to find a DOS color that best
7854 approximates an X-style "#NNNNNN" color specification.
7855
7856 1999-02-01 Ken'ichi Handa <handa@gnu.org>
7857
7858 * international/mule-util.el (compose-chars-component): Add
7859 autoload cookie.
7860
7861 1999-01-31 Ken'ichi Handa <handa@gnu.org>
7862
7863 * international/quail.el (quail-lookup-key): If cdr of MAP is a
7864 function, replace cdr of MAP by the return value of the function
7865 unconditionally.
7866
7867 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7868
7869 * progmodes/compile.el (compilation-next-error-locus): Don't
7870 decrease argument FIND-AT-LEAST of compilation-next-error-locus.
7871
7872 1999-01-31 Eli Zaretskii <eliz@gnu.org>
7873
7874 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
7875 and NLs before "charset", and allow the charset name be in double
7876 quotes.
7877
7878 1999-01-31 Richard Stallman <rms@gnu.org>
7879
7880 * imenu.el (imenu-sort-function): Fix custom type.
7881
7882 1999-01-30 Richard Stallman <rms@gnu.org>
7883
7884 * speedbar.el (speedbar-line-token): Match {...} instead of [...].
7885 (speedbar-line-token): Likewise.
7886
7887 * play/gametree.el (gametree-default-score): Use defcustom.
7888 (gametree-score-regexp, gametree-score-closer): Likewise.
7889 (gametree-score-manual-flag, gametree-score-opener): Likewise.
7890
7891 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7892
7893 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
7894 decoding.
7895
7896 1999-01-29 Markus Rost <rost@gnu.org>
7897
7898 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
7899 tex-validate-buffer.
7900 (plain-tex-mode, latex-mode, slitex-mode): Likewise.
7901 (tex-validate-buffer): Renamed from validate-tex-buffer. Works
7902 now with recent occur-mode.
7903 (tex-validate-region): Really walk through all Sexps.
7904 (tex-region): Bind shell-dirtrack-verbose.
7905 (tex-file, tex-bibtex-file): Likewise.
7906
7907 1999-01-29 Dave Love <fx@gnu.org>
7908
7909 * finder.el: (finder-commentary): Fix interactive spec. Try
7910 appending .el to file name.
7911 (finder-find-library, finder-commentary): Doc fixes.
7912
7913 1999-01-29 Andrew Innes <andrewi@gnu.org>
7914
7915 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
7916 where the userid contains directory separators.
7917
7918 1999-01-29 Dave Love <fx@gnu.org>
7919
7920 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
7921 (lm-commentary): Doc fix.
7922
7923 1999-01-29 Andreas Schwab <schwab@gnu.org>
7924
7925 * files.el (file-expand-wildcards): Never consider `.' and `..' a
7926 wildcard match. Fix regexp that tests if dirpart contains
7927 wildcard characters.
7928
7929 1999-01-28 Richard Stallman <rms@gnu.org>
7930
7931 * font-lock.el (font-lock-default-unfontify-region):
7932 If not font-lock-syntactic-keywords, don't remove syntax-table prop.
7933
7934 1999-01-27 Jason Rumney <jasonr@altavista.net>
7935
7936 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
7937 from FAMILY field.
7938 (w32-create-initial-fontsets): Do not use before-init-hook.
7939 (mouse-set-font): Document. Automatically create and use fontsets.
7940
7941 * dos-w32.el (direct-print-region-helper): Check for printer
7942 being t as well as a string.
7943
7944 1999-01-27 Kenichi Handa <handa@etl.go.jp>
7945
7946 * mail/rmail.el (rmail-decode-mime-charset): New variable.
7947 (rmail-mime-charset-pattern): New variable.
7948 (rmail-convert-to-babyl-format): Decode by MIME-charset if
7949 rmail-decode-mime-charset is non-nil.
7950
7951 1999-01-27 Ken'ichi Handa <handa@gnu.org>
7952
7953 * international/characters.el: Set category `q' for all characters
7954 in tibetan and tibetan-1-column.
7955
7956 1999-01-27 Andrew Innes <andrewi@gnu.org>
7957
7958 * frame.el (select-frame-by-name): Obey focus-follows-mouse.
7959 (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
7960
7961 1999-01-27 Dave Love <fx@gnu.org>
7962
7963 * international/mule-cmds.el (current-language-environment):
7964 Provide :link, :type (choices) and appropriate :get.
7965
7966 1999-01-27 Eli Zaretskii <eliz@gnu.org>
7967
7968 * startup.el (command-line): Set default eol-mnemonic-* strings to
7969 display end-of-line format in mode line.
7970
7971 * cus-start.el (all): Add eol-mnemonic-* variables.
7972
7973 1999-01-26 Dave Love <fx@gnu.org>
7974
7975 * startup.el (command-line-1): Up-date copyright.
7976
7977 * paths.el (Info-default-directory-list): Use configdir twice.
7978
7979 * info.el (Info-directory-list): Don't set path-separator now
7980 we're not shipped with Texinfo. Simplify path definition.
7981 Substitute all occurrences of instdir in Info-default-directory-list.
7982
7983 1999-01-25 Richard Stallman <rms@gnu.org>
7984
7985 * startup.el (normal-top-level-add-subdirs-to-load-path):
7986 Record the inode numbers of the dirs processed, to avoid loop.
7987
7988 * textmodes/tex-mode.el (tex-run-command): Doc fix.
7989
7990 1999-01-25 Dave Love <fx@gnu.org>
7991
7992 * browse-url.el (browse-url-netscape-program): Doc addition.
7993
7994 * help.el (help-make-xrefs): Default info references to an `(emacs)'
7995 prefix.
7996
7997 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
7998 auto-mode-alist.
7999
8000 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8001
8002 * calendar/diary-lib.el (mark-diary-entries): Use
8003 assoc-ignore-case and do not capitalize when matching month and
8004 day names.
8005
8006 * calendar/calendar.el (calendar-read-date): Ditto.
8007
8008 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
8009 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
8010
8011 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
8012
8013 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
8014
8015 * calendar/cal-islam.el (calendar-goto-islamic-date)
8016 (mark-islamic-diary-entries): Ditto.
8017
8018 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
8019
8020 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
8021 (calendar-read-mayan-tzolkin-date): Ditto.
8022
8023 * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
8024
8025 1999-01-22 Michael Ernst <mernst@alum.mit.edu>
8026
8027 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
8028
8029 1999-01-25 Karl Heuer <kwzh@gnu.org>
8030
8031 * faces.el (list-faces-display): Multiline case of previous fix.
8032
8033 1999-01-25 Andreas Schwab <schwab@gnu.org>
8034
8035 * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
8036
8037 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
8038
8039 * files.el (find-file): If find-file-noselect returns a list,
8040 do switch-to-buffer on each element.
8041 (find-file-other-window): Likewise for all but the first element.
8042 (find-file-other-frame): Same.
8043 (find-file-noselect): When we expand a wildcard, return a list
8044 of buffers.
8045
8046 1999-01-24 Eli Zaretskii <eliz@gnu.org>
8047
8048 * term/internal.el (dos-codepage-setup): Call prefer-coding-system
8049 to set the appropriate cpNNN-dos coding system as the
8050 highest-priority coding system.
8051
8052 1999-01-23 Ken'ichi Handa <handa@gnu.org>
8053
8054 * international/fontset.el (generate-fontset-menu): Return a
8055 sorted list by plain names of fontsets.
8056
8057 * international/mule-diag.el (list-fontsets): Sort fontsets by
8058 plain names.
8059
8060 * language/tibet-util.el (tibetan-vertical-stacking): If the arg
8061 FIRST is a composite character, decompose it at first.
8062
8063 1999-01-23 Dave Love <fx@gnu.org>
8064
8065 * format.el: Doc fixes.
8066 (format-encode-run-method): Have things happen in the right buffer.
8067 Deal with errors from method. Set coding-system-for-write.
8068 (format-decode-run-method): Have things happen in the right buffer.
8069 Deal with errors from method. Set coding-system-for-read.
8070 (format-alist): Use nil instead of unmatchable regexps.
8071
8072 * simple.el (shell-command-on-region): Return command's exit status.
8073
8074 1999-01-23 Eric Ludlam <zappo@gnu.org>
8075
8076 * speedbar.el (speedbar-item-info-file-helper): Add optional arg
8077 of the file whose info we want to display.
8078 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
8079 (speedbar-add-mode-functions-list) Improve doc.
8080 (speedbar-line-token) New function.
8081 (speedbar-dired) Fix order of directories in -shown-directories.
8082 (speedbar-line-path): Default return is default-directory
8083 (speedbar-buffers-line-path): Return is dir name only.
8084 (speedbar-mode-functions-list): New variable.
8085 (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
8086 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
8087 speedbar-files-item-info speedbar-buffers-item-info): New functions.
8088 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
8089 New functions.
8090 (speedbar-line-file): Broke out part that fetches file from a line.
8091 (speedbar-line-text): New function extracted from speedbar-line-file.
8092 (speedbar-line-path): Converted into a replaceable function.
8093 (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
8094
8095 1999-01-23 Ken'ichi Handa <handa@gnu.org>
8096
8097 * international/fontset.el (create-fontset-from-x-resource): Make
8098 style variants.
8099
8100 1999-01-22 Dave Love <fx@gnu.org>
8101
8102 * paths.el (Info-default-directory-list): Put sysdir after start.
8103
8104 1999-01-22 Sam Steingold <sds@goems.com>
8105
8106 * midnight.el (clean-buffer-list): Do not kill a buffer if it has
8107 a process associated with it.
8108
8109 1999-01-22 Jason Rumney <jasonr@altavista.net>
8110
8111 * term/w32-win.el (w32-standard-fontset-spec): Simplified.
8112
8113 1999-01-22 Felix Lee <flee@cygnus.com>
8114
8115 * vc.el (vc-annotate-display): Delete old overlays. Fix check for
8116 major-mode.
8117 (vc-annotate-mode): Delete variable.
8118
8119 1999-01-22 Andrew Innes <andrewi@gnu.org>
8120
8121 * startup.el (command-line): [windows-nt]: Check for existence of
8122 .emacs file so as to notice .emacs.el or .emacs.elc and use them
8123 in preference to _emacs.
8124
8125 1999-01-22 Dave Love <fx@gnu.org>
8126
8127 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
8128
8129 1999-01-20 Richard Stallman <rms@gnu.org>
8130
8131 * files.el (find-file-noselect): Do wildcard processing only
8132 if new arg WILDCARDS is non-nil.
8133 (find-file, find-file-other-window): New arg WILDCARDS.
8134 Default it to non-nil if interactive.
8135 (find-file-other-frame): Likewise.
8136 (find-file-read-only): Likewise.
8137 (find-file-read-only-other-window): Likewise.
8138 (find-file-read-only-other-frame): Likewise.
8139
8140 * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
8141 (widget-plist-convert-option): Delete spurious comma.
8142
8143 1999-01-19 Jason Rumney <jasonr@altavista.net>
8144
8145 * term/w32-win.el (w32-standard-fontspec-spec): Change
8146 iso8859-5 to koi8-r. Add iso8859-9.
8147
8148 1999-01-19 Dave Love <fx@gnu.org>
8149
8150 * browse-url.el (browse-url-maybe-new-window): Delete macro and
8151 its uses.
8152
8153 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
8154 is active.
8155 (fortran-indent-subprogram): Likewise.
8156
8157 1999-01-19 Dave Love <d.love@dl.ac.uk>
8158
8159 * paths.el (Info-default-directory-list): Perhaps add /usr/info.
8160
8161 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
8162
8163 * wid-edit.el (alist): Use sexp as default key-type.
8164
8165 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8166
8167 * textmodes/tex-mode.el (tex-define-common-keys):
8168 Remove key binding of tex-feed-input.
8169 (tex-mode-map): Bind tex-feed-input here.
8170 (tex-start-shell): Use compilation-shell-minor-mode. Set
8171 comint-input-filter-functions before running tex-shell-hook.
8172 (tex-start-tex): Forget compilation errors.
8173 (tex-compilation-parse-errors): Rewritten to work also with
8174 compile-mouse-goto-error and compile-goto-error. Adjusted to
8175 change in tex-region.
8176 (tex-region): For the temp file use file-name without directory.
8177 (tex-file): Expand file name of tex-print-file.
8178
8179 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8180
8181 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call.
8182
8183 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no>
8184
8185 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
8186 beginning could cause Emacs to hang. Fixed.
8187
8188 1999-01-18 Ken'ichi Handa <handa@gnu.org>
8189
8190 * international/ccl.el (ccl-compile-translate-character): Handle
8191 the case that a tranlation table is CCL register correctly.
8192
8193 * international/mule-cmds.el (select-safe-coding-system):
8194 Hightlight at most 256 characters.
8195
8196 1999-01-18 Dave Love <fx@gnu.org>
8197
8198 * startup.el (command-line): If the init file changes operation to
8199 unibyte, make all buffers unibyte and re-set language environment.
8200
8201 * disp-table.el (standard-display-european): Make all existing
8202 buffers unibyte. Fix doc.
8203
8204 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu>
8205
8206 * wid-edit.el (coding-system): Define this unconditionally.
8207
8208 * simple.el (shell-command-on-region-default-error-buffer): New var.
8209 (shell-command-on-region): Use that variable as interactive
8210 value of ERROR-BUFFER argument.
8211
8212 1999-01-17 Sam Steingold <sds@goems.com>
8213
8214 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
8215
8216 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8217
8218 * progmodes/compile.el (compilation-goto-locus): If already in the
8219 compilation buffer's window, keep it in that window.
8220 (compile-mouse-goto-error): Add Doc. Don't play with windows.
8221 (compile-goto-error): Don't play with windows.
8222
8223 * textmodes/tex-mode.el (latex-run-command): Doc fix.
8224 (tex-command): Doc fix.
8225 (tex-compilation-parse-errors): Doc fix.
8226 (tex-generate-zap-file-name): Don't start the name with -.
8227 (tex-expand-files): Works now also with strings ending with ":".
8228
8229 1999-01-17 Ian T Zimmerman <itz@transbay.net>
8230
8231 Patch failed to install:
8232 * gametree.el: Document scoring functionality.
8233 (gametree-score-regexp): Add optional plus sign.
8234 (gametree-score-opener): Replace `:' with `=' as the former
8235 conflicts with gametree-half-ply-regexp.
8236 (gametree-transpose-following-leaves): Add.
8237 (gametree-insert-new-leaf): Make modifying commands barf in read
8238 only buffers.
8239 (gametree-break-line-here): Add a call to
8240 `gametree-transpose-following-leaves'. This maintains the
8241 necessary invariant that on each level all leaf children precede
8242 all nonleaf children. This has always been implied, but left to
8243 the user, and, unfortunately, undocumented.
8244
8245 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk>
8246
8247 * wid-edit.el (plist, alist): New widget types.
8248
8249 1999-01-17 Dave Love <fx@gnu.org>
8250
8251 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
8252 fix scope of condition-case therein.
8253
8254 1999-01-17 Andrew Innes <andrewi@gnu.org>
8255
8256 * dos-w32.el: (find-buffer-file-type-coding-system): Use
8257 default-buffer-file-coding-system when file doesn't exist (and
8258 isn't covered by a special case) instead of forcing undecided-dos
8259 against the user's wishes.
8260
8261 * dos-w32.el (direct-print-region-helper): New function based on
8262 direct-print-region-function; sends data to specified printer port
8263 without further translation. Recognize and handle specially the
8264 standard `print' and `nprint' programs, as well as `lpr' and
8265 similar programs. Only write directly to the printer port if no
8266 print program is specified. Work around a bug in Windows 9x
8267 affecting Win32 version of Emacs by invoking command.com to write
8268 to the printer port instead of writing directly.
8269 (direct-print-region-function): Use direct-print-region-helper to
8270 do most of the work.
8271 (direct-ps-print-region-function): New function; analogue of
8272 direct-print-region-function for ps-print.
8273 (ps-lpr-command): Comment out setq; leave as example usage.
8274 (ps-lpr-switches): Ditto.
8275
8276 * lpr.el: (printer-name): Update docstring about usage on MS-DOS
8277 and MS-Windows.
8278 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
8279 DOS and Windows platforms, to indicate direct printing. Update
8280 the docstring accordingly.
8281
8282 * ps-print.el: (ps-printer-name): Update docstring about usage on
8283 MS-DOS and MS-Windows.
8284 (ps-lpr-command): Update docstring as for lpr-command.
8285 (ps-print-region-function): New variable.
8286 (ps-do-despool): Use it.
8287 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
8288 DOS/Windows.
8289
8290 * subr.el (subst-char-in-string): New function.
8291
8292 1999-01-17 Eli Zaretskii <eliz@gnu.org>
8293
8294 * international/codepage.el (cp852-decode-table): Fill a nil entry.
8295
8296 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
8297 (bdf-find-font-info): New function, looks for the first readable
8298 file from a list of alternatives.
8299 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
8300 instead of bdf-get-font-info.
8301 (bdf-generate-glyphs): If font-name is a cons cell, pass its car
8302 to ps-mule-generate-bitmap-glyph.
8303
8304 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
8305 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can
8306 now be a list of alternative names.
8307 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
8308 (ps-mule-prepare-font): Likewise.
8309
8310 * international/codepage.el (cp855-decode-table,
8311 cp850-decode-table): Fill some nil entries.
8312
8313 1999-01-16 Dave Love <fx@gnu.org>
8314
8315 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
8316 last change.
8317
8318 1999-01-15 Dave Love <fx@gnu.org>
8319
8320 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
8321 and change regexp for command names.
8322 (help-xref-go-back, function-called-at-point, symbol-file)
8323 (where-is): Doc fixes.
8324 (help-xref-go-back): Remove interactive spec.
8325 (describe-function-1): Fix message for alias. Buttomize alias
8326 name.
8327
8328 * simple.el (join-line): New alias.
8329
8330 1999-01-15 Johan Vromans <jvromans@squirrel.nl>
8331
8332 * forms.el: (forms--show-record): Convert integers to string
8333 expicitly since concat will no longer accept integers.
8334 (forms-print): Use local `total-nb-records' since
8335 `forms--total-records' will be inaccessible after buffer switching.
8336
8337 1998-01-14 Felix Lee <flee@cygnus.com>
8338
8339 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
8340
8341 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu>
8342
8343 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
8344
8345 1999-01-14 Eli Zaretskii <eliz@gnu.org>
8346
8347 * international/codepage.el (cp850-decode-table): Fix previous change.
8348
8349 1999-01-14 Simon Marshall <simon@gnu.org>
8350
8351 * shell.el (shell-dirtrack-verbose): New custom variable.
8352 (shell-dirstack-message): Use it.
8353
8354 1999-01-14 Kenichi Handa <handa@etl.go.jp>
8355
8356 * international/mule-conf.el: Coding system alias `dos' for
8357 `undecided-dos', `mac' for `undecided-mac'.
8358
8359 * international/mule-cmds.el (describe-language-environment):
8360 Don't alter input-method-alist.
8361
8362 1999-01-13 Eli Zaretskii <eliz@gnu.org>
8363
8364 * international/codepage.el (cp850-decode-table): Replace nil
8365 entries with codes of similary looking glyphs. (Suggested by
8366 Jason Rumney <jasonr@altavista.net>.)
8367
8368 1999-01-13 Dave Love <fx@gnu.org>
8369
8370 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
8371
8372 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
8373
8374 1999-01-12 Karl Heuer <kwzh@gnu.org>
8375
8376 * files.el (auto-save-hook): Defvar this.
8377
8378 1999-01-12 Alex Schroeder <asc@bsiag.com>
8379
8380 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
8381 faces, eliminating the need to load font-lock before loading sql.
8382 (sql-mode-oracle-font-lock-keywords): Likewise.
8383 (sql-mode-postgres-font-lock-keywords): Likewise.
8384
8385 1999-01-11 Dave Love <fx@gnu.org>
8386
8387 * cus-start.el: Add inhibit-eol-conversion.
8388
8389 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
8390 the values round.
8391
8392 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu>
8393
8394 * help.el (help-mode-finish): Renamed from help-mode-maybe.
8395 Don't switch to Help mode here.
8396 (temp-buffer-setup-hook): Use help-mode-finish.
8397 (help-mode-setup): New function.
8398 (temp-buffer-setup-hook): Use help-mode-setup.
8399
8400 * progmodes/sql.el: New file.
8401
8402 * files.el (auto-mode-alist): Add sql-mode.
8403
8404 * faces.el (list-faces-display): Improve the formatting
8405 by computing the maximum length required for any face-name.
8406
8407 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8408
8409 * progmodes/compile.el (compilation-shell-minor-mode): New function.
8410
8411 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu>
8412
8413 * term.el (term_send_home): Change the string to
8414 be the same as the one emitted by xterm and consistent with the
8415 ones emitted by prior and next.
8416 (term_send_end): Likewise.
8417
8418 1999-01-10 Dave Love <fx@gnu.org>
8419
8420 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
8421 bindings.
8422
8423 1999-01-10 Eli Zaretskii <eliz@gnu.org>
8424
8425 * international/codepage.el (codepage-setup): Doc fix.
8426 (cp-decoding-vector-for-codepage): Likewise.
8427
8428 1999-01-10 Markus Rost <rost@gnu.org>
8429
8430 * cus-edit.el (custom-save-delete): First scan the custom-file.
8431
8432 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu>
8433
8434 * international/iso-transl.el: Define a "function name" for
8435 each translation that isn't ASCII. Use these function names
8436 in iso-transl-char-map.
8437
8438 1999-01-08 Kenichi Handa <handa@etl.go.jp>
8439
8440 * international/mule-util.el (decompose-region): Do decomposition
8441 on temporary unibyte buffer.
8442
8443 * international/mule.el (make-char): Doc-string modified.
8444
8445 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu>
8446
8447 * simple.el (comment-region): Delete spaces only if we
8448 deleted a comment starter.
8449
8450 1999-01-07 Dave Love <fx@gnu.org>
8451
8452 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
8453
8454 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
8455 like eval-defun does.
8456
8457 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
8458
8459 * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
8460 constructions. Doc fixes.
8461 (generic-create-generic-function): Use defalias, not fset.
8462
8463 * find-func.el: More doc fixes.
8464
8465 1999-01-06 Stephen Eglen <stephen@gnu.org>
8466
8467 * files.el (save-buffers-kill-emacs): Show the list of current
8468 processes before prompting to kill them and exit.
8469
8470 1999-01-06 Dave Love <fx@gnu.org>
8471
8472 * emacs-lisp/find-func.el: Doc fixes.
8473 (find-function-regexp): Extend for define-generic-mode,
8474 define-derived-mode, easy-mmode-define-minor-mode.
8475
8476 1999-01-06 Dave Love <fx@gnu.org>
8477
8478 * progmodes/fortran.el (fortran-window-create): Account for scroll
8479 bar width.
8480
8481 * browse-url.el: Require (noerror) w3-auto when compiling.
8482 (browse-url-maybe-new-window): Make it a macro and revert last
8483 change to callers.
8484 (browse-url-w3): Require w3 for w3-fetch-other-window.
8485
8486 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8487
8488 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
8489 argument.
8490
8491 1999-01-06 Simon Marshall <simon@gnu.org>
8492
8493 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix.
8494
8495 * font-lock.el (font-lock-default-fontify-buffer): When using
8496 with-temp-message, use nil rather than current-message.
8497
8498 * lazy-lock.el (lazy-lock-unstall):
8499 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
8500 rather than current-message.
8501
8502 * fast-lock.el (fast-lock-save-cache-1):
8503 (fast-lock-cache-data): When using with-temp-message, use nil rather
8504 than current-message.
8505
8506 1999-01-06 Eli Zaretskii <eliz@gnu.org>
8507
8508 * international/codepage.el (cp-coding-system-for-codepage-1): Add
8509 the valid-codes property.
8510
8511 * international/mule-cmds.el (prefer-coding-system): Call
8512 set-coding-priority, so that the internal array of priorities is
8513 also updated.
8514
8515 * international/mule-util.el:
8516 (coding-system-change-eol-conversion,
8517 coding-system-change-text-conversion): Don't define here.
8518
8519 * international/mule-cmds.el: Define them here. Remove the
8520 autoload cookies.
8521
8522 1999-01-06 Andreas Schwab <schwab@gnu.org>
8523
8524 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
8525 if it was enabled before.
8526
8527 * view.el (View-revert-buffer-scroll-page-forward): Bind
8528 view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
8529
8530 * files.el (recover-session): Preserve point when inserting
8531 explanation.
8532
8533 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu>
8534
8535 * cus-edit.el (custom-save-delete): Don't delete whitespace
8536 and comments before the sexp that is replaced.
8537
8538 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8539
8540 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
8541
8542 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de>
8543
8544 * vc.el (vc-dired-hook): Use the original value of
8545 dired-move-to-filename-regexp on lines that have not been
8546 reformatted yet.
8547 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
8548 file lines have already been reformatted.
8549
8550 1999-01-05 Dave Love <fx@gnu.org>
8551
8552 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
8553 buffer-local.
8554
8555 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se>
8556
8557 * progmodes/f90.el: Change of regular expressions for type to
8558 correct highlighting and identation. Some small fixes for
8559 compatibility with XEmacs.
8560
8561 1999-01-05 Stephen Eglen <stephen@gnu.org>
8562
8563 * mspools.el (mspools-vm-system-mail): Provide an alternative
8564 value based on rmail-spool-directory if $MAIL is not defined.
8565
8566 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
8567
8568 * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
8569 (reftex-section-info): Handle negative section levels.
8570 (reftex-view-crossref-extra): New option.
8571 (reftex-view-crossref): Generalized to work in more places.
8572 (reftex-find-citation-regexp-format, reftex-find-reference-format,
8573 reftex-macros-with-labels, reftex-global-search-marker): New variables.
8574 (reftex-view-cite-locations-from-bibtex): New command.
8575 (reftex-view-regexp-match, reftex-global-search,
8576 reftex-global-search-continue): New functions.
8577 (reftex-extract-bib-entries): No error for non-existing BibTeX
8578 file, just a message.
8579 (reftex-extract-bib-entries): Better error handling.
8580 (reftex-select-with-char): Use `*RefTeX Select*' for selection
8581 help and force it on current frame.
8582 (reftex-default-bibliography): New function.
8583 (reftex-access-parse-file): Check consistency after loading a
8584 parse file. When inconsistent, enfore rescan.
8585 (reftex-check-parse-consistency): New function.
8586 (easy-menu-define): Options section drastically shortened.
8587
8588 1999-01-05 Kenichi Handa <handa@etl.go.jp>
8589
8590 * language/thai-util.el (thai-compose-string): New function.
8591
8592 1999-01-04 Inge Frick <inge@nada.kth.se>
8593
8594 * easymenu.el (easy-menu-define): Doc fix.
8595 (easy-menu-create-menu): New keyword :included.
8596 (easy-menu-do-add-item): New keyword :included. SUFFIX may
8597 be an expression, not only a string. Simulate style `button'.
8598 Use easy-menu-define-key-intern instead of easy-menu-define-key.
8599 (easy-menu-define-key-intern): New function.
8600 (easy-menu-add-item): Understand value returned from
8601 easy-menu-item-present-p and easy-menu-remove-item.
8602 (easy-menu-return-item): New function.
8603 (easy-menu-item-present-p, easy-menu-remove-item): Use it.
8604
8605 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu>
8606
8607 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
8608 Use rmail-output-read-rmail-file-name to read the file name.
8609 Always call rmail-output-to-rmail-file noninteractively.
8610 When count > 1, do the loop here.
8611 Handle rmail-delete-after-output here.
8612 (rmail-summary-output): Similar changes.
8613
8614 * mail/rmailout.el: Provide `rmailout'.
8615 (rmail-output-read-rmail-file-name): New function.
8616 (rmail-output-to-rmail-file): Use that.
8617 (rmail-output-read-file-name): New function.
8618 (rmail-output): Use that.
8619
8620 * files.el (find-file-noselect): Let /: suppress wildcard matching.
8621 Error if wildcard matches no files.
8622
8623 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu>
8624
8625 * menu-bar.el (clipboard-yank): Doc fix.
8626
8627 * info.el (Info-insert-dir): Chase symlinks for file-attributes.
8628
8629 1998-12-31 Markus Rost <rost@delysid.gnu.org>
8630
8631 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
8632
8633 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk>
8634
8635 * rmail.el (rmail-encode-string): Make sure mask value is
8636 positive; (emacs-pid) returns a negative number on Windows 9x
8637 which causes odd behaviour.
8638
8639 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org>
8640
8641 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
8642 and about w32-* variables unless on Windows/NT.
8643
8644 1998-12-31 Boris Goldowsky <boris@alum.mit.edu>
8645
8646 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
8647 if buffer is modified; ask about all modified buffers.
8648
8649 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu>
8650
8651 * simple.el (what-cursor-position): Fix previous change.
8652
8653 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu>
8654
8655 * mail/sendmail.el (mail-mode): Eliminate ambiguous match
8656 from paragraph-start.
8657
8658 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org>
8659
8660 * international/mule-cmds.el (prefer-coding-system): If the
8661 argument requires specific EOL conversion type, make the default
8662 coding systems use that.
8663
8664 1998-12-30 Drew Csillag <drew_csillag@geocities.com>
8665
8666 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
8667 Use shell-command-on-region.
8668 (m4-start-m4, m4-end-m4): Functions deleted.
8669
8670 1998-12-30 Michael Ernst <mernst@alum.mit.edu>
8671
8672 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
8673
8674 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8675
8676 * browse-url.el (browse-url-mail): Give argument SEND-ACTION
8677 to compose-mail in the correct places and as a list.
8678
8679 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp>
8680
8681 * page-ext.el: Added mouse-selection feature for pages directory buffer.
8682 (pages-directory-map): Bind mouse-2
8683 (pages-copy-header-and-position): Put text property.
8684 (pages-directory-goto-with-mouse): New function.
8685
8686 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org>
8687
8688 * international/codepage.el (cp-make-coding-systems-for-codepage):
8689 Doc fix.
8690 (cp-coding-system-for-codepage-1): Likewise.
8691
8692 1998-12-29 Kenichi Handa <handa@etl.go.jp>
8693
8694 * language/thai-util.el (thai-post-read-conversion): Handle Thai
8695 composition sequence correctly here instead of calling
8696 thai-compose-region.
8697
8698 * textmodes/fill.el (fill-region-as-paragraph): While deleting a
8699 newline in multibyte buffer, if previous or next character is a
8700 composite char, check the first component of the composite char.
8701
8702 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org>
8703
8704 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
8705 and track-mouse.
8706
8707 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8708
8709 * mail/sendmail.el (mail-yank-original): Remove text properties
8710 after insertion.
8711 (mail-yank-region): Barf if no mark is set in the message
8712 being replied to.
8713
8714 * help.el (function-called-at-point): First look for function at point.
8715
8716 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu>
8717
8718 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
8719
8720 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
8721
8722 * simple.el (what-cursor-position): Print character encoding also.
8723
8724 1998-12-26 Dave Love <fx@gnu.org>
8725
8726 * textmodes/flyspell.el: If local-maps work, don't put
8727 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
8728 in flyspell-mouse-map (only).
8729 (flyspell-use-local-map): New variable.
8730 Use a different mouse-2 binding in that case,
8731 and don't add to minor-mode-map-alist.
8732 (make-flyspell-overlay, flyspell-correct-word):
8733 Test flyspell-use-local-map.
8734
8735 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
8736
8737 * files.el (file-expand-wildcards): Handle wildcards in directory name.
8738 Be careful about whether to return a relative file name,
8739 and if so, relative to what directory.
8740
8741 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
8742
8743 * emacs-lisp/easymenu.el (easy-menu-get-map):
8744 Change global map only if this menu exists in the global map already,
8745 and not in the local map.
8746 (easy-menu-do-add-item): Fix error message.
8747
8748 * foldout.el (foldout-inhibit-key-bindings):
8749 Avoid concatenating onto outline-minor-mode-prefix.
8750 Make a new keymap for that prefix, if it does not already have one.
8751
8752 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu>
8753
8754 * cperl-mode.el:
8755 Can use linear algorithm for indentation if Emacs supports it.
8756 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp.
8757 (cperl-after-block-p): Likewise.
8758 (cperl-after-block-and-statement-beg): Likewise.
8759 (cperl-after-block-p): After END/BEGIN we are a block.
8760 (cperl-after-expr-p): Skip labels when checking
8761 (cperl-indent-region): Make a marker for END - text added/removed.
8762 Disable hooks during the call (how to call them later?).
8763 Now indents 820-line-long function in 6.5 sec (including
8764 syntaxification) the first time (when buffer has few
8765 properties), 7.1 sec the second time.
8766 (cperl-indent-region): Do not indent whitespace lines
8767 (cperl-style-alist)
8768 Include `cperl-merge-trailing-else' where the value is clear.
8769 (cperl-styles-entries): Likewise.
8770 (cperl-problems): Improvements to docs.
8771 (cperl-tips): Likewise.
8772 (cperl-non-problems): Likewise.
8773 (cperl-mode): Make lazy syntaxification possible.
8774 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
8775 `font-lock-unfontify-region-function' was set to a wrong function.
8776
8777 (cperl-find-pods-heres): Safe a position in buffer where it is safe to
8778 restart syntaxification. Changed so that -d ?foo? is a RE. Do
8779 not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
8780 but 1<<6 was considered as HERE-doc.
8781 <file/glob> made into a string.
8782 Postpone addition of faces after syntactic step.
8783 Recognition of <FH> was wrong.
8784 Highlight `gem' in s///gem as a keyword. `qr' recognized.
8785 Knows that split// is null-RE.
8786 Highlights separators in 3-parts expressions as labels.
8787 <> was considered as a glob.
8788 Would err if the last line is `=head1'.
8789 $a-1 ? foo : bar; was a considered a regexp.
8790 `<< (' was considered a start of HERE-doc.
8791 mark qq[]-etc sections as syntax-type=string
8792 Was not processing sub protos after a comment ine.
8793 Was treating $a++ <= 5 as a glob.
8794 Tolerate unfinished REx at end-of-buffer.
8795 `unwind-protect' was left commented.
8796 / and ? after : start a REx.
8797
8798 (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
8799 Better default, customizes to `message' too, off in text-mode.
8800
8801 (cperl-array-face): Renamed from `font-lock-emphasized-face',
8802 `defface'd.
8803 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
8804 `defface'd.
8805 (cperl-emacs-can-parse): New state variable.
8806 (cperl-indent-line): Corrected to use global state.
8807 (cperl-calculate-indent): Likewise.
8808 (cperl-fix-line-spacing): Likewise (not used yet).
8809 (cperl-calculate-indent): Did not consider `,' as
8810 continuation mark for statements.
8811 (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
8812 Remove another parse-data optimization at toplevel: would
8813 indent correctly.
8814 Correct for labels when calculating indentation of continuations.
8815 Docstring updated.
8816 (cperl-choose-color): Converted to a function (to be
8817 compilable in text-mode).
8818 (cperl-dark-background): Disable without window-system.
8819 Do `defface' only if window-system.
8820 (cperl-fix-line-spacing): Sped up to bail out early.
8821 (x-color-defined-p): Was not compiling on XEmacs
8822 Was defmacro'ed with a tick. Remove another def.
8823 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
8824 (cperl-unwind-to-safe): New function.
8825 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
8826 (cperl-fontify-syntaxically): Unwinds start and end to go out of
8827 long strings (not very successful).
8828 (cperl-forward-re): Highlight the trailing / in s/foo// as string.
8829 Highlight the starting // in s//foo/ as function-name.
8830 Emit a meaningful error instead of a cryptic one for an
8831 uncomplete REx near end-of-buffer.
8832
8833 (cperl-electric-keyword): `qr' recognized.
8834 (cperl-electric-else): Likewise
8835 (cperl-to-comment-or-eol): Likewise
8836 (cperl-make-regexp-x): Likewise
8837 (cperl-init-faces): Likewise, and `lock' (as overridable?).
8838 Corrected to use new macros;
8839 `if' for copying `reference-face' to `constant-face' was backward.
8840 remove init `font-lock-other-emphasized-face',
8841 `font-lock-emphasized-face', `font-lock-keyword-face'.
8842 Interpolate `cperl-invalid-face'.
8843 (cperl-make-regexp-x): Misprint in a message.
8844 (cperl-syntaxify-unwind): New configuration variable
8845 (cperl-fontify-m-as-s): New configuration variable
8846 (cperl-electric-pod): Check for after-expr was performed
8847 inside of POD too.
8848 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
8849 (cperl-clobber-mode-lists): New configuration variable.
8850 (cperl-not-bad-style-regexp): Updated.
8851 Init: `cperl-is-face' was busted.
8852 (cperl-make-face): New macros.
8853 (cperl-force-face): New macros.
8854 (font-lock-other-type-face): Done via `defface' too.
8855 (cperl-nonoverridable-face): New face. Renamed from
8856 `font-lock-other-type-face'.
8857 (cperl-init-faces-weak): Use `cperl-force-face'.
8858 (cperl-comment-indent): Commenting __END__ was not working.
8859 (cperl-indent-for-comment): Likewise.
8860 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'.
8861 When removing old TAGS info was not relativizing filename.
8862 (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
8863 Another try to work around XEmacs problems. Better progress messages.
8864 (toplevel): Require custom unprotected => failure on 19.28.
8865 (cperl-xemacs-p): Defined when compile too
8866 (cperl-find-tags): Was writing line/pos in a wrong order,
8867 pos off by 1 and not at beg-of-line.
8868 (cperl-etags-snarf-tag): New macro
8869 (cperl-etags-goto-tag-location): New macro
8870 (cperl-version): New variable. New menu entry
8871 random docstrings: References to "future" 20.3 removed.
8872 Menu was described as `CPerl' instead of `Perl'
8873 (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
8874 (cperl-toggle-construct-fix): Was toggling to t instead of 1.
8875 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face'
8876 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
8877 `font-lock-reference-face', `font-lock-keyword-face'.
8878 Use `eval-after-load'.
8879 Remove not-CPerl-related faces.
8880 (cperl-tips-faces): New variable and an entry into Mini-docs.
8881 (cperl-indent-exp): Was not processing else-blocks.
8882 (cperl-get-state): NOP line removed.
8883 (cperl-ps-print): New function and menu entry.
8884 (cperl-ps-print-face-properties): New configuration variable.
8885 (cperl-invalid-face): New configuration variable.
8886 (perl-font-lock-keywords): Highlight trailing whitespace
8887 (cperl-contract-levels): Documentation corrected.
8888 (cperl-contract-level): Likewise.
8889 (cperl-ps-extend-face-list): New macro.
8890 (cperl-invalid-face): Change to ''underline.
8891
8892 1998-12-25 Markus Rost <rost@delysid.gnu.org>
8893
8894 * mail/rmailout.el (rmail-output): Abbreviate name of default-file
8895 for read-file-name.
8896 (rmail-output-to-rmail-file): Likewise.
8897
8898 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
8899
8900 * emacs-lisp/easymenu.el (easy-menu-get-map):
8901 If MENU is nil, use global menu-bar map.
8902 (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
8903 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
8904
8905 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8906
8907 * ps-mule.el (ps-mule-begin-job): Programming uniformization.
8908
8909 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8910
8911 * ps-print.el (ps-print-version): New version number (4.1.3).
8912
8913 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org>
8914
8915 * international/mule-cmds.el: Use make-sparse-keymap instead of
8916 define-prefix-key when defining MULE menu items.
8917
8918 * info.el (Info-node-at-bob-matching): New function.
8919 (Info-find-node, Info-build-node-completions): Call it.
8920
8921 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org>
8922
8923 * help.el (describe-function-1): Say "keymap", not "Lisp macro",
8924 when this is an autoloaded keymap.
8925
8926 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org>
8927
8928 * international/codepage.el (cp-coding-system-for-codepage-1):
8929 Create separate encoders and decoders, for DOS and Unix. Make the
8930 usual family of 3 coding systems, so that automatic detection of
8931 EOL type works.
8932 (cp-make-coding-systems-for-codepage): Don't intern DOS- and
8933 Unix-specific symbols here, and don't call
8934 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi
8935 Handa <handa@etl.go.jp>.)
8936
8937 * dos-vars.el (dos-codepage-setup-hook): New defcustom.
8938
8939 * term/internal.el (IT-character-translations): New variable, an
8940 alist used to display characters for which there's no glyphs in
8941 the current codepage.
8942 (IT-display-table-setup): New function, sets up the DOS terminal
8943 for a given codepage.
8944 (dos-codepage-setup): New function, sets up the MULE environment
8945 for the current value of dos-codepage.
8946 (top-level if): In the multibyte mode, turn on
8947 unibyte-display-via-language-environment. In the unibyte mode,
8948 set up the special syntax tables to map lower- to upper case and
8949 back.
8950
8951 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org>
8952
8953 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
8954 (speedbar-frame-plist) Remove useless comments.
8955 (speedbar-frame-mode) Do not specify height if it is in the param list.
8956 Use default y position w/out changing it.
8957 If default x position is a list, keep, calculate the non-list X
8958 value when devining an initial position.
8959 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
8960 (speedbar-tag-group-name-minimum-length): New variable.
8961 (speedbar-frame-parameter): New compatibility function.
8962 (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
8963 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
8964 groups to keep things in the right order, and to help with some
8965 naming conventions.
8966 (speedbar-create-tag-hierarchy): Enable buffer local version of
8967 `speedbar-tag-hierarchy-method' in the buffer we are tagging.
8968 (speedbar-line-path) Make DEPTH param optional. Devine it if absent.
8969 the case, derive it from the cursor location in speedbar.
8970
8971 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org>
8972
8973 * international/mule-cmds.el (set-language-environment): On MS-DOS
8974 terminals, install DOS-specific nonascii-translation-table if the
8975 language info doesn't specify one. Pass the default eol-type to
8976 set-language-environment-coding-systems.
8977 (set-default-coding-systems): Copy the eol-type property for the
8978 new default values of {buffer-file,process}-coding-system from the
8979 old defaults.
8980 (set-language-environment-coding-systems): Accept an optional
8981 argument EOL-TYPE, and set the eol-type property of the default
8982 coding systems accordingly.
8983 (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
8984 (set-keyboard-coding-system): Likewise.
8985 (set-default-coding-systems): Don't set
8986 default-terminal-coding-system on MS-DOS to anything but nil.
8987 (prefer-coding-system): Describe in the doc string that
8988 default-terminal-coding-system is not changed on MS-DOS.
8989 (set-language-environment): For MS-DOS, set standard syntax table
8990 and display table for all characters with code above 127.
8991 (standard-display-european-internal): For MS-DOS, pass all
8992 characters with code above 127 directly to the terminal, and don't
8993 remap characters 160 and 146 in the unibyte case.
8994
8995 * international/codepage.el: New file.
8996
8997 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8998
8999 * diary-lib.el (diary-float): Fix end-of-year error and typos in
9000 comments.
9001
9002 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
9003
9004 * map-ynp.el (map-y-or-n-p): Ignore input methods.
9005
9006 * subr.el (read-passwd): Likewise.
9007
9008 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org>
9009
9010 * info.el (Info-find-node): Add 1 to the position read from the
9011 tag table. Don't fail if the node delimiter ^_ is the first
9012 character in the file.
9013 (Info-insert-dir): Don't fail when the node delimiter ^_ is the
9014 first character in the file.
9015 (Info-read-subfile): Likewise.
9016 (Info-select-node): Likewise.
9017 (Info-build-node-completions): Likewise.
9018
9019 1998-12-16 Richard Stallman <rms@gnu.org>
9020
9021 * term/x-win.el (x-cut-buffer-or-selection-value):
9022 If clipboard is enabled, try it before PRIMARY selection.
9023
9024 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9025
9026 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
9027 insert c-cedilla and C-cedilla respectively, like in latin-1.
9028
9029 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org>
9030
9031 * language/hebrew.el: Don't use sublists in the flags argument
9032 passed to make-coding-system.
9033
9034 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9035
9036 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
9037 list of character sets found by find-charset-region.
9038
9039 * ps-mule.el: Always require ps-print. Move some function
9040 definitions for Emacs 20.2 and the earlier to ps-print.el.
9041 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
9042
9043 * ps-print.el: Define several functions for Emacs 20.2 and the
9044 earlier version.
9045 (ps-printer-name): Check if printer-name is bound.
9046
9047 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9048
9049 * ps-mule.el: Programming uniformization and little code improvement.
9050 (ps-mule-prepare-font): Programming uniformization.
9051 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
9052 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
9053
9054 * ps-bdf.el: Programming uniformization and little code improvement.
9055 (bdf-search-and-read): New fun.
9056 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
9057 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
9058 (bdf-info-relative-compose, bdf-info-baseline-offset)
9059 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
9060 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
9061 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
9062 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
9063 improvement.
9064
9065 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9066
9067 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
9068 and mule related code extraction. Autoload ps-mule funs.
9069
9070 * ps-mule.el: Doc fix. Require ps-print only when compiled.
9071 (ps-mule-prologue-generated): New fun.
9072 (ps-mule-plot-string): Add autoload cookie.
9073 (ps-mule-begin-job): Call ps-mule-prologue-generated.
9074
9075 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9076
9077 * ps-bdf.el: Require ps-mule instead of ps-print.
9078 (bdf-directory-list): Add autoload cookie.
9079
9080 * ps-mule.el: New file. Mule related code extracted from
9081 ps-print.el. Require ps-print, provide ps-mule.
9082 (ps-multibyte-buffer): Add autoload cookie.
9083 (ps-mule-prepare-ascii-font): New fun.
9084 (ps-mule-set-ascii-font): New fun.
9085 (ps-mule-skip-same-charset): Fun deleted.
9086 (ps-mule-plot-string): Set ps-mule-current-charset.
9087 (ps-mule-initialize): Add autload cookie. Don't set
9088 ps-mule-font-info-database here.
9089 (ps-mule-begin-job): Renamed from ps-mule-begin. Update
9090 ps-mule-font-info-database and ps-control-or-escape-regexp.
9091 (ps-mule-begin-page): New fun.
9092
9093 * ps-print.el: Mule related code moved to ps-mule.el.
9094 (ps-begin-job): While setting ps-control-or-escape-regexp, don't
9095 check ps-mule-charset-list.
9096 (ps-begin-page): Don't set ps-mule-current-charset, instead call
9097 ps-mule-begin-page.
9098 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
9099 (ps-plot-region): Don't set ps-mule-current-charset, instead call
9100 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset,
9101 instead skip same charsets by itself.
9102 (ps-generate): Call ps-mule-initialize of needs-begin-file is
9103 non-nil. Call ps-mule-begin-job.
9104
9105 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9106
9107 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf
9108 instead of bdf.
9109
9110 * ps-print.el (ps-mule-font-info-database): Doc-string modified.
9111 (ps-mule-external-libraries): New element FEATURE.
9112 (ps-mule-init-external-library): Ajusted for the above change.
9113 (ps-mule-generate-font): Likewise.
9114 (ps-mule-generate-glyphs): Likewise.
9115 (ps-mule-prepare-font): Likewise.
9116 (ps-mule-initialize): Likewise.
9117 (ps-begin-file): Superfluous tailing parenthesis deleted.
9118
9119 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9120
9121 * international/fontset.el (x-decompose-font-name): If PATTERN
9122 doesn't have any wild cards, return a vector made from a name that
9123 is found by x-resolve-font-name found. Comments added.
9124
9125 * international/mule-cmds.el (find-coding-systems-for-charsets):
9126 Handle the case of unknown charset.
9127 (find-multibyte-characters): If invalid multibyte characters are
9128 found, return the corresponding strings instead of character
9129 codes.
9130 (find-multibyte-characters): Adjusted for the above change.
9131 (select-safe-coding-system): For a unibyte buffer, always returns
9132 DEFAULT-CODING-SYSTEM.
9133 (get-charset-property): Fix previous change. Make it a function.
9134 (put-charset-property): Make it a function.
9135
9136 * international/mule.el (make-coding-system): Set mime-charset
9137 property of *-with-esc coding system to nil.
9138
9139 * international/quail.el (quail-point-in-conversion-region): New
9140 function.
9141 (quail-conversion-backward-delete-char): When a key sequence is
9142 being translated, call quail-delete-last-char.
9143
9144 * language/devan-util.el
9145 (devanagari-reorder-glyphs-for-decomposition): Fix the way to
9146 handle devanagari-decomposition-rules.
9147
9148 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org>
9149
9150 * textmodes/texinfo.el (texinfo-tex-buffer): Bind
9151 tex-start-options-string to empty string.
9152 (texinfo-tex-region): Use texinfo-tex-trailer as documented.
9153
9154 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org>
9155
9156 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
9157 5xx responses are already handled properly).
9158
9159 1998-12-13 Richard Stallman <rms@gnu.org>
9160
9161 * progmodes/compile.el (compilation-error-regexp-alist): Insist
9162 on a non-digit in the file name.
9163
9164 * simple.el (comment-region): Handle comment-padding
9165 separately for insertion and for deletion, in the right way for each.
9166
9167 1998-12-13 Felix Lee <flee@cygnus.com>
9168
9169 * progmodes/compile.el (compilation-error-regexp-alist): Fix
9170 regexp to match "ChangeLog:1:1998-12-09 ..."
9171
9172 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org>
9173
9174 * cus-start.el (dos-unsupported-char-glyph): Add.
9175
9176 1998-12-11 Dave Love <fx@gnu.org>
9177
9178 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
9179 forward-sexp in condition-case.
9180
9181 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9182 Remove unnecessary test on `library' for explicit file name.
9183 Widen scope of save-match-data.
9184
9185 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org>
9186
9187 * international/mule.el (load-with-code-conversion): If the loaded
9188 file was inserted with no-conversion or raw-text coding system,
9189 make the buffer unibyte.
9190
9191 1998-12-09 Richard Stallman <rms@gnu.org>
9192
9193 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9194 Get rid of nested loops.
9195
9196 * mouse.el (mouse-drag-vertical-line):
9197 If WHICH-SIDE is not `right', then scroll bars are on the left.
9198
9199 * loadhist.el (load-history-loaded): defvar moved to help.el.
9200
9201 * help.el (symbol-file-load-history-loaded): Variable renamed,
9202 and defvar moved from loadhist.el.
9203 (symbol-file): Renamed from describe-function-find-file.
9204 Load fns-VERSION.el here.
9205 (describe-variable, describe-function-1): Use symbol-file.
9206
9207 * textmodes/tex-mode.el (tex-generate-zap-file-name):
9208 Don't start the name with #.
9209
9210 * ispell.el: Take out the eval-when's.
9211
9212 1998-12-09 Peter Breton <pbreton@ne.mediaone.net>
9213
9214 * dirtrack.el (dirtrack-directory-change-hook): New hook.
9215 (dirtrack): Run it. Make debug message more verbose.
9216
9217 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
9218
9219 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
9220 name of the abbrev table, and provide support for XEmacs.
9221 (octave-xemacs-p): New variable.
9222
9223 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
9224
9225 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
9226 exit, when mail-interactive is nil.
9227
9228 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
9229
9230 * files.el (after-find-file): Message fix.
9231
9232 1998-12-09 Ken Stevens <stevens@kdstevens.com>
9233
9234 * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
9235
9236 1998-12-09 Geoff Voelker <voelker@cs.washington.edu>
9237
9238 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
9239 filenames using backslashes.
9240
9241 1998-12-09 Dave Love <fx@gnu.org>
9242
9243 * browse-url.el (browse-url-mail): Call compose-mail-other-window
9244 with correct number of args.
9245 (browse-url-maybe-new-window): New arg. Callers changed.
9246
9247 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
9248 comment.
9249
9250 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
9251
9252 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
9253
9254 1998-12-08 Markus Rost <rost@delysid.gnu.org>
9255
9256 * vc.el (vc-rcs-release): Fix Type.
9257 (vc-sccs-release): Fix Type.
9258 (vc-cvs-release): Fix Type.
9259
9260 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
9261 arg work right.
9262
9263 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
9264 output of last undeleted message.
9265
9266 1998-12-07 Geoff Voelker <voelker@cs.washington.edu>
9267
9268 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9269 (buffer-undo-list) [windows-nt]: Use different relative path.
9270
9271 1998-12-07 Simon Marshall <simon@gnu.org>
9272
9273 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
9274
9275 1998-12-05 Markus Rost <rost@delysid.gnu.org>
9276
9277 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
9278
9279 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
9280
9281 1998-12-04 Markus Rost <rost@delysid.gnu.org>
9282
9283 * info.el (Info-menu): Don't return error if point is between menu
9284 header and first menu item.
9285
9286 1998-12-04 Dave Love <fx@gnu.org>
9287
9288 * help.el (describe-function-1): Fix description for alias.
9289
9290 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org>
9291
9292 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
9293 specifications from summary line.
9294
9295 * rect.el (delete-whitespace-rectangle): Mark for autoload.
9296 (close-rectangle): Define alias only once in loaddefs.el.
9297
9298 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org>
9299
9300 * term/internal.el: Remove code which sets up a special syntax
9301 table for non-ASCII characters.
9302
9303 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org>
9304
9305 * dos-w32.el (direct-print-region-function): Try to ensure that
9306 printer-name is expanded to a file name on a local drive;
9307 sometimes printing a file loaded from a network volume fails.
9308 (direct-print-region-function): Add a function to
9309 write-region-annotate-functions to append a formfeed character to
9310 the region being printed, if the region doesn't end with a
9311 formfeed already. This avoids creating a second print job
9312 containing a blank page when print spooling is enabled on Windows.
9313
9314 1998-12-02 Dave Love <fx@gnu.org>
9315
9316 * help.el (help-make-xrefs): Use `info', not the non-autoloaded
9317 `Info-goto-node'.
9318
9319 1998-12-02 Richard Stallman <rms@gnu.org>
9320
9321 * help.el (temp-buffer-resize-mode): Doc fix.
9322
9323 * cus-edit.el (custom-save-delete): Save point before
9324 reading a sexp, rather than backing up.
9325
9326 * international/iso-transl.el: Fix previous change.
9327
9328 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
9329
9330 * vc.el (vc-dired-window-configuration, vc-ediff-windows,
9331 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
9332 Added defvars to suppress compilation warnings.
9333
9334 1998-11-30 Ken Stevens <k.stevens@ieee.org>
9335
9336 * ispell.el: Improved and fixed customize for variables:
9337 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
9338 ispell-dictionary-alist, ispell-skip-sgml.
9339 Improved and fixed comments in variables and messages for
9340 functions: ispell-help-in-bufferp, ispell-local-dictionary,
9341 ispell-menu-map, ispell-checking-message, ispell-parser,
9342 ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
9343 ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
9344 ispell-comments-and-strings, ispell-continue, ispell-complete-word,
9345 ispell-message-text-end, ispell-add-per-file-word-list.
9346 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
9347 system is now required for all languages. Casechars improved for
9348 castellano, castellano8, and norsk dictionaries. Dictionary
9349 norsk7-tex added. Dictionary polish added.
9350 (ispell-dictionary-alist): Redefined at load-time to support
9351 dictionary changes.
9352 (ispell-menu-map): Redefined at load-time to support menu changes.
9353 (ispell-check-version): New alias for `check-ispell-version'.
9354 (ispell-parse-output): Fixed matching for ispell error messages.
9355 Correctly returns spelling suggestions in order generated by ispell
9356 process.
9357 (check-ispell-version): Ensure `case-fold-search' doesn't get
9358 redefined.
9359 (ispell-complete-word): Ensure `case-fold-search' doesn't get
9360 redefined. Fix bug that didn't respect case of word being completed.
9361 (ispell-init-process): Set process coding system to be compatible
9362 with emacs processes and the ispell process.
9363 (ispell-kill-ispell): Ensures ispell process has terminated before
9364 starting new process. This can otherwise confuse process filters
9365 and hang the ispell process.
9366 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
9367 skipping support for sgml.
9368 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r
9369 which could cause `ispell-complete-word' to hang.
9370 (ispell-message): Improved message reference matching. Ensure
9371 `case-fold-search' doesn't get redefined.
9372 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
9373 get redefined. Fixed bug in returning to nroff mode from tex mode.
9374 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
9375 get redefined.
9376
9377 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu>
9378
9379 * textmodes/flyspell.el (flyspell-check-word-p):
9380 Don't delay inside a kbd macro.
9381
9382 * subr.el (make-local-hook): Return the hook variable.
9383
9384 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9385
9386 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
9387 Use a timer instead of post-command-hook.
9388 (hscroll-timer): New variable.
9389
9390 1998-11-30 Dave Love <fx@gnu.org>
9391
9392 * help.el (help-xref-button): Do nothing if text already has the
9393 help-xref property.
9394 (describe-variable): Revert previous change to hyperlink to source.
9395
9396 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
9397
9398 * bindings.el (features): Add `base64' to this list.
9399
9400 * loadhist.el (symbol-file): Doc fix.
9401
9402 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9403
9404 * files.el (hack-one-local-variable): Cope with non-file buffers.
9405
9406 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu>
9407
9408 * help.el (describe-mode): Put major mode first.
9409
9410 * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
9411 to support special-display and same-window features.
9412
9413 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu>
9414
9415 * simple.el (transpose-subr, transpose-subr-1): Rename variables
9416 bound in one function and used in the other.
9417 (transpose-subr-start1, transpose-subr-start2): Add defvars.
9418 (transpose-subr-end1, transpose-subr-end2): Add defvars.
9419
9420 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9421
9422 * autoinsert.el (auto-insert-alist): Use user-mail-address.
9423
9424 1998-11-26 Kenichi Handa <handa@etl.go.jp>
9425
9426 * international/ccl.el (ccl-dump-translate-character-const-tbl):
9427 Give format correct control string.
9428
9429 * international/mule.el (define-translation-table): Fix bug of
9430 setting incorrect translation-table-id. If the first element of
9431 ARGS is a translation table, just register it.
9432
9433 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
9434 property.
9435
9436 1998-11-24 Michael Ernst <mernst@alum.mit.edu>
9437
9438 * thingatpt.el (thing-at-point-url-at-point): Don't use current
9439 syntax table to determine what is whitespace.
9440
9441 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu>
9442
9443 * frame.el (frame-parameter): Doc fix.
9444
9445 * textmodes/tex-mode.el (tex-feed-input): New function.
9446 (tex-define-common-keys): Add binding for C-c C-m.
9447
9448 1998-11-23 Dave Love <fx@gnu.org>
9449
9450 * progmodes/fortran.el: Various minor doc fixes.
9451 (fortran-font-lock-keywords-1): Add `d' to comment-chars.
9452 (fortran-with-subprogram-narrowing): New macro.
9453 (fortran-check-for-matching-do): Use it.
9454 (fortran-end-do): Use fortran-check-end-prog-re.
9455 (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
9456 (fortran-calculate-indent, fortran-calculate-indent): Likewise.
9457
9458 1998-11-23 Simon Marshall <simon@gnu.org>
9459
9460 * font-lock.el (font-lock-defaults): Doc fix.
9461 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
9462 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
9463
9464 * lazy-lock.el (lazy-lock-unstall):
9465 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
9466
9467 * fast-lock.el (fast-lock-save-cache-1):
9468 (fast-lock-cache-data): Rewritten to use with-temp-message.
9469
9470 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org>
9471
9472 * mail/rmail.el (rmail-set-message-counters-counter): Detect
9473 messages that have been added with DOS line endings and convert
9474 the line endings for such messages.
9475
9476 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9477
9478 * help.el: Add resizing of temporary buffers.
9479 (temp-buffer-resize-mode): New command and variable.
9480 (temp-buffer-max-height): New variable.
9481 (resize-temp-buffer-window): New function.
9482
9483 * window.el (window-buffer-height): New function, split from
9484 shrink-window-if-larger-than-buffer.
9485 (shrink-window-if-larger-than-buffer): Use window-buffer-height.
9486
9487 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu>
9488
9489 * frame.el (initial-frame-alist): Add defcustom.
9490
9491 * shell.el (shell-prompt-pattern): Add defcustom.
9492
9493 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9494
9495 * message.el (message-ignored-supersedes-headers): Remove
9496 NNTP-Posting-Date.
9497
9498 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu>
9499
9500 * help.el (describe-mode): Don't avoid loop indirecting thru
9501 value of INDICATOR.
9502
9503 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu>
9504
9505 * help.el (describe-variable): Allow any variable with a defcustom,
9506 even if it is not a user variable.
9507
9508 * mail/rmail.el (mail-unsent-separator): Additional alternative.
9509
9510 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org>
9511
9512 * gnus/nntp.el (nntp-request-group): Allow for failures when
9513 requesting a new group.
9514
9515 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu>
9516
9517 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
9518
9519 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9520
9521 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
9522
9523 1998-11-19 Simon Marshall <simon@gnu.org>
9524
9525 * subr.el (with-temp-message): New macro.
9526
9527 * emacs-lisp/lisp-mode.el (with-temp-message):
9528 Add lisp-indent-function property.
9529
9530 1998-11-18 Dave Love <fx@gnu.org>
9531
9532 * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
9533
9534 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu>
9535
9536 * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
9537 This is not obsolete.
9538
9539 1998-11-18 Kenichi Handa <handa@etl.go.jp>
9540
9541 * textmodes/picture.el: Make a new map by make-keymap.
9542 (picture-desired-column): New variable.
9543 (picture-update-desired-column): New function.
9544 (picture-beginning-of-line): Set picture-desired-column to 0.
9545 (picture-end-of-line): Set picture-desired-column to the current
9546 column.
9547 (picture-forward-column): Pay attention to multi-column character.
9548 (picture-backward-column): Likewise.
9549 (picture-move-down): Likewise.
9550 (picture-move-up): Likewise.
9551 (picture-movement-nw): With prefix arg, move twice columns.
9552 (picture-movement-ne): Likewise.
9553 (picture-movement-sw): Likewise.
9554 (picture-movement-se): Likewise.
9555 (picture-set-motion): Handle two-column movements.
9556 (picture-move): Call picture-move-down or picture-forward-column
9557 only when necessary.
9558 (picture-insert): Pay attention to picture-desired-column.
9559 (picture-self-insert): Likewise.
9560 (picture-clear-column): Pay attention to multi-column character.
9561 (picture-mode): Modify doc-string for two-column movement.
9562
9563 * rect.el (move-to-column-force): New function.
9564 (operate-on-rectangle): If coerce-tabs is non-nil, call
9565 move-to-column-force instead of move-to-column.
9566 (insert-rectangle): Call move-to-column-force instead of
9567 move-to-column.
9568 (open-rectangle-line): If begextra is not zero, call
9569 move-to-column-force.
9570
9571
9572 1998-11-16 Dave Love <fx@gnu.org>
9573
9574 * textmodes/sgml-mode.el Require skeleton when compiling.
9575 (sgml-font-lock-keywords-1): Accept single-letter tags.
9576 (v2): Defvar free variable.
9577
9578 1998-11-16 Sam Steingold <sds@goems.com>
9579
9580 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
9581 macro, not ELisp one.
9582
9583 1998-11-16 Kenichi Handa <handa@etl.go.jp>
9584
9585 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
9586 characters to symbol.
9587
9588 * language/japan-util.el (japanese-zenkaku-region): New optional
9589 arg KATAKANA-ONLY.
9590
9591 1998-11-16 Kenichi Handa <handa@etl.go.jp>
9592
9593 * international/mule.el
9594 (after-insert-file-set-buffer-file-coding-system): If the buffer
9595 is changed to unibyte, return inserted bytes.
9596
9597 * tar-mode.el (tar-header-block-tokenize): Decode codes of file
9598 and link names if necessary.
9599 (tar-header-block-summarize): Handle the case that file or link
9600 names are multibyte.
9601 (tar-summarize-buffer): At first set the current buffer unibyte,
9602 then if there are multibyte file names, change it to multibyte.
9603 (tar-mode): Get char position from tar-header-offset.
9604 (tar-extract): Avoid multibyte<->unibyte conversion in
9605 insert-buffer-subsring by setting both buffers unibyte
9606 temporarily.
9607 (tar-copy): Set the buffer unibyte while doing a work. Write
9608 without code conversion.
9609 (tar-expunge): Set the buffer unibyte while doing a work.
9610 (tar-alter-one-field): Likewise.
9611 (tar-clear-modification-flags): Compare byte position with
9612 tar-header-offset.
9613 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
9614 insert-buffer-subsring by setting both buffers unibyte
9615 temporarily. Pay attention to multibyteness while updating the
9616 descriptor-line.
9617 (tar-mode-write-file): Write without code conversion.
9618
9619 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9620
9621 * nngateway.el: Require cl.
9622
9623 1998-11-15 Dave Love <fx@gnu.org>
9624
9625 * progmodes/fortran.el: Fix previous change:
9626 (fortran-end-prog-re1): Changed.
9627 (fortran-check-end-prog-re): New function.
9628 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
9629
9630 1998-11-13 Tom Breton <tob@world.std.com>
9631
9632 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
9633 GNU Emacs.
9634
9635 1998-11-13 Carsten Dominik <cd@delysid.gnu.org>
9636
9637 * textmodes/reftex.el: (reftex-finding-files): Group documentation
9638 fixed.
9639 (reftex-toc-toggle-file-boundary,
9640 reftex-toc-toggle-labels,
9641 reftex-toc-toggle-context,reftex-find-start-point): New functions.
9642 (reftex-toc-include-labels, reftex-toc-include-context,
9643 reftex-toc-include-file-boundaries,
9644 reftex-toc-keep-other-windows): New options.
9645 (reftex-use-text-after-label-as-context): Option removed.
9646 (reftex-extract-bib-entries): Protect use in non-latex
9647 buffers.
9648 (reftex-toc-visit-location): Renamed from
9649 `reftex-toc-visit-line'.
9650 (reftex-latin1-to-ascii): Works now with and without Mule.
9651 (reftex-truncate): Removed special stuff for Emacs 20.2.
9652 (reftex-get-offset): Made more general.
9653 (reftex-show-label-location): Renamed from
9654 `reftex-select-label-callback'.
9655 (reftex-pop-to-label): Function removed (using
9656 `reftex-show-label-location' instead.
9657 (reftex-insert-docstruct): Renamed from
9658 `reftex-make-and-insert-label-list'. Function args changed.
9659 (reftex-toc): Now uses `reftex-insert-docstruct' and
9660 `reftex-find-start-point'.
9661 (reftex-select-item): Use `reftex-find-start-point'.
9662 (reftex-toc-visit-line): Can display labels and file
9663 boundaries.
9664 (reftex-TeX-master-file): `(TeX-master-file)' protected.
9665
9666 1998-11-12 Sam Steingold <sds@goems.com>
9667
9668 * browse-url.el (browse-url): Handle the case when
9669 `browse-url-browser-function' is a lambda list.
9670
9671 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org>
9672
9673 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
9674 version string.
9675 * loadhist.el (symbol-file): Likewise
9676
9677 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM>
9678
9679 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
9680
9681 1998-11-11 Sam Steingold <sds@goems.com>
9682
9683 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
9684 `run-lisp' instead of signalling an error.
9685
9686 1998-11-11 Karl Heuer <kwzh@gnu.org>
9687
9688 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
9689
9690 1998-11-11 Richard Stallman <rms@gnu.org>
9691
9692 * vc-hooks.el (vc-toggle-read-only): Doc fix.
9693
9694 1998-11-11 Per Starback <starback@update.uu.se>
9695
9696 * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
9697 renamed svenska8 to svenska, and fixed and extended CASECHARS
9698 for it.
9699
9700 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org>
9701
9702 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
9703 handling if setpagedevice is not available.
9704 (ps-begin-file): Fix typo.
9705
9706 1998-11-11 Kenichi Handa <handa@etl.go.jp>
9707
9708 * international/mule-util.el (compose-chars-component): Signal
9709 error if CH is a rule-based composition character.
9710 (compose-chars): Signal error if an already compsed character is
9711 going to be composed by rule-base.
9712
9713 * term/x-win.el: If a resolved ASCII font name doesn't conform to
9714 full XLFD, don't try to get information of WEIGHT and SLANT from
9715 that font name.
9716
9717 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
9718
9719 * dos-w32.el (set-default-process-coding-system): Use function on
9720 before-init-hook to set default-process-coding-system based on
9721 enable-multibyte-characters.
9722
9723 * term/w32-win.el ([language-change]): For now ignore
9724 keyboard language-change events.
9725
9726 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org>
9727
9728 * ediff-util.el (ediff-make-temp-file): Run the prefix through
9729 convert-standard-file-name, but leave the results of
9730 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2
9731 characters if the original name already exists, or has a special
9732 handler.
9733
9734 1998-11-10 Karl Heuer <kwzh@gnu.org>
9735
9736 * international/iso-insert.el: Delete autoload cookies.
9737
9738 * international/iso-transl.el: Add autoload cookies.
9739
9740 1998-11-10 Richard Stallman <rms@gnu.org>
9741
9742 * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
9743 (ispell-process-line): Don't treat multibyte
9744
9745 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk>
9746
9747 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
9748 setpagedevice to specify the page size if setpagedevice is
9749 available. This is necessary to select the correct paper tray on
9750 Level 2 printers with multiple paper sizes available.
9751
9752 (ps-begin-file): Cope with font names that contain spaces, and
9753 call BeginDoc in a BeginSetup/EndSetup block.
9754
9755 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org>
9756
9757 * loadup.el (buffer-undo-list): Run fns-VERSION.el through
9758 convert-standard-filename.
9759
9760 * loadhist.el (symbol-file): Run fns-VERSION.el through
9761 convert-standard-filename.
9762
9763 1998-11-06 Richard Stallman <rms@gnu.org>
9764
9765 * textmodes/texinfmt.el (texinfo-format-scan):
9766 Detect the case of two @-commands in a row; process just the first.
9767 (texinfo-append-refill): If line has a @c, insert the @refill
9768 before it.
9769 (texinfo-format-refill): Return with point where the @refill was.
9770
9771 * files.el (hack-local-variables): Test local-enable-local-variables.
9772 (hack-local-variables-prop-line): Likewise.
9773 (set-auto-mode): Don't test local-enable-local-variables here.
9774 (enable-local-variables): Doc fix.
9775 (local-enable-local-variables): Doc fix.
9776 (normal-mode): Doc fix.
9777
9778 1998-11-06 Karl Heuer <kwzh@gnu.org>
9779
9780 * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
9781
9782 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM>
9783
9784 * simple.el (line-number-mode): Doc fix.
9785
9786 1998-11-06 Kenichi Handa <handa@etl.go.jp>
9787
9788 * international/fontset.el (create-fontset-from-fontset-spec):
9789 Give correct arg to `error'.
9790
9791 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org>
9792
9793 * textmodes/sgml-mode.el (html-mode): Doc fix.
9794 (sgml-name-8bit-mode): Fix missing format character in message string.
9795
9796 1998-11-05 Karl Heuer <kwzh@gnu.org>
9797
9798 * mail/sendmail.el (sendmail-send-it): Check for failure.
9799
9800 1998-11-05 Richard Stallman <rms@gnu.org>
9801
9802 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
9803
9804 * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
9805 (close-rectangle): Define as alias.
9806
9807 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu>
9808
9809 * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
9810
9811 1998-11-05 Dave Love <fx@gnu.org>
9812
9813 * help.el (describe-variable): Don't quote link to source.
9814
9815 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu>
9816
9817 * gud.el (gud-common-init): Use pop-to-buffer.
9818 (same-window-regexps): Add an element that matches all gud buffers.
9819
9820 1998-11-04 Jason Rumney <jasonr@altavista.net>
9821
9822 * term/w32-win.el (x-get-selection-value): Alias to
9823 x-cut-buffer-or-selection-value.
9824 (w32-standard-fontset-spec): New variable.
9825 (w32-create-initial-fontsets, mouse-set-font): Check whether
9826 new-fontset is available.
9827 (w32-use-w32-font-dialog): Enable use of set-variable.
9828
9829 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9830
9831 * vc.el (with-vc-file, edit-vc-file): New macros.
9832
9833 1998-11-04 Kenichi Handa <handa@etl.go.jp>
9834
9835 * international/quail.el (quail-show-guidance-buf): Call
9836 set-minibuffer-window to set minibuffer window of the current
9837 frame correctly.
9838
9839 1998-11-03 Theodore Jump <tjump@tertius.com>
9840
9841 * term/w32-win.el: Require fontset.
9842
9843 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org>
9844
9845 * faces.el (set-face-font): Call resolve-fontset-name on w32.
9846 (set-face-font-auto): Ditto.
9847
9848 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
9849
9850 * mouse.el (mouse-drag-region): Fix typo.
9851
9852 1998-11-02 Dave Love <fx@gnu.org>
9853
9854 * progmodes/fortran.el Fix for fontification of strings lost somehow:
9855 (fortran-fontify-string): New function.
9856 (fortran-font-lock-keywords-1): Use it.
9857
9858 1998-11-02 Markus Rost <rost@delysid.gnu.org>
9859
9860 * comint.el (comint-file-name-quote-list): Doc fix.
9861
9862 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
9863
9864 * loadup.el (buffer-undo-list): Write fns-VERSION.el into
9865 build directory, not source directory.
9866
9867 * mouse.el (mouse-drag-region): Fake up a mouse-motion event
9868 if we did not get one for the final move.
9869
9870 1998-11-01 Dave Love <fx@gnu.org>
9871
9872 * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
9873 Don't funcall browse-url-browser-function.
9874
9875 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
9876 Don't funcall browse-url-browser-function.
9877
9878 * fortran.el (fortran-end-prog-re1): Fix the regexp.
9879
9880 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
9881
9882 * files.el (revert-buffer): Doc fix.
9883
9884 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
9885
9886 * textmodes/tex-mode.el (tex-start-options-string):
9887 Quote the backslashes with more backslashes.
9888
9889 1998-10-31 Dave Love <fx@gnu.org>
9890
9891 * webjump.el (webjump-sample-sites): Fix Lisp archive site.
9892 (webjump): Don't funcall browse-url-browser-function.
9893
9894 1998-10-30 Kenichi Handa <handa@etl.go.jp>
9895
9896 * international/quail.el (quail-start-translation): Handle
9897 switching of the frame in read-key-sequence.
9898 (quail-start-conversion): Likewise.
9899 (quail-show-guidance-buf): Detach quail-guidance-buf from any
9900 windows before setting an appropriate window for it.
9901 (quail-hide-guidance-buf): Use window-minibuffer-p. Set
9902 quail-guidance-win to nil.
9903 (quail-update-guidance): If quail-guidance-buf is not in the
9904 selected frame, call quail-show-guidance-buf again.
9905
9906 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no>
9907
9908 * progmodes/pascal.el (pascal-mode):
9909 `blink-matching-paren-dont-ignore-comments' set to t.
9910
9911 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9912
9913 * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
9914
9915 1998-10-30 Dave Love <fx@gnu.org>
9916
9917 * vc.el (vc-backend-merge-news): Check for "P" output.
9918
9919 * help.el (describe-variable): Hyperlink the definition.
9920
9921 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
9922
9923 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
9924 (sh-set-shell): Likewise.
9925
9926 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
9927
9928 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
9929 (edebug-on-error): Fix customize type to match that of
9930 debug-on-error.
9931
9932 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
9933
9934 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
9935 report-emacs-bug-address instead of undefined bug-gnu-emacs.
9936
9937 * international/mule-cmds.el (select-message-coding-system): Doc
9938 fix.
9939
9940 * international/mule-diag.el (describe-coding-system): Describe
9941 all flags.
9942
9943 * mail/sendmail.el (sendmail-coding-system,
9944 default-sendmail-coding-system): Doc fix.
9945
9946 * simple.el (shell-command-on-region): Doc fix.
9947
9948 * loadup.el: Write fns-*.el in current directory instead of
9949 data-directory since no installation directory exists yet. Mark
9950 buffer unmodified afterwards.
9951
9952 * loadhist.el (symbol-file): Load fns-*.el from exec-directory
9953 instead of data-directory since it is architecture dependent.
9954 (load-history-loaded): Update doc string.
9955
9956 1998-10-29 Geoff Voelker <voelker@cs.washington.edu>
9957
9958 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
9959 path as a default directory when canonicalizing names.
9960
9961 * w32-fns.el: Remove a dangling reference to a directory on the
9962 build machine.
9963
9964 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu>
9965
9966 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
9967 namespace related keywords such as `class', `body', `private',
9968 `variable', `namespace eval', etc.
9969 (tcl-imenu-generic-expression): Handle itcl body and class definitions.
9970 (tcl-mode): Added ":" as a word constituent to the syntax-alist of
9971 imenu and font-lock so that searches for \sw would find words
9972 containing colons.
9973
9974 * progmodes/etags.el (initialize-new-tags-table):
9975 Do not alter find-tag-marker-ring and tags-location-ring.
9976
9977 1998-10-27 Geoff Voelker <voelker@cs.washington.edu>
9978
9979 * term/w32-win.el: Require fontset.
9980 (w32-init-fontsets): New function (code from x-win.el).
9981
9982 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9983
9984 * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
9985 calendar-and-diary-frame-parameters): Add title parameter.
9986
9987 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9988
9989 * completion.el (dynamic-completion-mode): New function to enable
9990 the mode. (Just loading the file now does not change anything.)
9991
9992 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9993
9994 * ps-print.el: User option for multibyte buffer handling and doc fix.
9995 (ps-multibyte-buffer): New user option.
9996 (ps-setup): Print new user option.
9997 (ps-print-quote): New fun.
9998 (ps-color-p, ps-mule-font-info-database-latin): New var.
9999 (ps-default-color, ps-mule-font-info-database)
10000 (ps-mule-font-info-database-ps-bdf): Adjust initialization.
10001 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
10002 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
10003 Little code improvement.
10004 (ps-mule-initialize): Initialize ps-mule-font-info-database.
10005 (ps-print-prologue-header, ps-font-family, ps-font-size)
10006 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
10007 (ps-build-face-reference, ps-mule-font-info-database-bdf)
10008 (ps-mule-external-libraries, ps-mule-init-external-library)
10009 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
10010 Doc fix.
10011 (ps-print-version): New version number (4.1.1) and doc fix.
10012 (ps-print-prologue-header): New user option.
10013 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
10014 Conditional compilation for GNU Emacs and emacsens.
10015 (ps-generate-postscript-with-faces): Skip invisible text better.
10016 (ps-setup): Print new user option.
10017 (ps-print-preprint): Check if input file name exists and is unwritable.
10018 (ps-begin-file): Adjust PostScript prologue header for duplex printers
10019 and insert user PostScript prologue header comments.
10020 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
10021 New funs.
10022 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
10023 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
10024 PostScript programming normalization.
10025 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
10026 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
10027 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
10028 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
10029 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
10030 Programming style normalization.
10031
10032 1998-10-26 Kenichi Handa <handa@etl.go.jp>
10033
10034 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
10035 version, check the value of mule-version.
10036
10037 * international/mule-util.el (compose-region): Insert then delete
10038 to preserve markers.
10039 (decompose-region): Use search-forward for efficiency.
10040
10041 * language/chinese.el (pre-write-encode-hz): Cancel previous
10042 change, use generate-new-buffer instead of get-buffer-create.
10043 * language/devan-util.el
10044 (in-is13194-devanagari-pre-write-conversion): Likewise.
10045 * language/thai-util.el (thai-pre-write-conversion): Likewise.
10046 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10047 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10048
10049 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
10050
10051 * mail/rmailsum.el (rmail-message-subject-p):
10052 Handle message whose header has not been reformatted.
10053
10054 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
10055
10056 1998-10-25 Jason Rumney <jasonr@altavista.net>
10057
10058 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
10059 New variables.
10060 (mouse-set-font): Use font menus instead of dialog according to
10061 w32-use-w32-font-dialog.
10062
10063 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10064
10065 * calendar/calendar.el (calendar-day-name-array): Add doc string
10066 correctly!
10067 (calendar-month-name-array): Add doc string correctly!
10068
10069 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu>
10070
10071 * net-utils.el (whois-get-tld): Rewrite not to use `do'.
10072
10073 1998-10-21 Markus Rost <rost@delysid.gnu.org>
10074
10075 * lisp/info.el (Info-next-menu-item): Stay on top of node.
10076
10077 * mail/rmailout.el (rmail-output): Insert newline only if necessary.
10078
10079 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
10080
10081 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
10082
10083 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org>
10084
10085 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
10086
10087 1998-10-21 Karl Heuer <kwzh@gnu.org>
10088
10089 * emacs-lisp/profile.el (profile-timer-program): Var deleted.
10090 (profile-timer-process, profile-temp-result-, profile-time): Likewise.
10091 (profile-filter, profile-reset-timer): Functions deleted.
10092 (profile-check-zero-init-times, profile-get-time): Likewise.
10093 (profile-find-function, profile-quit): Likewise.
10094 (profile-distinct, profile-call-stack, profile-last-time): New vars.
10095 (profile-time-list, profile-init-list): Doc fix.
10096 (profile-functions): Simplify.
10097 (profile-print): Use float. Make output include space separators.
10098 (profile-add-time): New helper function.
10099 (profile-function-prolog): Renamed from profile-start-function.
10100 Handle profile-distinct.
10101 (profile-function-epilog): Renamed from profile-update-function.
10102 Handle profile-distinct.
10103 (profile-a-function): If the function to be profiled is an
10104 autoload form, load it. If it's lazy-loaded, fetch it.
10105 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
10106 (profile-restore-fun): Arg FUN is now a function symbol, as was
10107 documented, rather than a one-element list.
10108 (profile-finish): Call profile-restore-fun properly.
10109
10110 1998-10-21 Kenichi Handa <handa@etl.go.jp>
10111
10112 * international/characters.el: Setup charset property
10113 nospace-between-words.
10114
10115 * international/mule-cmds.el (get-charset-property): If CHARSET is
10116 composition, return nil.
10117 (put-charset-property): If CHARSET is composition, do nothing.
10118
10119 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
10120 * language/devan-util.el
10121 (in-is13194-devanagari-pre-write-conversion): Likewise.
10122 * language/thai-util.el (thai-pre-write-conversion): Likewise.
10123 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10124 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10125
10126 * textmodes/fill.el (sentence-end-without-period): New variable.
10127 (canonically-space-region): Pay attention to
10128 sentence-end-without-period.
10129 (fill-find-break-point): The first argument CHARSET deleted.
10130 Caller changed.
10131 (fill-region-as-paragraph): Pay attention to charset property
10132 nospace-between-words and text property nospace-between-words.
10133
10134 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
10135
10136 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
10137 an unrecognized shell.
10138
10139 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org>
10140
10141 * desktop.el (desktop-save): Include minor modes symbolically.
10142 (desktop-create-buffer): Turn on all minor modes in `mim'.
10143
10144 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
10145
10146 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
10147 (sh-font-lock-keywords): Handle rpm and rpm2.
10148 (sh-ancestor-alist): Handle rpm.
10149
10150 * files.el (auto-mode-alist): Recognize .rpm files.
10151 Also .spec and .mspec files.
10152
10153 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org>
10154
10155 * faces.el (frame-set-background-mode): Enable the function for
10156 MSDOS frames.
10157
10158 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10159
10160 * calendar/calendar.el (calendar-day-name-array): Add doc string.
10161 (calendar-month-name-array): Add doc string.
10162
10163 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu>
10164
10165 * simple.el (kill-ring-max): Increased to 60.
10166
10167 1998-10-17 Kenichi Handa <handa@etl.go.jp>
10168
10169 * international/characters.el: Setup auto-fill-chars.
10170
10171 * international/kinsoku.el (kinsoku): Check the variable
10172 enable-kinsoku.
10173
10174 * simple.el (do-auto-fill): Don't check kinsoku-enable here.
10175 Don't call kinsoku directly, intead call fill-find-break-point.
10176
10177 * textmodes/fill.el: Setup `fill-find-break-point-function'
10178 property to character sets which require `kinsoku' processing for
10179 filling.
10180 (fill-find-break-point): New function.
10181 (fill-region-as-paragraph): Don't check kinsoku-enable here.
10182 Don't call kinsoku directly, intead call fill-find-break-point.
10183
10184 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu>
10185
10186 * faces.el (modify-face-read-string): Return (nil) for "none".
10187 (modify-face): Don't get error if (nil) is the argument.
10188 (face-try-color-list): Don't check whether nil is a valid color.
10189
10190 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu>
10191
10192 * emacs-lisp/bytecomp.el (byte-recompile-directory):
10193 Print message about each directory, even in batch mode.
10194
10195 * gnus/nntp.el: Require `cl' before using nnoo-declare.
10196
10197 * ps-print.el (ps-mule-chars-in-string): No need to use sref.
10198 (ps-mule-string-char): No need to use sref.
10199 (ps-mule-next-index): No need to use sref.
10200
10201 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
10202
10203 * files.el (revert-buffer-internal-hook): Add defvar.
10204
10205 * arc-mode.el (archive-mode): Locally set file-precious-flag.
10206
10207 * tar-mode.el (tar-mode): Locally set file-precious-flag.
10208
10209 1998-10-16 Markus Rost <rost@delysid.gnu.org>
10210
10211 * international/mule-cmds.el (default-input-method): Fix custom type.
10212
10213 * net-utils.el (whois-server-list): Fix customization type.
10214
10215 * shell.el (shell-input-autoexpand): Fix customization group.
10216
10217 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu>
10218
10219 * repeat.el (repeat): Handle keyboard macros properly.
10220 Handle new prefix arg after self-insert command.
10221
10222 * repeat.el: Don't include cl even at compile time.
10223 (repeat): Avoid using `loop'.
10224
10225 * simple.el (shell-command-on-region): Doc fix.
10226 (next-history-element): Special error message if no default.
10227
10228 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu>
10229
10230 * ps-print.el (ps-print-buffer): Doc fix.
10231 (ps-despool): Likewise.
10232
10233 * arc-mode.el (arc-mode): Provide arc-mode.
10234
10235 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
10236
10237 * ps-print.el (ps-print-buffer): Doc fix.
10238
10239 1998-10-14 Dave Love <fx@gnu.org>
10240
10241 * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
10242 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
10243 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
10244
10245 * progmodes/fortran.el (fortran-mode-map): Change "Join
10246 Continuation Line" to "Join Line".
10247 (fortran-font-lock-keywords-1): Add "cycle", "exit".
10248
10249 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
10250
10251 * progmodes/fortran.el (fortran-join-line): Use
10252 `delete-indentation' instead of issuing an error message if not on
10253 a continuation line. Provide for joining several lines using
10254 prefix arg.
10255
10256 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org>
10257
10258 * term/pc-win.el (msdos-color-values): New variable.
10259 (x-color-values): New function, emulates its namesake from
10260 src/xfns.c.
10261 (msdos-bg-mode): Add all dark colors to those which return
10262 "dark".
10263
10264 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
10265
10266 * replace.el (keep-lines, flush-lines, how-many):
10267 Don't ignore case if arg has upper case letters.
10268
10269 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch>
10270
10271 * progmodes/vhdl-mode.el
10272 (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
10273 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
10274 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
10275 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
10276 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
10277 (vhdl-when): Fix indentation problem.
10278 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
10279 (vhdl-get-port, vhdl-get-generic): Bug fix in template.
10280 (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
10281
10282 1998-10-13 Geoff Voelker <voelker@cs.washington.edu>
10283
10284 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
10285 (ls-lisp-insert-directory): Renamed from insert-directory.
10286 (insert-directory): New function.
10287
10288 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
10289
10290 * simple.el (completion-fixup-function): Variable deleted.
10291 (completion-setup-function): Delete code for completion-fixup-function.
10292 * emacs-lisp/lisp.el (lisp-complete-symbol):
10293 Don't bind completion-fixup-function.
10294
10295 * files.el (find-file-wildcards): New option.
10296 (find-file-noselect): Handle wild cards, if enabled.
10297 (file-expand-wildcards): New function.
10298
10299 * simple.el (set-fill-column): Doc fix.
10300
10301 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10302
10303 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
10304
10305 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org>
10306
10307 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
10308 Move declaration before first use.
10309 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
10310 hif-math, hif-factor): Rename token to hif-token and token-list to
10311 hif-token-list.
10312 (hif-token, hif-token-list): Declare them.
10313 (hif-find-ifdef-block): Return cons of top and bottom point
10314 instead of setting dynamically bound variables.
10315 (hide-ifdef-block, show-ifdef-block): Use return value of
10316 hif-find-ifdef-block.
10317
10318 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
10319
10320 * subr.el (read-passwd): Use clear-this-command-keys.
10321
10322 * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
10323
10324 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
10325 and ...-for-write.
10326
10327 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk>
10328
10329 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
10330 responses to GROUP command, since this may be called from a timer
10331 with quit inhibited.
10332
10333 1998-10-12 Kenichi Handa <handa@etl.go.jp>
10334
10335 * international/ccl.el (ccl-compile-if): If there's no false-cmds,
10336 set unconditional-jump to nil.
10337 (ccl-compile-read-multibyte-character): Return nil.
10338 (ccl-compile-write-multibyte-character): Likewise.
10339 (ccl-compile-translate-character): Likewise
10340 (ccl-compile-map-multiple): Likewise.
10341 (ccl-compile-map-single): Likewise.
10342
10343 * international/kinsoku.el: Add coding tag.
10344 (kinsoku-bol): Remove superfluous TAB in a string.
10345
10346 * international/mule-cmds.el (find-coding-systems-for-charsets):
10347 Delete `composition' (if any) from CHARSETS.
10348
10349 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
10350
10351 * international/mule-cmds.el (setup-specified-language-environment):
10352 Add apropos-inhibit property.
10353 (describe-specified-language-support): Likewise.
10354
10355 1998-10-11 Kenichi HANDA <handa@etl.go.jp>
10356
10357 * international/mule.el (make-coding-system): Create -with-esc
10358 variant coding system.
10359
10360 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
10361
10362 * progmodes/etags.el (tags-loop-revert-buffers): New variable.
10363 (next-file): Optionally offer to revert a file's buffer,
10364 if it has an existing buffer but the file has changed.
10365
10366 * info.el (Info-insert-dir): Detect and report problems
10367 in input files, such as "No Top node". Return with point
10368 at the beginning of the text.
10369 (Info-find-node): Reinsert the code to handle files
10370 with no tags table; it was deleted by mistake.
10371
10372 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
10373
10374 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
10375 texinfo-find-higher-level-node repeatedly find the same node.
10376 (texinfo-find-higher-level-node): Doc fix.
10377
10378 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
10379
10380 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
10381 (smtpmail-address-buffer): Add defvar.
10382 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
10383
10384 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
10385
10386 * ffap.el (ffap-machine-p-local): Fix editing error.
10387
10388 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu>
10389
10390 * faces.el (frame-set-background-mode):
10391 Don't do anythung for text-only or MSDOS frame.
10392
10393 1998-10-08 Kenichi Handa <handa@etl.go.jp>
10394
10395 * international/quail.el (quail-defrule): New optional arg APPEND.
10396 (quail-defrule-internal): Fix bug of handling the argument APPEND.
10397
10398 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu>
10399
10400 * gnus/pop3.el (pop3-open-server):
10401 Set process-coding-system-alist around open-network-stream.
10402
10403 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu>
10404
10405 * files.el (save-buffer): Doc fix.
10406
10407 1998-10-07 Karl Heuer <kwzh@gnu.org>
10408
10409 * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
10410 return DEF unchanged, not nil. Simplify.
10411
10412 1998-10-06 Geoff Voelker <voelker@cs.washington.edu>
10413
10414 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
10415
10416 1998-10-06 Peter Breton <pbreton@ne.mediaone.net>
10417
10418 * generic.el (generic-mode-with-type): Added hooks for generic-modes.
10419
10420 * net-utils.el (ftp, nslookup): Require comint.
10421 (network-service-connection): Likewise.
10422 (whois-server-name): Defaults to whois.arin.net
10423 (whois-server-list, whois-server-tld, whois-guess-server): New var.
10424 (whois): Tries to guess the appropriate top-level domain server.
10425 (whois-get-tld): New function.
10426
10427 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
10428 (dirtrack-debug-toggle): Added this function.
10429
10430 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10431
10432 * files.el (find-file-noselect): Switch to the correct buffer
10433 before checking find-file-literally, and allow non-nil non-t
10434 rawfile params.
10435
10436 1998-10-06 Karl Heuer <kwzh@gnu.org>
10437
10438 * midnight.el (clean-buffer-list): Add autoload cookie.
10439
10440 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
10441 no-autosave.
10442 * tar-mode.el (tar-mode-revert): Likewise.
10443 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
10444 from ediff-arrange-autosave-in-merge-jobs. Callers changed.
10445 * gnus/message.el (message-auto-save-directory): Renamed from
10446 message-autosave-directory. All references changed.
10447
10448 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
10449
10450 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
10451 string. Expose mime stuff while searching.
10452
10453 1998-10-06 Richard Stallman <rms@gnu.org>
10454
10455 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
10456
10457 * replace.el (perform-replace): Position point properly
10458 before and after the recursive edit of C-r.
10459
10460 * progmodes/etags.el (tags-reset-tags-tables): Properly
10461 find the markers in the old rings that are being discarded.
10462
10463 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10464
10465 * apropos.el (apropos-print): Control invalid characters.
10466
10467 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
10468 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
10469 confusing customize.
10470
10471 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org>
10472
10473 * generic-x.el (bat-generic-mode): Fix regexps for keywords and
10474 built-in commands. Add more built-in commands and fix face names.
10475
10476 1998-10-05 Simon Marshall <simon@gnu.org>
10477
10478 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
10479
10480 1998-10-04 Eric Ludlam <zappo@gnu.org>
10481
10482 * speedbar.el (speedbar-initial-expansion-list-name): Remove
10483 customization since it is not useful in this case.
10484 (speedbar-frame-mode): Check if cfx or cfy is a list, and make
10485 sure it gets evalled to a number. Also verify that set-frame-name
10486 fn exists before calling it.
10487
10488 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
10489 Protect a `forward-sexp' call which could fail, and improved regex
10490 for ie, and eg abbreviations.
10491
10492 1998-10-02 Noah Friedman <friedman@splode.com>
10493
10494 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
10495 send-string.
10496 (rlogin-send-Ctrl-D): Here also.
10497 (rlogin-send-Ctrl-Z): Here also.
10498 (rlogin-send-Ctrl-backslash): Here also.
10499
10500 1998-10-02 Dave Love <fx@gnu.org>
10501
10502 * outline.el (hide-region-body): Bind
10503 outline-view-change-hook to nil while making repeated calls to
10504 outline-flag-region. Run it once at the end.
10505 (hide-other, hide-sublevels, show-children): Likewise.
10506
10507 * info-look.el: Remove duplicate scheme-mode entry.
10508 (info-lookup-make-completions): When looking for entries, check
10509 that `item' isn't null or "Menu".
10510
10511 1998-10-01 Karl Heuer <kwzh@gnu.org>
10512
10513 * net-utils.el: Don't require ffap.
10514 (net-utils-machine-at-point, net-utils-url-at-point): New functions.
10515 (ping, nslookup-host, finger, network-connection-to-service): Use them.
10516
10517 1998-09-30 Richard Stallman <rms@gnu.org>
10518
10519 * ispell.el (check-ispell-version): No need to bind default-major-mode.
10520
10521 * imenu.el (imenu--generic-function): Sort each submenu by position.
10522 (imenu--sort-by-position): New function.
10523
10524 * cus-edit.el (Custom-mode-menu): Fix info node name.
10525 (customize group): Fix info node name.
10526
10527 * mail/mailalias.el (build-mail-aliases): Don't allow
10528 a newline in the alias name. Don't define an alias
10529 if the definition would be empty.
10530
10531 * which-func.el (which-func-mode-global): Make :set function
10532 more reliable.
10533
10534 * custom.el (custom-set-variables): Load the requests first,
10535 then check the symbol's `set' function.
10536
10537 * ffap.el: Doc fixes.
10538
10539 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10540
10541 * gnus.el: (gnus-valid-select-methods): Fix type.
10542 * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
10543 * gnus-score.el (gnus-orphan-score): Fix type.
10544 (gnus-score-default-header, gnus-score-default-type): Fix type.
10545 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
10546 (gnus-saved-headers): Fix type.
10547
10548 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
10549 Avoid nil value of `two-lines-citation-part'.
10550
10551 1998-09-30 Roman Belenov <roman@nstl.nnov.ru>
10552
10553 * which-func.el (which-function): Handle case when
10554 (car imenu--index-alist) is nil.
10555
10556 1998-09-29 Dave Love <fx@gnu.org>
10557
10558 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
10559 bzip2 args.
10560
10561 1998-09-29 Simon Marshall <simon@gnu.org>
10562
10563 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
10564 comint-exec-hook.
10565
10566 1998-09-29 Stephen Eglen <stephen@gnu.org>
10567
10568 * info-look.el: Add support for Octave.
10569
10570 1998-09-28 Carsten Dominik <cd@delysid.gnu.org>
10571
10572 * textmodes/reftex.el (reftex-finding-files): New customize group.
10573 (reftex-texpath-environment-variables,
10574 reftex-use-external-file-finders, reftex-external-file-finders,
10575 reftex-search-unrecursed-path-first): New options.
10576 (reftex-process-string, reftex-find-file-externally): New
10577 functions.
10578 (reftex-access-search-path): Execute shell commands to find the
10579 search path.
10580 (reftex-toggle-auto-view-crossref): When turning on, make sure
10581 `reftex-auto-view-crossref' becomes non-nil.
10582 (reftex-abbrev-regexp): Constant removed.
10583 (reftex-convert-string): Abbrev regexp calculated locally.
10584
10585 1998-09-28 Dave Love <fx@gnu.org>
10586
10587 * progmodes/fortran.el: Don't call regexp-opt when deriving
10588 font-lock patterns with keywords that aren't all literal.
10589
10590 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
10591
10592 * octave-inf.el (inferior-octave-prompt): Also match prompts of
10593 the form `octave.bin:1>' which come from using precopiled binary
10594 versions.
10595
10596 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu>
10597
10598 * help.el (help-for-help): Use %THIS-KEY%.
10599 (help-quit): Add doc.
10600
10601 * help-macro.el (make-help-screen): Keep HELP-TEXT
10602 in a separate function definition, not in the help command FNAME.
10603 Replace %THIS-KEY% with the key sequence that ran FNAME.
10604
10605 1998-09-25 Richard Stallman <rms@gnu.org>
10606
10607 * textmodes/texinfo.el (texinfo-show-structure):
10608 Bind inhibit-read-only.
10609
10610 * isearch.el (isearch-search-and-update): Properly
10611 handle upper case letters in the reverse-search special case.
10612
10613 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10614
10615 * gnus.el: Extend the list of autoloaded functions.
10616
10617 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
10618 buffer before creating help group. (from Gnus v5.6.43, fix by
10619 1998-08-20 Per Starback <starback@update.uu.se>)
10620
10621 * gnus-util.el (gnus-output-to-rmail): Adjust to
10622 `rmail-output-to-rmail-file'.
10623
10624 1998-09-25 Karl Heuer <kwzh@gnu.org>
10625
10626 * hexl.el (hexl-mode-map): More of previous change.
10627
10628 * textmodes/tex-mode.el (tex-run-command): Doc fix.
10629 (tex-start-tex): Don't use tex-start-options-string in star case.
10630 Quote file name in star case as well as in non-star.
10631 Add blank and quoting of option string here.
10632 (tex-start-options-string): Not here.
10633
10634 1998-09-23 Karl Heuer <kwzh@gnu.org>
10635
10636 * term.el (term-delimiter-argument-list): Doc fix.
10637 (term-emulate-terminal): Escape literal semicolon.
10638 * progmodes/asm-mode.el (asm-mode): Doc fix.
10639 (asm-comment-char): Escape literal semicolon.
10640 * emulation/viper-cmd.el (viper-movement-commands): Likewise.
10641
10642 1998-09-23 Richard Stallman <rms@gnu.org>
10643
10644 * hexl.el (hexl-mode-map): Don't override all ESC bindings,
10645 only those that normally modify the buffer.
10646
10647 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
10648 over again.
10649
10650 1998-09-23 E. Jay Berkenbilt <ejb@ql.org>
10651
10652 * ispell.el (check-ispell-version): Ensure same buffer is current
10653 when let-binding of case-fold-search ends.
10654
10655 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10656
10657 * ps-print.el: Skip invisible overlay.
10658 Test for set-buffer-multibyte rather than using mule-version.
10659 (ps-print-version): New version number (4.1) and doc fix.
10660 (ps-generate-postscript-with-faces): Skip invisible overlay.
10661
10662 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu>
10663
10664 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
10665
10666 1998-09-22 Kenichi Handa <handa@etl.go.jp>
10667
10668 * international/quail.el (quail-update-guidance): Check for the
10669 return value of (quail-guidance) fixed.
10670 (quail-update-translation): Bind quail-current-str locally when it
10671 calls quail-update-guidance.
10672 (quail-update-translation): If input-method-exit-on-first-char is
10673 non-nil, terminate translation only when the current input method
10674 is simple.
10675
10676 1998-09-22 Paul Eggert <eggert@twinsun.com>
10677
10678 * startup.el (locale-translation-file-name): Prefer X-related names
10679 to the name used by GNU/Linux sans X. Set to nil if no file found.
10680 (command-line): Use locale-translation-file-name if it is not nil,
10681 instead of testing for its existence again.
10682 regexp-quote the ctype before using it in a regexp.
10683 Allow a colon to appear after the ctype in the aliases file,
10684 as is done in X11R6.4.
10685
10686 1998-09-21 Richard Stallman <rms@gnu.org>
10687
10688 * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
10689
10690 * calendar/appt.el (appt-interval): Variable deleted.
10691 (appt-check): For minutes in between appt-display-interval times,
10692 do check, but don't display anything except an updated mode line.
10693 Count against appt-display-interval based on minutes since
10694 first display of this appointment, not based on time of day.
10695 If appt-display-mode-line, force mode line redisplay
10696 whenever appt-mode-string has changed.
10697 (appt-add, appt-delete): Add autoload cookies.
10698 (appt-check): Catch errors from calling `diary'.
10699 (appt-max-time): Renamed from max-time.
10700 (appt-now-displayed, appt-display-count): New variables.
10701 (appt-timer): Don't create one if we already have one.
10702
10703 * textmodes/tex-mode.el (tex-compilation-parse-errors):
10704 More general code to use the source buffer instead of the zap file.
10705
10706 * hilit-chg.el (highlight-compare-with-file): Renamed from
10707 compare-with-file.
10708
10709 * loadhist.el (load-history-loaded): New variable.
10710 (symbol-file): Load etc/fns-VERSION.el if that has not been done.
10711
10712 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
10713
10714 * emacs-lisp/find-func.el (find-function-search-for-symbol):
10715 Fix error messages.
10716
10717 1998-09-21 Markus Armbruster <armbru@pond.sub.org>
10718
10719 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
10720 Emacs frame.
10721
10722 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10723
10724 * mail/rmail.el (rmail-decode-babyl-format): Recognize both
10725 `undecided' and `undecided-unix'.
10726
10727 1998-09-21 Dave Love <fx@gnu.org>
10728
10729 * help.el (help-make-xrefs): Fix typo affecting Info references.
10730
10731 * subr.el (remove-hook): Check list values to avoid errors.
10732
10733 1998-09-18 Noah Friedman <friedman@splode.com>
10734
10735 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
10736 store string in eldoc-last-message without consing a new string.
10737 Rearrange logic from nested if's into cond's.
10738 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
10739 Do not print message; just return string.
10740 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
10741 Do not print message; just return string.
10742 Cache that string in eldoc-last-data.
10743 (eldoc-last-data): Make into a vector.
10744 (eldoc-get-fnsym-args-string): Use new data form of structure.
10745 (eldoc-get-var-docstring): Here also.
10746 (eldoc-last-data-store): New function.
10747 (eldoc-get-fnsym-args-string): Use it.
10748 (eldoc-get-var-docstring): Here also.
10749 (eldoc-docstring-first-line): Minimize interim string consing.
10750 Call substitute-command-keys on the result.
10751 (eldoc-print-var-docstrings, eldoc-print-docstring,
10752 eldoc-docstring-message): Functions removed.
10753 (eldoc-docstring-format-sym-doc): New function, functionality
10754 ripped out of eldoc-docstring-message.
10755 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
10756
10757 1998-09-18 Kenichi Handa <handa@etl.go.jp>
10758
10759 * international/mule.el (make-coding-system): Doc-string modified.
10760
10761 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org>
10762
10763 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
10764
10765 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
10766 customize type.
10767
10768 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
10769 type.
10770
10771 * progmodes/compile.el (compilation-error-screen-columns): New
10772 variable.
10773 (compilation-next-error-locus): Use it to decide whether to use
10774 forward-char or move-to-column.
10775
10776 * mail/rmail.el (rmail-movemail-program): Fix customize type.
10777
10778 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
10779 feedmail-fiddle-plex-user-list,
10780 feedmail-spray-address-fiddle-plex-list,
10781 feedmail-prompt-before-queue-user-alist,
10782 feedmail-prompt-before-queue-help-supplement,
10783 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
10784 feedmail-queue-alternative-mail-header-separator): Fix customize
10785 type.
10786
10787 * startup.el (site-run-file): Fix customize type.
10788
10789 * speedbar.el (speedbar-initial-expansion-list-name): Fix
10790 customize type.
10791
10792 * shell.el (shell-input-autoexpand): Fix customize type.
10793
10794 * ps-print.el (ps-font-info-database): Add missing dots in value.
10795 Improve layout of customize type.
10796
10797 * net-utils.el (traceroute-program-options, ping-program-options,
10798 ipconfig-program-options, netstat-program-options,
10799 arp-program-options, route-program-options,
10800 nslookup-program-options, ftp-program-options): Fix customize
10801 type.
10802
10803 * midnight.el (clean-buffer-list-kill-regexps,
10804 clean-buffer-list-kill-buffer-names,
10805 clean-buffer-list-kill-never-buffer-names,
10806 clean-buffer-list-kill-never-regexps): Fix customize type.
10807
10808 * man.el (Man-init-defvars): Avoid trailing nil on
10809 Man-filter-list.
10810
10811 * lpr.el (printer-name): Fix customize type.
10812
10813 1998-09-16 Kenichi Handa <handa@etl.go.jp>
10814
10815 * international/mule-cmds.el (reset-language-environment): Call
10816 update-coding-systems-internal.
10817
10818 * international/mule-conf.el: Call update-coding-systems-internal
10819 at the tail.
10820
10821 1998-09-14 Dave Love <fx@gnu.org>
10822
10823 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't
10824 use the menu-enable properties, pending doing it correctly and
10825 acceptably fast.
10826
10827 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
10828
10829 1998-09-13 Dave Love <d.love@dl.ac.uk>
10830
10831 * progmodes/hideshow.el (hs-grok-mode-type): Check
10832 comment-{start,end} non-nil as well as bound. Report an error if
10833 we can't grok the mode.
10834
10835 1998-09-13 Richard Stallman <rms@gnu.org>
10836
10837 * simple.el (blink-matching-open): Don't log paren matching
10838 messages in *Messages*.
10839
10840 1998-09-12 Richard Stallman <rms@gnu.org>
10841
10842 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
10843 Set point-before-scroll at end even if there was an error.
10844
10845 * ange-ftp.el (ange-ftp-insert-file-contents):
10846 Use binary mode for dumb-unix hosts as for unix hosts.
10847 (ange-ftp-copy-file-internal): Likewise.
10848
10849 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
10850
10851 * emacs-lisp/pp.el: Doc fixes.
10852
10853 * wid-edit.el (widget-menu-max-shortcuts): New variable.
10854 (widget-choose): Don't use single-char shortcuts if # items
10855 exceeds that many. Use minibuffer instead.
10856
10857 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10858
10859 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
10860
10861 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org>
10862
10863 * speedbar.el (speedbar-frame-mode): Do not set frame position if
10864 in terminal mode.
10865
10866 1998-09-10 Noah Friedman <friedman@splode.com>
10867
10868 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
10869 defcustom declaration. It's wreaking too much havoc with XEmacs
10870 and older versions of Emacs, which share this code.
10871
10872 * type-break.el (type-break-mode): Here also.
10873
10874 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
10875 `t' to add-hook also to modify the new local value.
10876
10877 1998-09-10 Dave Love <fx@gnu.org>
10878
10879 * vc.el (vc-insert-headers): Doc fix.
10880
10881 1998-09-10 Richard Stallman <rms@gnu.org>
10882
10883 * textmodes/flyspell.el (flyspell-mode-on): Make the
10884 ispell-... variables permanent locals.
10885 (flyspell-mode-off): Add autoload cookie.
10886
10887 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
10888 do use binary mode, just as for `unix'.
10889 (ange-ftp-host-type): If HOST is nil, return `unix'.
10890
10891 * dired.el (dired-mark-files-containing-regexp):
10892 Don't scan directories. Ignore non-readable files.
10893
10894 * progmodes/compile.el (compilation-error-regexp-alist):
10895 Fix previous change: allow . and _ in command name.
10896
10897 * dired.el (dired-mark-files-containing-regexp): Fix previous change.
10898
10899 * uncompress.el (uncompress-while-visiting):
10900 Use just the car of what find-operation-coding-system returns.
10901
10902 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
10903
10904 * shell.el (shell-file-name-quote-list): Add # to the value.
10905
10906 1998-09-10 E. Jay Berkenbilt <ejb@ql.org>
10907
10908 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
10909 to make killing of ispell process work even if
10910 kill-all-local-variables has been run.
10911
10912 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10913
10914 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
10915 loop when sexp entry ends at end of file with no newline.
10916
10917 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10918
10919 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
10920 (Custom-reset-standard): Fix menu inconsistency.
10921
10922 * mail/feedmail.el (feedmail-from-line): Allow t.
10923 (feedmail-message-id-suffix): Allow nil.
10924
10925 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
10926 Simplify. Make prefix arg work right.
10927
10928 1998-09-09 Dave Love <fx@gnu.org>
10929
10930 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
10931
10932 * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
10933
10934 1998-09-08 Dave Love <fx@gnu.org>
10935
10936 * add-log.el (change-log-font-lock-keywords): Do parenthesized
10937 stuff only after file names or at start of line. Allow parens
10938 around e-mail, as well as angles.
10939
10940 * gnus/nnweb.el (require): Wrap requirement of w3 and url in
10941 ignore-errors too, eval'd when compile. Require w3 stuff at load
10942 time for nicer failure if it's not available.
10943
10944 1998-09-07 Geoff Voelker <voelker@cs.washington.edu>
10945
10946 * comint.el (comint-arguments): Ignore backslashes when using
10947 w32 shells that expect backslashes as the directory separator.
10948
10949 1998-09-04 Kenichi Handa <handa@etl.go.jp>
10950
10951 * international/fontset.el (resolved-ascii-font): New variable.
10952 (x-complement-fontset-spec): By side effect, set
10953 `resolved-ascii-font' to the resolved name of ASCII font."
10954 (create-fontset-from-fontset-spec): Don't get a value for
10955 resolved-ascii-font from the list full-fontlist. It is set by
10956 x-complement-fontset-spec now.
10957
10958 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
10959 version, check the value of mule-version.
10960
10961 1998-09-07 Carsten Dominik <cd@delysid.gnu.org>
10962
10963 * textmodes/reftex.el (reftex-view-crossref): Split up into
10964 several functions. No longer moves to find a macro.
10965 (reftex-view-cr-cite, reftex-view-cr-ref,
10966 reftex-end-of-bib-entry): New functions.
10967 (reftex-auto-view-crossref): New value `window' allowed.
10968 (reftex-view-crossref-when-idle): Process new `window' option in
10969 (reftex-translate-to-ascii-function): New default.
10970 (reftex-label-illegal-re): Default changed, removed Latin1.
10971 (reftex-latin1-to-ascii): New function.
10972 (reftex-what-environment): Check for section regexp before use.
10973 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
10974 absolute path names.
10975 (reftex-TeX-master-file): Changed sequence of file checks.
10976 (reftex-do-citation): bibview cache only with RefTeX mode on.
10977
10978 1998-09-06 Richard Stallman <rms@gnu.org>
10979
10980 * progmodes/compile.el (compilation-error-regexp-alist):
10981 In first pattern (GNU utilities and other things),
10982 allow a space after the optional program name at the beginning.
10983
10984 * mail/mail-hist.el (mail-hist-current-header-contents):
10985 Fix previous change: use mail-header-end.
10986
10987 1998-09-06 Bill Richter <richter@math.nwu.edu>
10988
10989 * international/ccl.el: Doc fixes.
10990 * international/encoded-kb.el: Doc fixes.
10991 * international/fontset.el: Doc fixes.
10992 * international/kinsoku.el: Doc fixes.
10993 * international/kkc.el: Doc fixes.
10994 * international/mule-cmds.el: Doc fixes.
10995 * international/mule-conf.el: Doc fixes.
10996 * international/mule-util.el: Doc fixes.
10997 * international/mule.el: Doc fixes.
10998
10999 1998-09-05 Eric Ludlam <zappo@gnu.org>
11000
11001 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
11002 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
11003 (checkdoc-this-string-valid-engine): Permit ? as terminating
11004 punctuation for first line sentence breaking.
11005 (checkdoc-this-string-valid): When converting a comment into a doc
11006 string, make sure " chars are \".
11007 (checkdoc-sentencespace-region-engine): Only do double space check
11008 if based on the variable `sentence-end-double-space'
11009 (checkdoc-this-string-valid-engine): ? ends valid sentence.
11010 (checkdoc-proper-noun-region-engine): Exclude items in URLs
11011
11012 1998-09-04 Richard Stallman <rms@gnu.org>
11013
11014 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11015 Recognize define-skeleton as a function definer.
11016
11017 * cus-edit.el (customize-option): Refuse to customize
11018 a variable that has no defcustom. But if variable is autoloaded,
11019 first try to load the library that defines it.
11020
11021 * international/iso-insert.el: Use `string' before calling `insert'
11022 so that in multibyte buffers we insert multibyte chars.
11023
11024 * dired.el (dired-mark-files-containing-regexp):
11025 Don't use find-file; instead, insert the file in a temp buffer.
11026
11027 * textmodes/tex-mode.el (tex-start-options-string): New option.
11028 (tex-start-tex): Use that variable.
11029
11030 * mail/rmail.el (rmail-primary-inbox-list): Make the initial
11031 value in the `repeat' alternative a list.
11032
11033 * textmodes/fill.el (fill-individual-paragraphs): Before deleting
11034 the inserted newline, verify that one was really inserted.
11035
11036 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
11037 remains on or remains off.
11038 (flyspell-multi-language-p): Default changed to nil.
11039
11040 * progmodes/ada-mode.el (ada-search-ignore-string-comment):
11041 In "found in comment" case, don't beginning-of-line after forward-line.
11042
11043 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
11044 If the function definition is not a lambda, return original FORM
11045 with no error.
11046
11047 1998-09-04 Peter Breton <pbreton@ne.mediaone.net>
11048
11049 * net-utils.el (netstat-program-options): Changed from nil to "-a"
11050 so that by default netstat shows all network connections.
11051
11052 1998-09-04 Bob Weiner <weiner@altrasoft.com>
11053
11054 * international/quail.el: Doc fixes.
11055
11056 * info.el (info): Don't add parens if FILE already has them.
11057
11058 1998-09-04 Geoff Voelker <voelker@cs.washington.edu>
11059
11060 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
11061 on extension lines.
11062
11063 1998-09-03 Geoff Voelker <voelker@cs.washington.edu>
11064
11065 * w32-fns.el (w32-shell-dos-semantics): New function.
11066
11067 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu>
11068
11069 * international/quail.el (quail-choose-completion-string): Store
11070 completion `choice' in `quail-current-str'; don't insert it.
11071
11072 1998-09-02 Kenichi Handa <handa@etl.go.jp>
11073
11074 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH
11075 argument to ps-mule-generate-bitmap-font.
11076
11077 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
11078 entry and change Latin-1 entry in the default value.
11079 (ps-mule-font-info-database-ps-bdf): New variable.
11080 (ccl-encode-ethio-unicode): Bug of CCL code fixed.
11081 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
11082 registerd in FONT-SPEC.
11083 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
11084 charcter width of bitmap fonts.
11085 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
11086 procedure NF.
11087 (ps-begin-file): Output PostScript code for setting
11088 SpaceWidthRatio.
11089 (ps-plot-region): Use line-beginning-position to get a position of
11090 the beginning of the current line.
11091
11092 * international/mule-cmds.el (register-input-method): Doc-string
11093 modified.
11094
11095 1998-09-01 Dave Love <fx@gnu.org>
11096
11097 * international/mule-cmds.el (current-language-environment): Fix
11098 setter function.
11099
11100 1998-09-01 Simon Marshall <simon@gnu.org>
11101
11102 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
11103 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
11104 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
11105 names with font-lock-type-face. Fontify type specs, etc., with
11106 font-lock-keyword-face.
11107
11108 1998-08-31 Kenichi Handa <handa@etl.go.jp>
11109
11110 * international/fontset.el (x-complement-fontset-spec): If ASCII
11111 font is specified in FONTLIST, don't substitute it for the
11112 resolved name.
11113
11114 1998-08-31 Paul Eggert <eggert@twinsun.com>
11115
11116 * international/mule.el (charset-description): Doc fix.
11117
11118 * language/chinese.el, language/cyrillic.el, language/czech.el,
11119 language/devanagari.el, language/ethiopic.el,
11120 language/european.el, language/hebrew.el, language/indian.el,
11121 language/japanese.el, language/korean.el, language/lao.el,
11122 language/slovak.el, language/thai.el, language/tibetan.el,
11123 language/vietnamese.el:
11124 Add coding: local variable, to avoid bootstrapping problem
11125 if you need to recompile all the Lisp files using interpreted code.
11126
11127 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11128
11129 * cal-china.el (chinese-year-cache): Change range of years from
11130 1989-2000 to 1990-2010.
11131
11132 1998-08-29 Dave Love <d.love@dl.ac.uk>
11133
11134 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
11135 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
11136
11137 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11138
11139 * ps-print.el (ps-print-control-characters): Doc-string modified.
11140 (ps-output-string-prim): Comment format changed.
11141 (ps-do-despool): Indentation of source code changed.
11142
11143 1998-08-28 Kenichi Handa <handa@etl.go.jp>
11144
11145 * subr.el (sref): Make it an alias of aref. Make the
11146 byte-compiler warn that it is obsolete.
11147 (char-bytes): Make the byte-compiler warn that it is obsolete.
11148
11149 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
11150 Calculate the total bytes using position-bytes instead of
11151 char-bytes.
11152
11153 1998-08-27 Karl Heuer <kwzh@gnu.org>
11154
11155 * snmp-mode.el: New file.
11156 * files.el (auto-mode-alist): Add snmp-mode patterns.
11157
11158 1998-08-27 Karl Eichwalder <ke@suse.de>
11159
11160 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
11161
11162 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11163
11164 * calendar/diary-lib.el (diary-block): Doc fix..
11165 * calendar/calendar.el (diary-list-include-blanks): Doc fix..
11166
11167 1998-08-27 Richard Stallman <rms@gnu.org>
11168
11169 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
11170 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
11171 Clear appt-mode-string if we don't put something in it.
11172
11173 1998-08-27 Dave Love <fx@gnu.org>
11174
11175 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
11176 dired-local-variables-file for dired-x.
11177
11178 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
11179 for compressed library files too.
11180
11181 1998-08-26 Kenichi Handa <handa@etl.go.jp>
11182
11183 * language/european.el ("Latin-1"): Modify `documentation' key value.
11184 ("Latin-2"): Likewise.
11185
11186 1998-08-26 Karl Heuer <kwzh@gnu.org>
11187
11188 * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
11189
11190 1998-08-26 Albert L. Ting <alt@artisan.com>
11191
11192 * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
11193 (mail-hist-current-header-contents): Use mail-text-start.
11194
11195 1998-08-26 Richard Stallman <rms@gnu.org>
11196
11197 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
11198 (customize-changed-options-previous-release): New variable.
11199 (customize-changed-options): Use that variable as default arg.
11200
11201 1998-08-26 Karl Eichwalder <ke@suse.de>
11202
11203 * midnight.el: Require `timer' not only when compiling.
11204
11205 1998-08-26 Per Starback <starback@update.uu.se>
11206
11207 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
11208 buffer before creating help group.
11209
11210 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11211
11212 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
11213 coding-system-for-write before saving.
11214
11215 1998-08-26 Kevin Rodgers <kevinr@ihs.com>
11216
11217 * isearch.el (isearch-forward): Doc fix.
11218
11219 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org>
11220
11221 * emacs-lisp/find-func.el: Fix :version tags to have a string
11222 value, not a float.
11223
11224 * cus-dep.el: Fix typo in output.
11225
11226 1998-08-25 Dave Love <fx@gnu.org>
11227
11228 * repeat.el (repeat): Doc fix.
11229 [From rms:]
11230 (repeat-previous-repeated-command): New variable.
11231 (repeat): Check for real-last-command being null or repeat. Set
11232 repeat-previous-repeated-command.
11233
11234 * browse-url.el (browse-url-netscape): Fix format for hex escapes.
11235
11236 1998-08-25 Kenichi Handa <handa@etl.go.jp>
11237
11238 * gnus/message.el (message-send-mail-with-sendmail): Bind
11239 coding-system-for-write by the return value of
11240 select-message-coding-system.
11241 (message-send-mail-with-qmail): Likewise.
11242
11243 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org>
11244
11245 * emacs-lisp/autoload.el: Fix doc-string-elt property on
11246 define-derived-mode.
11247
11248 * files.el (file-name-invalid-regexp):
11249 Fix regex for ms-dos without long file names.
11250
11251 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11252
11253 * ps-print.el: Multi-byte buffer handling.
11254 (ps-print-version): New version number (4.0) and doc fix.
11255 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
11256 compilation for GNU Emacs and emacsens.
11257 (ps-generate-postscript-with-faces): Force invisible text to be
11258 visible.
11259 (dos-ps-printer): New var to avoid compilation gripes.
11260
11261 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11262
11263 * ps-print.el (ps-mule-plot-string): Pay attention to the case
11264 that no more characters can't be printed in the current line.
11265
11266 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11267
11268 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
11269 greater than TO.
11270
11271 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11272
11273 * ps-print.el: Add codes to make ps-print.el work also on Emacs
11274 20.2 and the earlier version.
11275 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
11276 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
11277 (ps-mule-find-wrappoint): Likewise.
11278 (ps-mule-generate-font): Change `X' to `x' in format
11279 control-string.
11280 (ps-generate): Call ps-mule-begin before calling ps-begin-job.
11281 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
11282 `restore' form procedures `BC' and `EC'.
11283
11284 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11285
11286 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
11287 is an executable procedure. Make LineThickness, Xshadow, and
11288 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc.
11289 (ps-mule-font-info-database, ps-mule-font-info-database-ps,
11290 ps-mule-font-info-database-bdf): New vars.
11291 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
11292 (ccl-encode-ethio-unicode): New CCL program.
11293 (ps-mule-encode-ethiopic): New fun.
11294 (ps-mule-current-charset): New var.
11295 (ps-mule-get-font-spec, ps-mule-font-spec-src,
11296 ps-mule-font-spec-name, ps-mule-font-spec-encoding,
11297 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
11298 (ps-mule-external-libraries): New var.
11299 (ps-mule-init-external-library): New fun.
11300 (ps-mule-font-cache): New var.
11301 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
11302 (ps-last-font): New var.
11303 (ps-mule-prepare-font): New fun.
11304 (ps-mule-charset-list): New var.
11305 (ps-mule-prologue-generated, ps-mule-prologue): New vars.
11306 (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
11307 ps-mule-plot-string): New funs.
11308 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
11309 New vars.
11310 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
11311 ps-mule-prepare-cmpchar-font): New funs.
11312 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
11313 vars.
11314 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
11315 ps-mule-generate-bitmap-glyph): New funs.
11316 (ps-mule-initialize, ps-mule-begin): New funs.
11317 (ps-output-string-prim): Insert string as unibyte.
11318 (ps-output-prologue): New fun.
11319 (ps-flush-output): Handle the case of 'prologue.
11320 (ps-begin-file): Call ps-mule-initialize.
11321 (ps-begin-job): Set ps-control-or-escape-regexp differently if
11322 printing multibyte characters.
11323 (ps-begin-page): Set ps-mule-current-charset to 'ascii.
11324 (ps-basic-plot-string): Handle the case of printing ASCII
11325 characters by external libraries (e.g. BDF).
11326 (ps-set-font): Set ps-last-font.
11327 (ps-plot-region): Handle multibyte characters, use
11328 ps-mule-plot-string for them.
11329 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin.
11330
11331 * bdf.el: New file.
11332
11333 1998-08-23 Kenichi HANDA <handa@etl.go.jp>
11334
11335 * international/mule-cmds.el (select-message-coding-system): New
11336 function.
11337 (set-language-environment-coding-systems): Set
11338 default-sendmail-coding-system.
11339
11340 * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
11341 (default-sendmail-coding-system): New variable.
11342 (sendmail-send-it): Encode the message by a coding system
11343 select-message-coding-system returns.
11344
11345 1998-08-23 Eric Ludlam <zappo@gnu.org>
11346
11347 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
11348 (speedbar-mode): Set buffer to read only.
11349 (speedbar-temp-buffer-show-function): For emacs don't call hook
11350 with arguments.
11351 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
11352
11353 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu>
11354
11355 * speedbar.el (speedbar-key-map): Fix typo.
11356
11357 See ChangeLog.7 for earlier changes.