*** empty log message ***
[bpt/emacs.git] / lisp / ChangeLog
1 2000-03-12 Gerd Moellmann <gerd@gnu.org>
2
3 * recentf.el (recentf-keep-non-readable-files-p): Remove
4 double/nested definition.
5
6 2000-03-12 Dave Love <fx@gnu.org>
7
8 * facemenu.el (facemenu-get-face): Use display-color-p.
9 * enriched.el (enriched-decode-foreground): Likewise.
10 (enriched-decode-background): Likewise.
11 * isearch.el (isearch-highlight): Likewise.
12 * info-look.el (info-lookup): Likewise.
13 * simple.el (completion-setup-function): Likewise.
14
15 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
16 :options.
17
18 * bindings.el (mode-line-format): Fix line-number and
19 column-number items. Add help-echo for the background.
20 (mode-line-mule-info): Modify help-echo.
21
22 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
23 defcustom.
24
25 * files.el (load-file): Allow completion to .elc.
26
27 * man.el: Doc fixes.
28 (Man-init-defvars): Use display-color-p to set fontification.
29
30 * play/hanoi.el (hanoi-internal): Don't use oddp.
31
32 2000-03-12 Gerd Moellmann <gerd@gnu.org>
33
34 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
35
36 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
37
38 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
39
40 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
41 Fix comment.
42
43 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
44
45 * font-lock.el (font-lock-keywords): Fix the doc now that
46 regexp-opt-depth is unnecessary.
47 (save-buffer-state): Set an edebug spec.
48 (font-lock-fontify-anchored-keywords): Properly handle the case when
49 the matcher goes past the limit.
50
51 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
52 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
53
54 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
55 dll.el and cookie.el (from Elib) with heavy renaming and other
56 massaging.
57
58 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
59 Autoload the functions used.
60 (easy-mmode-define-syntax): Fix CL typo.
61 (easy-mmode-define-derived-mode): Improve the docstring generation.
62
63 2000-03-10 Gerd Moellmann <gerd@gnu.org>
64
65 * textmodes/texinfo.el (texinfo-version): Variable and function
66 removed.
67
68 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
69
70 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
71 allow more flexibility.
72 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
73 fns.
74 (easy-mmode-defmap, easy-mmode-defsyntax)
75 (easy-mmode-define-derived-mode): New macros.
76
77 2000-03-09 Didier Verna <didier@xemacs.org>
78
79 * rect.el (replace-rectangle): New function.
80
81 2000-03-09 Dave Love <fx@gnu.org>
82
83 * progmodes/fortran.el (fortran-comment-line-start): Define as
84 "C".
85 (fortran-comment-line-start-skip): Don't match cpp stuff.
86 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
87 (fortran-mode-map): Remove over-eager custom-menu-create for now.
88 (fortran-mode): Don't set fortran-comment-line-start-skip,
89 fortran-comment-line-start here. Set comment-start,
90 add-log-current-defun.
91 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
92 (fortran-current-defun): New function.
93
94 2000-03-09 Gerd Moellmann <gerd@gnu.org>
95
96 * emacs-lisp/re-builder.el: New file.
97
98 * mouse.el (mouse-drag-region): Don't run up-event handler
99 if hscroll has changed.
100
101 * octave-mod.el (octave-font-lock-keywords): To font-lock the
102 builtin operators, use `font-lock-builtin-face' for Emacs and
103 `font-lock-preprocessor-face' otherwise.
104
105 * font-lock.el (lisp-font-lock-keywords-1): Highlight
106 `(defun (setf foo)' differently.
107
108 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
109
110 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
111 (regexp-opt): Update comment and adapt the code the new meaning of
112 the `paren' argument of regex-opt-group for shy-groups.
113 (regexp-opt-depth): Handle shy groups as well as backslashed
114 backslashes.
115 (regexp-opt-group): Turn the leading comment into a docstring.
116 Allow `paren' to be a string (the string to use to open a group).
117 Remove open-presuf and close-presuf. Instead of checking for `all
118 one-char' and then later on check for `several one-char', handle
119 both cases close together. Also apply a more generic algorithm
120 for suffixes (the mirror image of the algorithm used for
121 prefixes). Use shy-groups. Use nreverse rather than reverse.
122 (regexp-opt-try-suffix): Removed.
123
124 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
125 from comint-mode-map, so we can just inherit from it. Also, move
126 the initialization into the `defvar' since there's no docstring
127 anyway and it's fairly short.
128 (inferior-scheme-mode): Define it as derived-mode: the code is
129 shorter and this way we inherit from comint-mode-map rather than
130 copying it.
131
132 * subr.el (replace-regexps-in-string): Properly handle the case
133 where we match an empty string.
134
135 * comint.el (comint-exec-1): Add the current-dir to the exec-path
136 when the command has a directory component (such as "./testml").
137 Also fix a typo in the comment.
138
139 2000-03-08 Gerd Moellmann <gerd@gnu.org>
140
141 * Makefile (compile-files): Compile files one by one because
142 that's the only way to ensure a clean compilation environment for
143 each individual file.
144
145 * frame.el (other-frame): Call x-focus-frame.
146
147 2000-03-07 Dave Love <fx@gnu.org>
148
149 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
150 :require to defcustom.
151
152 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
153 lists.
154
155 * files.el (auto-mode-alist): Add configure.in.
156
157 * progmodes/autoconf.el: New file.
158
159 2000-03-07 Gerd Moellmann <gerd@gnu.org>
160
161 * mail/mh-e.el: Change maintainer to `none'.
162
163 * recentf.el (recentf-keep-non-readable-files-p): Quote args
164 to remove-hook and add-hook.
165
166 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
167
168 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
169 it as the default.
170 (mail-send): Test mail-send-nonascii also for the new `mime' value.
171 (sendmail-send-it): Conditionally add MIME headers specifying the
172 used character set.
173
174 2000-03-07 Dave Love <fx@gnu.org>
175
176 * winner.el: Fix keywords, autoload cookies. Split
177 eval-when-compile form to avoid compilation failure.
178
179 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
180
181 * international/mule.el: Modify comment about coding system
182 property `coding-category'.
183 (make-coding-system): New argument EOL-TYPE. Pay attention to
184 coding-category property of PROPERTIES.
185
186 * international/mule-conf.el (coding-category-utf-8,
187 coding-category-utf-16-be, coding-category-utf-16-le): New coding
188 categories. Include them in the argument for set-coding-priority.
189
190 * international/mule-cmds.el (reset-language-environment): Include
191 coding-category-utf-8, coding-category-utf-16-be, and
192 coding-category-utf-16-le in the argument for set-coding-priority.
193 (reset-language-environment): Initialize coding-category-utf-8,
194 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
195
196 2000-03-06 Karl Fogel <kfogel@red-bean.com>
197
198 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
199 code abstracted out of `bookmark-jump-noselect'. Now tries info
200 extensions as well as compression extensions.
201 (bookmark-jump-noselect): Use above new func.
202
203 2000-03-03 Gerd Moellmann <gerd@gnu.org>
204
205 * strokes.el: Change maintainer's mail address.
206
207 2000-03-03 Kenichi Handa <handa@etl.go.jp>
208
209 * international/mule-diag.el (list-character-sets): Make help-echo
210 string by substitute-command-keys.
211 (list-character-sets): Likewise.
212 (sort-listed-character-sets): Call help-setup-xref.
213
214 2000-03-02 Gerd Moellmann <gerd@gnu.org>
215
216 * time.el (display-time-mail-file): Add `none' to the list of
217 choices.
218
219 2000-03-01 Dave Love <fx@gnu.org>
220
221 * help.el (help-xref-go-back): Don't try to set position.
222
223 * international/mule-diag.el (list-character-sets): Call
224 help-setup-xref. Add help-echo to xrefs.
225 (list-character-sets-1): Add help-echo to xrefs.
226
227 2000-03-02 Gerd Moellmann <gerd@gnu.org>
228
229 * frame.el (blink-cursor-mode): Switch cursor on when turning
230 the mode off.
231
232 * add-log.el (add-log-current-defun): Add support for
233 Autoconf mode.
234
235 * mail/rmail.el (rmail-quit-hook): New variable.
236
237 2000-03-01 Dave Love <fx@gnu.org>
238
239 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
240
241 * help.el (help-xref-button): Add help-echo arg.
242 (describe-function-1, describe-variable, help-make-xrefs): Use it.
243
244 * faces.el (list-faces-display): Supply help-echo with
245 help-make-xrefs.
246
247 * facemenu.el (list-text-properties-at): Set help-xref-stack to
248 nil.
249
250 2000-03-01 Gerd Moellmann <gerd@gnu.org>
251
252 * image.el (defimage): Look for image files in load-path.
253
254 * frame.el (busy-cursor-delay-seconds): Change type to
255 `number'.
256
257 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
258
259 * recentf.el (recentf): Added version tag to the defgroup of
260 recentf.
261
262 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
263
264 * recentf.el (recentf-cleanup): Changed to remove excluded file
265 too.
266 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
267 action to select/unselect a file.
268 (recentf-edit-list): Code cleanup and improvement.
269 (recentf-open-more-files-action): `recentf-open-more-files' button
270 widget action to open a file.
271 (recentf-open-more-files): No more use standard completion but
272 widgets.
273 (recentf-more-collection): Deleted.
274 (recentf-more-history): Deleted.
275 (recentf-setup-more-completion): Deleted.
276
277 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
278
279 * recentf.el (recentf-mode): No more needs that Emacs is running
280 under a window-system.
281
282 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
283
284 * recentf.el (recentf-edit-list): New command to edit the recent
285 list which allow the user to remove files.
286 (recentf-edit-selected-items): New global variable, used by
287 `recentf-edit-list' to hold the list of files to be removed from
288 the recent list.
289 (recentf-make-menu-items): Updated to display a "Edit list..."
290 menu item. Minor code cleanup.
291
292 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
293
294 * recentf.el (recentf-open-more-files): New command to open files
295 that are not displayed in the menu.
296 (recentf-more-collection): New global variable holding the set of
297 permissible completions used by `recentf-open-more-files'.
298 (recentf-more-history): New global variable holding the history list
299 used by `recentf-open-more-files' completion.
300 (recentf-setup-more-completion): New function to setup completion for
301 `recentf-open-more-files'.
302 (recentf-make-menu-items): Updated to display a "More..." menu item.
303
304 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
305
306 * recentf.el (recentf-menu-action): Doc fixed.
307
308 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
309
310 * recentf.el (recentf-menu-filter): Doc updated.
311 (recentf-update-menu-hook): Allow menu filters to force menu update.
312 (recentf-make-menu-items): New menu filter handling.
313 (recentf-make-menu-item): New helper function.
314 (recentf-menu-elements): New menu handling function.
315 (recentf-sort-ascending): Updated to new menu filter handling.
316 (recentf-sort-descending): Updated to new menu filter handling.
317 (recentf-sort-basenames-ascending): New menu filter function.
318 (recentf-sort-basenames-descending): New menu filter function.
319 (recentf-show-basenames): New menu filter function.
320 (recentf-show-basenames-ascending): New menu filter function.
321 (recentf-show-basenames-descending): New menu filter function.
322
323 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
324
325 * diary-lib.el (list-diary-entries): Don't try to go forward at
326 the end of the buffer.
327
328 2000-02-29 Kenichi Handa <handa@etl.go.jp>
329
330 * international/mule-diag.el (list-character-sets): Completely
331 rewritten.
332 (sort-listed-character-sets): New function.
333 (list-character-sets-1): Completely rewritten.
334 (list-character-sets-2): New function.
335 (non-iso-charset-alist): New variable.
336 (decode-codepage-char): New function.
337 (charset-history): New variable.
338 (read-charset) (list-block-of-chars)
339 (list-iso-charset-chars)
340 (list-non-iso-charset-chars)
341 (list-charset-chars): New functions.
342 (mule-diag): Call list-character-sets-2, not
343 list-character-sets-2.
344 (dump-charsets): Likewise.
345
346 2000-02-29 Gerd Moellmann <gerd@gnu.org>
347
348 * dired-x.el (dired-filename-at-point): Add `@' to valid
349 file name characters.
350 (dired-filename-at-point): Handle ange-ftp file names.
351
352 * frame.el (frame-notice-user-settings): Use assq-delete-all
353 instead of assoc-delete-all.
354 (frame-notice-user-settings): Ditto.
355
356 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
357 Don't copy alist.
358
359 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
360
361 * calculator.el (calculator-use-menu): New option.
362 (calculator-initial-bindings): Changed some bindings to work as
363 macros.
364 (calculator-forced-input): Removed.
365 (calculator-restart-other-mode): New variable.
366 (calculator-mode-map): Set up menu.
367
368 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
369
370 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
371 tags.
372
373 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
374
375 * viper-cmd.el (viper-envelop-ESC-key): added the option to
376 translate all ESC key sequences.
377 (viper-goto-mark-subr): restore markers for files for which
378 they were saved.
379 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
380 * viper-util.el (viper-set-replace-overlay-glyphs,
381 viper-set-replace-overlay): always check if the replacement
382 overlay is live.
383 * viper.el (viper-vi-state-mode-list): added major modes.
384 * ediff-wind.el: minor comment changes.
385 * ediff.el: copyright notice date fix.
386
387 2000-02-27 Jason Rumney <jasonr@gnu.org>
388
389 * faces.el (face-font-family-alternatives): Add arial to helv.
390 (mode-line, header-line, tool-bar): Same default as x for w32.
391 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
392 face-font-family-alternatives from working.
393 * term/w32-win.el (mouse-set-font): Do not build fontset from
394 chosen font.
395
396 2000-02-25 Sam Steingold <sds@goems.com>
397
398 * emacs-lisp/cl-indent.el (toplvel): Indent `pprint-logical-block'
399 properly.
400
401 2000-02-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
402
403 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
404
405 2000-02-25 Gerd Moellmann <gerd@gnu.org>
406
407 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
408 writable.
409
410 * frame.el (busy-cursor-delay-seconds): New option.
411
412 2000-02-24 Gerd Moellmann <gerd@gnu.org>
413
414 * frame.el (show-cursor-in-non-selected-windows): New option.
415
416 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
417
418 * diary-lib.el (include-other-diary-files): Undo the selective
419 display in any included file and don't kill it.
420
421 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
422
423 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
424 bar. Menu items converted to (menu-item format, help strings
425 added.
426 [downcase, upcase]: Don't enable on MS-DOS.
427 [symlink, symlinks]: Don't show if make-symbolic-link is not
428 bound.
429 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
430
431 2000-02-23 Dave Love <fx@gnu.org>
432
433 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
434 (backward-kill-word): Revert addition of * to interactive spec --
435 it's a feature.
436
437 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
438 (backward-kill-sentence, kill-sentence): Likewise.
439
440 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
441 scratch buffer name.
442 (gud-format-command): Use int-to-string in ?l case. Simplify
443 slightly.
444
445 * term/w32-win.el (internal-face-interactive): Update prompt for
446 new read-face-name.
447
448 * mail/footnote.el (footnote): Add :version to defgroup.
449 (footnote-section-tag-regexp): Customize.
450 (footnote-start-tag, footnote-end-tag): New option.
451 (footnote-latin-regexp): New variable.
452 (Footnote-latin): New function.
453 (footnote-style-alist): Add element for latin style.
454 (footnote-style): Moved.
455 (Footnote-goto-footnote): Use eq to test arg.
456
457 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
458
459 * emacs-lisp/byte-opt.el: Change old backquote syntax.
460 (byte-compile-trueconstp): Include keywords.
461 (byte-optimize-quote, byte-optimize-lapcode): Use
462 byte-compile-const-symbol-p.
463 (byte-optimize-char-before): New optimization.
464
465 * emacs-lisp/bytecomp.el: Change old backquote syntax.
466 (byte-compile-const-symbol-p): New function.
467 (byte-compile-constp, byte-compile-out-toplevel)
468 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
469 Use it.
470
471 * subr.el (define-key-after): Default AFTER to t. Doc fix.
472
473 2000-02-23 Kenichi Handa <handa@etl.go.jp>
474
475 * international/encoded-kb.el: Be sure to update minor-mode-alist
476 and minor-mode-map-alist.
477 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
478 codes SS2 and SS3 correctly.
479 (encoded-kbd-self-insert-ccl): New function.
480 (encoded-kbd-setup-keymap): New function.
481 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
482 by calling encoded-kbd-setup-keymap.
483
484 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
485 characters.
486 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
487 locally.
488
489 2000-02-22 Dave Love <fx@gnu.org>
490
491 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
492 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
493 defvar.
494 (lisp-mode-syntax-table): Set up for #|...|# comments.
495 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
496 classes. Match `defface'.
497 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
498 (eval-defun-1): Fix for defcustom.
499 (lisp-indent-region): Doc fix.
500
501 * subr.el (when, unless, split-string): Doc fix.
502 (read-passwd): Move call of clear-this-command-keys to the right
503 place.
504 (replace-regexps-in-string): New function.
505
506 2000-02-22 Gerd Moellmann <gerd@gnu.org>
507
508 * help.el (describe-variable): Set syntax table to
509 emacs-lisp-mode-syntax-table when moving forward over the
510 symbol's name.
511
512 2000-02-22 Dave Love <fx@gnu.org>
513
514 * xt-mouse.el: Doc fixes.
515 (xterm-mouse-position-function): New function, replacing advice of
516 mouse-position.
517 (xterm-mouse-mode): Use it. Don't turn on under a window system.
518
519 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
520
521 2000-02-21 Gerd Moellmann <gerd@gnu.org>
522
523 * format.el (format-annotate-single-property-change): Handle
524 properties.with dotted-list values.
525 (format-proper-list-p): New function.
526
527 * enriched.el (enriched-face-ans): Handle '(foreground-color
528 . COLOR) and (background-color . COLOR).
529
530 2000-02-20 Dave Love <fx@gnu.org>
531
532 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
533 and assignments to it.
534 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
535 current local map.
536 (make-flyspell-overlay): Use it.
537 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
538
539 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
540 (lm-get-header-re): Defun, not defsubst.
541 (lm-get-package-name): Defun, not defsubst. Simplify.
542 (lm-version): Doc fix. Simplify.
543 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
544 (lm-crack-address, lm-last-modified-date, lm-commentary)
545 (lm-verify, lm-synopsis): Simplify.
546 (lm-report-bug): Require emacsbug. Use compose-mail.
547
548 2000-02-20 Gerd Moellmann <gerd@gnu.org>
549
550 * dired.el (dired-mode): Call propertized-buffer-identification
551 to set mode-line-buffer-identification to something having
552 the right text properties.
553
554 * bindings.el (propertized-buffer-identification): New function.
555
556 2000-02-20 Dave Love <fx@gnu.org>
557
558 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
559 check for t-mouse too.
560
561 * cus-start.el: Make echo-keystrokes `number'.
562
563 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
564
565 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
566 Don't call ring-empty-p unless tags-location-ring is bound.
567 From Noah Friedman <friedman@splode.com>.
568
569 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
570
571 * progmodes/hideshow.el (hs-flag-region): No longer use
572 `intangible' overlay property.
573
574 (hs-toggle-hiding): New command.
575 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
576
577 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
578 Fix omission bug: Run `hs-minor-mode-hook' for both activation
579 and deactivation.
580
581 2000-02-18 Gerd Moellmann <gerd@gnu.org>
582
583 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
584
585 2000-02-17 Gerd Moellmann <gerd@gnu.org>
586
587 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
588
589 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
590 of `*' to handle `(* ... *)' comments.
591
592 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
593
594 * faces.el (list-faces-display): Use display-mouse-p instead of
595 window-system.
596
597 * menu-bar.el (global-map): Menu-bar items converted to the new
598 format (menu-item..., rearranged for better CUA compliance, and
599 their names changed for better clarity. Help strings added.
600
601 * international/mule-cmds.el (mule-menu-keymap)
602 (describe-language-environment-map, set-coding-system-map)
603 (setup-language-environment-map): Convert to new (menu-item...
604 form, add help strings. Change names of menu items for better
605 clarity. "Mule" menu-bar item removed (it's now in the "Options"
606 submenu).
607
608 2000-02-17 Gerd Moellmann <gerd@gnu.org>
609
610 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
611 within the code.
612
613 2000-02-16 Dave Love <fx@gnu.org>
614
615 * faces.el: Don't require custom. Add more specific :groups to
616 various deffaces.
617 (set-face-attribute): Purecopy args.
618 (read-face-name): Default to name at point and use it in prompt.
619 Remove colon from arg in all callers.
620 (list-faces-display): Hyperlink to face descriptions and customize
621 buffers.
622
623 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
624
625 * wid-edit.el (widget-match-inline): An atom never matches a
626 list.
627
628 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
629
630 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
631 at ':' characters by call to split-string.
632
633 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
634
635 * textmodes/bibtex.el: Added RCS version identification.
636
637 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
638
639 * textmodes/bibtex.el: Some temporary comments removed.
640 (bibtex-field-name, bibtex-entry-type): Made the relationship
641 explicit.
642 (bibtex-field-const): Allow capital letters.
643 (bibtex-start-of-string): Deleted because unused.
644
645 * textmodes/bibtex.el: Unified some nomenclature. We no longer
646 use the term 'reference' to describe a bibtex entry as a whole.
647 Further, reference keys are no longer called 'labels'.
648 (bibtex-keys): Renamed to bibtex-reference-keys.
649 (bibtex-reformat-previous-labels): Renamed to
650 bibtex-reformat-previous-reference-keys.
651 (bibtex-reference-type): Renamed to bibtex-entry-type.
652 (bibtex-reference-head): Renamed to bibtex-entry-head.
653 (bibtex-reference-maybe-empty-head): Renamed to
654 bibtex-entry-maybe-empty-head.
655 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
656 (bibtex-search-reference): Renamed to bibtex-search-entry.
657 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
658 bibtex-enclosing-entry-maybe-empty-head.
659 (bibtex-entry-field-alist, bibtex-entry-head,
660 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
661 bibtex-map-entries, bibtex-search-entry,
662 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
663 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
664 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
665 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
666 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
667 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
668 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
669
670 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
671
672 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
673 comment.
674 (bibtex-format-field-delimiters): New function, functionality
675 extracted from bibtex-format-entry.
676 (bibtex-autokey-get-yearfield-digits): New function, functionality
677 extracted from bibtex-autokey-get-yearfield.
678
679 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
680 entries in order to avoid stack overflow in the regexp matcher if
681 field contents become large.
682 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
683 bibtex-field-string-part-not-braced,
684 bibtex-field-string-part-no-inner-braces,
685 bibtex-field-string-part-1-inner-brace,
686 bibtex-field-string-part-2-inner-braces,
687 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
688 bibtex-field-string-quoted, bibtex-field-string,
689 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
690 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
691 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
692 as parsing is now performed by the following functions.
693 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
694 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
695 bibtex-parse-field-string, bibtex-search-forward-field-string,
696 bibtex-parse-association, bibtex-field-name-for-parsing,
697 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
698 bibtex-search-forward-field, bibtex-search-backward-field,
699 bibtex-start-of-field, bibtex-end-of-field,
700 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
701 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
702 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
703 bibtex-parse-string, bibtex-search-forward-string,
704 bibtex-search-backward-string, bibtex-start-of-string,
705 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
706 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
707 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
708 entries. Instead of reporting the results of the parsing by
709 match-beginning or match-end, these functions return data structures
710 that hold the corresponding positions.
711 (bibtex-enclosing-field): Changed to also report field boundaries by
712 return values rather than by match-beginning or match-end. The
713 following functions have been adapted to use the new parsing
714 functions.
715 (bibtex-skip-to-valid-entry, bibtex-search-reference,
716 bibtex-enclosing-field, bibtex-format-entry,
717 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
718 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
719 bibtex-print-help-message, bibtex-end-of-entry,
720 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
721 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
722 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
723 method for parsing.
724 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
725 bibtex-map-entries, bibtex-flash-head,
726 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
727 bibtex-autokey-change, bibtex-autokey-get-namefield,
728 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
729 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
730 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
731 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
732 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
733 order to make the new binding of case-fold-search immediately
734 visible.
735
736 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
737
738 * textmodes/bibtex.el: Copyright notice is up to date.
739 Added constant 'bibtex-maintainer-salutation.
740
741 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
742 than make-temp-name, use match-string-no-properties and eliminate
743 a quadratic behavior when building bibtex-strings.
744
745 * bibtex.el (bibtex-reference-key): Accept string entries whose
746 reference key contains upper case letters.
747
748 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
749
750 * bibtex.el (bibtex-reference-head): Allow entries to start with
751 a new line.
752
753 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
754
755 * bibtex.el: Hiding of entry bodies is not longer provided by
756 bibtex.el directly. Instead the hideshow package can be used.
757 Added a special bibtex entry to hs-special-modes-alist.
758 (bibtex-hs-forward-sexp): Added for hideshow.el.
759
760 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
761
762 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
763 at ':' characters by call to split-string.
764
765 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
766
767 * textmodes/bibtex.el: Added RCS version identification.
768
769 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
770
771 * textmodes/bibtex.el: Some temporary comments removed.
772 (bibtex-field-name, bibtex-entry-type): Made the relationship
773 explicit.
774 (bibtex-field-const): Allow capital letters.
775 (bibtex-start-of-string): Deleted because unused.
776
777 * textmodes/bibtex.el: Unified some nomenclature. We no longer
778 use the term 'reference' to describe a bibtex entry as a whole.
779 Further, reference keys are no longer called 'labels'.
780 (bibtex-keys): Renamed to bibtex-reference-keys.
781 (bibtex-reformat-previous-labels): Renamed to
782 bibtex-reformat-previous-reference-keys.
783 (bibtex-reference-type): Renamed to bibtex-entry-type.
784 (bibtex-reference-head): Renamed to bibtex-entry-head.
785 (bibtex-reference-maybe-empty-head): Renamed to
786 bibtex-entry-maybe-empty-head.
787 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
788 (bibtex-search-reference): Renamed to bibtex-search-entry.
789 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
790 bibtex-enclosing-entry-maybe-empty-head.
791 (bibtex-entry-field-alist, bibtex-entry-head,
792 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
793 bibtex-map-entries, bibtex-search-entry,
794 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
795 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
796 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
797 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
798 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
799 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
800 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
801
802 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
803
804 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
805 comment.
806 (bibtex-format-field-delimiters): New function, functionality
807 extracted from bibtex-format-entry.
808 (bibtex-autokey-get-yearfield-digits): New function, functionality
809 extracted from bibtex-autokey-get-yearfield.
810
811 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
812 entries in order to avoid stack overflow in the regexp matcher if
813 field contents become large.
814 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
815 bibtex-field-string-part-not-braced,
816 bibtex-field-string-part-no-inner-braces,
817 bibtex-field-string-part-1-inner-brace,
818 bibtex-field-string-part-2-inner-braces,
819 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
820 bibtex-field-string-quoted, bibtex-field-string,
821 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
822 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
823 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
824 as parsing is now performed by the following functions.
825 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
826 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
827 bibtex-parse-field-string, bibtex-search-forward-field-string,
828 bibtex-parse-association, bibtex-field-name-for-parsing,
829 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
830 bibtex-search-forward-field, bibtex-search-backward-field,
831 bibtex-start-of-field, bibtex-end-of-field,
832 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
833 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
834 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
835 bibtex-parse-string, bibtex-search-forward-string,
836 bibtex-search-backward-string, bibtex-start-of-string,
837 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
838 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
839 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
840 entries. Instead of reporting the results of the parsing by
841 match-beginning or match-end, these functions return data structures
842 that hold the corresponding positions.
843 (bibtex-enclosing-field): Changed to also report field boundaries by
844 return values rather than by match-beginning or match-end. The
845 following functions have been adapted to use the new parsing
846 functions.
847 (bibtex-skip-to-valid-entry, bibtex-search-reference,
848 bibtex-enclosing-field, bibtex-format-entry,
849 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
850 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
851 bibtex-print-help-message, bibtex-end-of-entry,
852 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
853 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
854 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
855 method for parsing.
856 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
857 bibtex-map-entries, bibtex-flash-head,
858 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
859 bibtex-autokey-change, bibtex-autokey-get-namefield,
860 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
861 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
862 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
863 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
864 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
865 order to make the new binding of case-fold-search immediately
866 visible.
867
868 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
869
870 * textmodes/bibtex.el: Copyright notice is up to date.
871 Added constant 'bibtex-maintainer-salutation.
872
873 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
874 than make-temp-name, use match-string-no-properties and eliminate
875 a quadratic behavior when building bibtex-strings.
876
877 * bibtex.el (bibtex-reference-key): Accept string entries whose
878 reference key contains upper case letters.
879
880 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
881
882 * bibtex.el (bibtex-reference-head): Allow entries to start with
883 a new line.
884
885 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
886
887 * bibtex.el: Hiding of entry bodies is not longer provided by
888 bibtex.el directly. Instead the hideshow package can be used.
889 Added a special bibtex entry to hs-special-modes-alist.
890 (bibtex-hs-forward-sexp): Added for hideshow.el.
891
892 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
893
894 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
895 proceedings entry type (for cross referencing). Thanks to Wagner
896 Toledo Correa for the suggestion.
897
898 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
899
900 2000-02-14 Kenichi Handa <handa@etl.go.jp>
901
902 * international/characters.el: Setup case table for Vietnamese.
903
904 2000-02-12 Gerd Moellmann <gerd@gnu.org>
905
906 * uniquify.el (toplevel): Require CL at compile time.
907 (uniquify-push): Removed.
908
909 * shadowfile.el (shadow-when): Removed.
910
911 * tempo.el (tempo-dolist, tempo-mapc): Removed.
912 (tempo-process-and-insert-string): Use dolist instead of
913 tempo-dolist.
914
915 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
916 regexp for paragraph-start.
917
918 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
919 commas as well.
920
921 2000-02-10 Dave Love <fx@gnu.org>
922
923 * wid-edit.el: (widgets) [defgroup]: Remove url link.
924 (widget-color-choice-list, widget-color-history, widget-mouse-help):
925 Deleted.
926 (widget-specify-field, widget-specify-button): Don't use
927 widget-mouse-help as help-echo property.
928 (default): Use #'ignore for :validate and :mouse-down-action.
929 (checkbox): Add help-echo.
930 (widget-sexp-validate): Rewritten to clarify error messages.
931 (character): Use char-valid-p in :match function.
932 (widget-color-complete): Use facemenu-color-alist.
933 (widget-color-action): Use facemenu-read-color.
934
935 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
936 set up `caar' &c that we now have.
937
938 2000-02-09 Ray Blaak <blaak@gnu.org>
939
940 * delphi.el: Make resourcestring a declaration region, like const
941 and var.
942
943 2000-02-09 Dave Love <fx@gnu.org>
944
945 * bindings.el (mode-line-input-method-map): New variable.
946 (mode-line-mule-info): Use it; fix last change.
947 (mode-line-mode-menu): Move definition.
948 (mode-line-mouse-sensitive-p): Deleted.
949 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
950 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
951 level.
952
953 * startup.el (command-line-1): Don't call
954 make-mode-line-mouse-sensitive.
955
956 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
957
958 * mail/rmail.el (rmail-retry-failure): Use
959 rmail-beginning-of-message before rmail-toggle-header, because the
960 former toggles headers.
961
962 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
963
964 * diff-mode.el (diff-kill-junk): New interactive function.
965 (diff-reverse-direction): Use delete-and-extract-region.
966 (diff-post-command-hook): Restrict the area so that the hook also works
967 outside of any diff hunk. This is necessary for the minor-mode.
968 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
969 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
970
971 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
972 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
973 so that it can be used more easily in <foo>-mode-hook. Also make sure
974 to avoid duplicate entries.
975 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
976 (font-lock-remove-keywords): Just as was done for `add', allow it to
977 work even if font-lock-mode is nil. Also make sure we don't modify
978 any pre-existing list by forcing a copy-sequence. Finally rename
979 `major-mode' to `mode'.
980 (font-lock-fontify-syntactic-anchored-keywords)
981 (font-lock-fontify-anchored-keywords)
982 (font-lock-fontify-keywords-region): Use line-end-position.
983 Don't make `font-lock-multiline' local (it's now done in
984 font-lock-set-defaults).
985 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
986 move the `font-lock-fontified' creation to inside the `unless'.
987
988 2000-02-06 Andrew Innes <andrewi@gnu.org>
989
990 * term/w32-win.el (x-handle-args): Comment out call to message,
991 which occurs before window system is initialized.
992
993 * makefile.nt: Add support for recompiling lisp code.
994
995 2000-02-04 Dave Love <fx@gnu.org>
996
997 * bindings.el (mode-line-mule-info): Fix/extend last change.
998
999 * completion.el: Replace completion-dolist with dolist.
1000
1001 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
1002 dotimes.
1003
1004 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
1005
1006 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
1007 environment names before they go into the section regexp.
1008
1009 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
1010 char class in regexp.
1011
1012 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
1013 `case-fold-search' to nil.
1014
1015 * progmodes/idlwave.el (idlwave-template): Respect
1016 `idlwave-abbrev-change-case'.
1017 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
1018 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
1019 idlwave-while): respect `idlwave-reserved-word-upcase'.
1020 (idlwave-rw-case): New function.
1021 (idlwave-statement-match): Fixed problem with assignment regexp.
1022 (idlwave-font-lock-keywords): Improved regexp for keyword
1023 parameters.
1024 (idlwave-surround): New argument LENGTH to support padding of
1025 operators longer than 1 char.
1026
1027 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
1028 idlwave-shell-expression-overlay. Implemented printing of
1029 expressions on higher levels of the calling stack.
1030 (idlwave-shell-display-level-in-calling-stack): Restore stack
1031 level.
1032 (idlwave-retrieve-expression-from-level): New function.
1033 (idlwave-shell-last-calling-stack): Variable removed.
1034 (idlwave-shell-reset): Argument action reversed (`visible' to
1035 `hidden'). Also remove stop-line overlay.
1036 (idlwave-shell-calling-stack-routine): New variable.
1037 (idlwave-shell-parse-stack-and-display): Messages now display
1038 negative level numbers.
1039 (idlwave-shell-mode): Set `modeline-format'.
1040 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
1041 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
1042 21.
1043 (idlwave-shell-print-expression-function): New option.
1044
1045 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
1046 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
1047 `tool-bar' instead of `toolbar'.
1048
1049 2000-02-02 Dave Love <fx@gnu.org>
1050
1051 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
1052 emacs-lisp-mode-hook. Don't check for defalias being defined.
1053
1054 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
1055 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
1056 the new builtins directly.
1057
1058 * whitespace.el (whitespace): Add :version to defgroup.
1059
1060 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
1061 Doc fix.
1062
1063 * thingatpt.el (sexp-at-point, symbol-at-point)
1064 (number-at-point, list-at-point): Add autoload cookie.
1065
1066 * recentf.el (recentf): Add :version to defgroup.
1067
1068 * quickurl.el (quickurl): Add :version to defgroup.
1069
1070 * elide-head.el (elide-head): Use point-marker more.
1071
1072 * bs.el (bs): Add :version to defgroup.
1073
1074 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
1075
1076 * progmodes/delphi.el (delphi): Add :version to defgroup.
1077
1078 2000-02-02 Gerd Moellmann <gerd@gnu.org>
1079
1080 * ange-ftp.el (ange-ftp-write-region): Handle case that
1081 succeeding process operation sets a different coding system.
1082
1083 * calculator.el: New file.
1084
1085 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
1086
1087 * frame.el (frames-on-display-list, framep-on-display): New
1088 functions.
1089 (display-mouse-p, display-popup-menus-p, display-graphic-p)
1090 (display-selections-p, display-screens, display-pixel-width)
1091 (display-pixel-height, display-mm-width, display-mm-height)
1092 (display-backing-store, display-save-under, display-planes)
1093 (display-color-cells, display-visual-class): New functions.
1094
1095 * term/tty-colors.el (tty-color-gray-shades): New function.
1096
1097 * faces.el (display-color-p): Use framep-on-display.
1098 (display-grayscale-p): New function.
1099
1100 2000-01-31 Dave Love <fx@gnu.org>
1101
1102 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
1103 (create-fontset-from-x-resource): Don't concat integers.
1104
1105 2000-01-31 Inge Frick <inge@nada.kth.se>
1106
1107 * view.el: Some changes in documentation. Removed some trailing
1108 whitespace. Changed some parameter names to agree with
1109 documentation.
1110 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
1111 window is not deleted. Modifies change 1998-04-26.
1112
1113 2000-01-31 Gerd Moellmann <gerd@gnu.org>
1114
1115 * windmove.el: New file.
1116
1117 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
1118 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
1119 progmodes/ebnf-yac.el: Update copyright and license info.
1120
1121 * jit-lock.el (jit-lock-function): Widen before calculating end
1122 position.
1123 (jit-lock-stealth-chunk-start): Rewritten.
1124
1125 * info.el (Info-title-face-alist): Removed.
1126 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
1127 faces.
1128 (Info-fontify-node): Use these faces.
1129
1130 2000-01-30 Gerd Moellmann <gerd@gnu.org>
1131
1132 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
1133 (cl-macro-list1): Recognize `&allow-other-keys' instead of
1134 `&allow-other-keywords'.
1135
1136 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
1137 the list of directories scanned heuristically.
1138
1139 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
1140 exist.
1141
1142 2000-01-30 Jason Rumney <jasonr@gnu.org>
1143
1144 * w32-fns.el: Define w32-tty-standard-colors.
1145
1146 * startup.el (command-line): Use w32-tty-standard-colors when in
1147 w32 console mode.
1148
1149 2000-01-30 Dave Love <fx@gnu.org>
1150
1151 * jka-compr.el (jka-compr-load): Fix up load-history.
1152
1153 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
1154
1155 * emacs-lisp/cl-macs.el: Revert previous change.
1156
1157 2000-01-29 Dave Love <fx@gnu.org>
1158
1159 * facemenu.el: Purecopy various strings.
1160
1161 * timezone.el (timezone-fix-time): Window against 69 for two-digit
1162 years. Deal with three-digit years.
1163
1164 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
1165 defconst, purecopy.
1166 (help-back-label): Purecopy it.
1167
1168 2000-01-18 Gerd Moellmann <gerd@gnu.org>
1169
1170 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
1171 variable. If non-nil, order the buffer list according to the
1172 currently selected frame.
1173 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
1174 non-nil, pass the selected frame to function buffer-list.
1175
1176 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1177
1178 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
1179
1180 2000-01-28 Dave Love <fx@gnu.org>
1181
1182 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
1183
1184 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
1185 Don't use lisp-indent-hook property.
1186 (cl-abs): Remove.
1187
1188 * subr.el: Move out indent and edebug specs for when and unless.
1189
1190 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
1191 when, unless.
1192
1193 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
1194 unless, when.
1195
1196 2000-01-28 Gerd Moellmann <gerd@gnu.org>
1197
1198 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
1199 `collecting' as synonym for `collect'.
1200
1201 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
1202 for the case it contains spaces.
1203
1204 * simple.el (what-cursor-position): Change formatting of
1205 messages.
1206
1207 * frame.el (delete-other-frames): New function.
1208 (toplevel): Bind it to C-x 5 1.
1209
1210 * sort.el (sort-numeric-base): New option.
1211 (sort-numeric-fields): If number starts with `0' or `0[xX[',
1212 interpret it as octal or hexadecimal. Use sort-numeric-base
1213 as default base.
1214
1215 * progmodes/glasses.el: New file.
1216
1217 2000-01-27 Gerd Moellmann <gerd@gnu.org>
1218
1219 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
1220 userids differently.
1221
1222 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
1223 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
1224 progmodes/ebnf-yac.el: New files.
1225
1226 2000-01-26 Dave Love <fx@gnu.org>
1227
1228 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
1229 on a function with an empty body. [From Eric Ludlam.]
1230
1231 2000-01-25 Andre Spiegel <spiegel@gnu.org>
1232
1233 * vc.el (vc-version-diff): Make sure file name is expanded.
1234
1235 2000-01-25 Gerd Moellmann <gerd@gnu.org>
1236
1237 * scroll-bar.el (scroll-bar-timer): Variable removed.
1238 (scroll-bar-toolkit-scroll): Don't use a timer.
1239
1240 2000-01-25 Kenichi Handa <handa@etl.go.jp>
1241
1242 * language/thai-util.el (thai-composition-function): Delete
1243 superfluous `a'.
1244
1245 2000-01-24 Dave Love <fx@gnu.org>
1246
1247 * fortran.el (fortran-mode): Use beginning-of-defun-function,
1248 end-of-defun-function.
1249
1250 * font-lock.el (turn-on-font-lock): Don't depend on window-system
1251 &c.
1252
1253 2000-01-22 Jason Rumney <jasonr@gnu.org>
1254
1255 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
1256 conflicts with new face support.
1257
1258 2000-01-22 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1259
1260 * replace.el (query-replace): Rename last arg to DELIMITED.
1261 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
1262 (query-replace-regexp): Likewise.
1263
1264 2000-01-20 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1265
1266 * subr.el (with-syntax-table): Use make-symbol, not gensym.
1267
1268 * emacs-lisp/lisp.el (beginning-of-defun-function):
1269 Variable renamed from beginning-of-defun.
1270 Do not call make-variable-buffer-local.
1271 (beginning-of-defun-raw): Use new variable name; doc fix.
1272 (beginning-of-defun): Doc fix.
1273 (end-of-defun-function): Variable renamed from end-of-defun.
1274 Do not call make-variable-buffer-local.
1275 (end-of-defun): Use new variable name; doc fix.
1276
1277 * subr.el (dolist, dotimes): Copied from cl-macs.el
1278 and made to work.
1279
1280 * mail/undigest.el (rmail-digest-end-regexps):
1281 Variable replaces rmail-digest-end-regexp.
1282 Allows multiple regexps for detecting the end line.
1283 (undigestify-rmail-message): Corresponding changes.
1284
1285 2000-01-19 Dave Love <fx@gnu.org>
1286
1287 * files.el (user-init-file): Don't declare here -- is primitive.
1288
1289 * startup.el (command-line): Check for compiled user-init-file and
1290 set to uncompiled version if necessary.
1291
1292 2000-01-18 Gerd Moellmann <gerd@gnu.org>
1293
1294 * mail/undigest.el (rmail-digest-end-regexp): New user option.
1295 (undigestify-rmail-message): Use it.
1296
1297 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
1298
1299 2000-01-17 Gerd Moellmann <gerd@gnu.org>
1300
1301 * tmm.el (tmm-goto-completions): Adapt to prompt being part
1302 of mini-buffer.
1303
1304 2000-01-14 Gerd Moellmann <gerd@gnu.org>
1305
1306 * emacs-lisp/copyright.el (copyright-update): Removed the
1307 requirement for a trailing space from `copyright-regexp', to
1308 support copyrights with owner specified on a separate line..
1309
1310 * align.el: New file.
1311
1312 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
1313
1314 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
1315
1316 2000-01-13 Dave Love <fx@gnu.org>
1317
1318 * ph.el: Removed. (Obsoleted by EUDC.)
1319
1320 2000-01-13 Gerd Moellmann <gerd@gnu.org>
1321
1322 * net/eudc.el (toplevel): Remove autoloaded code installing
1323 menu with easymenu, because that causes build problems.
1324
1325 * frame.el (frame-notice-user-settings): New variable.
1326 (frame-notice-user-settings): Don't modify frame parameters
1327 if called a second time.
1328
1329 2000-01-13 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1330
1331 * frame.el (frame-notice-user-settings):
1332 Notice default-frame-parameters even for non-window frames.
1333
1334 2000-01-13 Gerd Moellmann <gerd@gnu.org>
1335
1336 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
1337 for Emacs.
1338 (eudc-bob-can-display-inline-images): Extend for Emacs.
1339 (eudc-bob-toggle-inline-display): Ditto.
1340 (eudc-bob-display-jpeg): Ditto.
1341
1342 2000-01-12 Gerd Moellmann <gerd@gnu.org>
1343
1344 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
1345 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
1346 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
1347
1348 * add-log.el (add-change-log-entry): Fix error trying an `(insert
1349 nil)'.
1350
1351 * subdirs.el: Add `net' directory.
1352
1353 * net: New directory.
1354
1355 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
1356 eval-last-sexp. Don't bind debug-on-error here.
1357 (eval-last-sexp): New function. Bind debug-on-error if
1358 eval-expression-debug-on-error is non-nil.
1359 (eval-defun-2, eval-defun): Likewise.
1360
1361 * simple.el (eval-expression): Don't bind debug-on-error if
1362 eval-expression-debug-on-error is nil. Detect changed
1363 debug-on-error, and propagate new value to global binding, if
1364 eval-expression-debug-on-error is non-nil,
1365 (eval-expression-debug-on-error): Change doc string.
1366
1367 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1368
1369 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
1370
1371 * emacs-lisp/lisp-mode.el (with-syntax-table):
1372 Set up lisp-indent-function property.
1373
1374 * subr.el (with-syntax-table): Moved from simple.el.
1375
1376 * simple.el (with-syntax-table): Moved to subr.el.
1377
1378 2000-01-11 Gerd Moellmann <gerd@gnu.org>
1379
1380 * tmm.el (tmm-shortcut): Delete region after prompt instead
1381 of erasing buffer.
1382
1383 * textmodes/fill.el (fill-common-string-prefix): New function.
1384 (fill-context-prefix): Use the longest common prefix of first
1385 and second line fill prefix, if there is one.
1386
1387 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1388
1389 * array.el (array-mode): Don't use make-variable-buffer-local.
1390 Use make-local-variable for `truncate-lines'.
1391
1392 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
1393
1394 * add-log.el (add-log-current-defun): Handle user-defined
1395 add-log-current-function returning nil,
1396
1397 * add-log.el (add-change-log-entry): Insert version number
1398 if having found a current function
1399
1400 * add-log.el (add-log-current-defun): Call
1401 `add-log-current-defun-function'. Try matches at level 0 and
1402 level 1. Strip whitespace from defun found.
1403
1404 2000-01-10 John Wiegley <johnw@gnu.org>
1405
1406 * allout.el (isearch-done/outline-provisions): Added `edit'
1407 argument to correspond with the current definition of
1408 `isearch-done'.
1409
1410 2000-01-10 Dave Love <fx@gnu.org>
1411
1412 * elide-head.el (elide-head): Use point-marker, not point.
1413
1414 2000-01-10 Gerd Moellmann <gerd@gnu.org>
1415
1416 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
1417 before and after the year 2000.
1418
1419 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
1420 Add ispell- prefix.
1421
1422 2000-01-10 Ken Stevens <k.stevens@ieee.org>
1423
1424 * ispell.el: Only define dictionaries in menus when they exist.
1425 (version18p): New variable.
1426 (version20p): New variable.
1427 (xemacsp): New variable.
1428 (ispell-choices-win-default-height): Fix for XEmacs visibility.
1429 (ispell-dictionary-alist1): Added Brasileiro dictionary.
1430 (ispell-dictionary-alist6): Russian command lines no longer accept
1431 run-together words.
1432 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
1433 (ispell-dictionary-alist): Add koi8-r to customize definition.
1434 (check-ispell-version): Added documentation string. Returns
1435 library path when called non-interactively.
1436 (ispell-menu-map-needed): Uses new variables.
1437 (ispell-library-path): New variable.
1438 (ispell-decode-string): XEmacs fix for bogus variable bindings.
1439 (ispell-word): Improved documentation string. Test for valid
1440 character mappings. Correctly check typed in word changes that can
1441 result in single words split into multiple words. Returns
1442 replacement word.
1443 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
1444 replace in recursive query replace mode. Help message for
1445 recursive edit mode.
1446 (ispell-show-choices): Protect against bad framepop bindings.
1447 (ispell-help): Fix to work with XEmacs.
1448 (ispell-highlight-spelling-error): Use new variables.
1449 (ispell-overlay-window): Fix to work with XEmacs.
1450 (ispell-parse-output): Passed and returns location information
1451 tracking spelling corrections. Doesn't recheck same word on
1452 current line.
1453 (ispell-init-process): Protect against bogus XEmacs variable binding.
1454 Fix call to single argument in sleep-for. Use new variables.
1455 (ispell-region): Passed and returns location information tracking
1456 spelling corrections. Doesn't check same word on current line.
1457 Improved documentation string. Doesn't resend a line already
1458 checked to the ispell process - fixes bug in LaTeX parsing.
1459 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
1460 (ispell-skip-region): No longer skips <TT> in SGML.
1461 (ispell-process-line): Tracks location information with spelling
1462 corrections. Added documentation string. Accounts for words
1463 already accepted on this line. Don't allow query-replace on line
1464 starting with math characters. Doesn't resend a line already sent
1465 to ispell process. Fixes alignment error bug.
1466
1467 2000-01-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1468
1469 * dired-x.el (dired-guess-shell-alist-default):
1470 Suggest xloadimage, which is free, not xv, which isn't.
1471
1472 * ange-ftp.el (ange-ftp-file-name-nondirectory):
1473 Don't ever include the host name or user name in the value.
1474
1475 2000-01-09 Gerd Moellmann <gerd@gnu.org>
1476
1477 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
1478 of a real newline.
1479
1480 2000-01-09 Stephen Eglen <stephen@gnu.org>
1481
1482 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
1483 for .png files.
1484
1485 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
1486
1487 * cus-edit.el (custom-hook-convert-widget): Fix comment.
1488
1489 2000-01-09 Gerd Moellmann <gerd@gnu.org>
1490
1491 * progmodes/cperl-mode.el: Replace ^F with ^L.
1492
1493 * sendmail.el (toplevel): Provide `sendmail' when compiling
1494 before `require'ing rmail and mailalias to prevent infinite
1495 recursion.
1496
1497 2000-01-08 Dave Love <fx@gnu.org>
1498
1499 * emacs-lisp/backquote.el: Remove inappropriate customization
1500 (allowing custom.el to use backquote).
1501
1502 2000-01-07 Dave Love <fx@gnu.org>
1503
1504 * add-log.el (add-log-debugging): Deleted.
1505 (add-change-log-entry): Treat a backup FILE-NAME as its parent
1506 file. Remove debugging code.
1507 (change-log-get-method-definition, change-log-name): Add doc.
1508 (change-log-sortable-date-at): New function.
1509 (change-log-merge): New command.
1510
1511 * time.el (display-time-string-forms): Make the Mail string active.
1512 (display-time-update): Provide help-echo for load average.
1513
1514 * bindings.el (make-mode-line-mouse2-map): New function.
1515 (mode-line-modified): Use it and simplify.
1516 (mode-line-mule-info): Provide help-echo info.
1517 (minor-mode-alist): Activate the strings.
1518 (make-mode-line-mouse-sensitive): Simplify for
1519 mode-line-buffer-identification.
1520
1521 2000-01-07 Gerd Moellmann <gerd@gnu.org>
1522
1523 * play/pong.el: New file.
1524
1525 2000-01-06 Dave Love <fx@gnu.org>
1526
1527 * array.el: Assorted cleanups for compiler warnings, doc strings,
1528 `array-' prefix for symbols.
1529
1530 2000-01-05 Dave Love <fx@gnu.org>
1531
1532 * textmodes/outline.el (outline-mode-menu-bar-map): Add
1533 outline-headers-as-kill.
1534 (outline-mode): Define imenu-generic-expression.
1535 (outline-headers-as-kill): New command.
1536
1537 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
1538 from paragraph-start.
1539 (paragraph-indent-minor-mode): New command.
1540
1541 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
1542 M-C-e, M-C-h, C-j, C-xnd, TAB.
1543 (fortran-mode): Set beginning-of-defun, end-of-defun.
1544 (fortran-column-ruler): Simplify.
1545 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
1546 (fortran-with-subprogram-narrowing): Likewise.
1547 (fortran-indent-subprogram): Call mark-defun.
1548 (fortran-check-for-matching-do): Change narrowing.
1549
1550 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
1551 (cl-lucid-hash-tag): Delete.
1552 (cl-hash-table-p): Correct test for native table.
1553 (cl-hash-table-count): Use hash-table-count.
1554
1555 * browse-url.el (browse-url): Fix case of
1556 browse-url-browser-function being an alist.
1557
1558 2000-01-05 Carsten Dominik <cd@gnu.org>
1559
1560 * textmodes/reftex-vars.el (reftex-parse-file-extension)
1561 (reftex-index-phrase-file-extension): New options.
1562
1563 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
1564 Use new option `reftex-index-phrase-file-extension'.
1565
1566 * textmodes/reftex.el (reftex-access-parse-file): Use new option
1567 `reftex-parse-file-extension'.
1568
1569 2000-01-05 Dave Love <fx@gnu.org>
1570
1571 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
1572 (beginning-of-defun-raw): Use it.
1573 (end-of-defun): New variable.
1574 (end-of-defun): Use it.
1575 (check-parens): New command.
1576
1577 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1578
1579 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
1580 (hs-show-block): Don't use `mapcar' when not accumulating.
1581
1582 Fix buglet in local variables initialization.
1583
1584 2000-01-05 Andreas Schwab <schwab@suse.de>
1585
1586 * hscroll.el (hscroll): Doc fix.
1587
1588 2000-01-05 Carsten Dominik <cd@gnu.org>
1589
1590 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
1591 idlw-toolbar.
1592
1593 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
1594 file idlw-rinfo.el.
1595 (idlwave-customize): load must read file idlw-shell.el.
1596 (idlwave-create-customize-menu): load must read file idlw-shell.el.
1597
1598 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
1599
1600 * progmodes/idlw-shell.el: Also provide idlwave-shell
1601 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
1602 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
1603
1604 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
1605 both reftex-dcr and reftex-vcr.
1606
1607 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
1608
1609 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1610
1611 * ps-print.el: PostScript code now is in separate files, doc fix.
1612 (ps-print-version): New version number (5.0.3).
1613 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
1614 local.
1615 (ps-spool-config): Initialization fix.
1616 (ps-print-prologue-1, ps-print-prologue-2)
1617 (ps-print-duplex-feature): PostScript code moved to separated file.
1618 (ps-background-image): Little code reformating.
1619 (ps-begin-file, ps-begin-job): Fix code.
1620 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
1621 (ps-prologue-file): New fun.
1622
1623 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1624
1625 * ps-vars.el: Eliminated.
1626
1627 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
1628 `;;;###autoload'.
1629
1630 * ps-print.el: ps-vars eliminated, doc fix.
1631 (ps-print-version): New version number (5.0.2).
1632 (ps-spool-config): Initialization fix.
1633 (ps-print-customize): New fun.
1634
1635 2000-01-04 Gerd Moellmann <gerd@gnu.org>
1636
1637 * autorevert.el (auto-revert-mode): Return value of
1638 auto-revert-mode.
1639
1640 2000-01-04 Dave Love <fx@gnu.org>
1641
1642 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
1643 menu items.
1644
1645 2000-01-03 Dave Love <fx@gnu.org>
1646
1647 * elide-head.el (elide-head) [defgroup]: Add :version.
1648
1649 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
1650 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
1651 `cl-hash-table-p', not `hash-table-p'.
1652 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
1653
1654 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1655
1656 * faces.el (face-read-integer, read-face-attribute)
1657 (color-defined-p, color-values): unspecified-{f,b}g are now
1658 strings.
1659
1660 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
1661
1662 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
1663 at comment end, and re-insert them after filling.
1664
1665 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1666
1667 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
1668 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
1669 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
1670
1671 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1672
1673 * term/x-win.el (xw-defined-colors): Call color-supported-p,
1674 the new name of face-color-supported-p.
1675
1676 * term/w32-win.el (xw-defined-colors): Likewise.
1677
1678 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
1679
1680 * simple.el (completion-setup-function): Count completion-size
1681 from minibuffer-prompt-end, not from point-min.
1682
1683 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1684
1685 * faces.el (read-face-attribute, defined-colors, color-defined-p):
1686 Pass the frame to tty-color-* functions.
1687 (display-color-p, frame-set-background-mode): Pass the frame to
1688 tty-display-color-p.
1689
1690 * term/tty-colors.el (tty-defined-color-alist): Renamed from
1691 tty-color-alist.
1692 (tty-color-alist, tty-modify-color-alist): New functions.
1693 (tty-color-define, tty-color-clear, tty-color-approximate)
1694 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
1695 an optional parameter FRAME.
1696
1697 2000-01-01 Gerd Moellmann <gerd@gnu.org>
1698
1699 * image.el (create-image, defimage): Don't assume image data is a
1700 string.
1701
1702 * image.el (defimage): Handle specifications containing :data
1703 instead of :file.
1704 (image-type-from-data): New function.
1705 (image-type-from-file-header): Use it.
1706 (create-image): Add parameter DATA-P.
1707
1708 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1709
1710 * echistory.el (electric-command-history): Call Command-history-setup
1711 and command-history-mode using their new conventions.
1712
1713 * chistory.el (Command-history-setup): Don't switch buffers. Take
1714 no args, and do not set major-mode, mode-name or the local map.
1715 (command-history-mode): New function, does some of those things
1716 Command-history-setup used to do.
1717 (list-command-history): Call command-history-mode, not
1718 Command-history-setup.
1719 (command-history): Renamed from command-history-mode.
1720
1721 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1722
1723 * arc-mode.el (archive-mode-map): Bind q to quit-window.
1724
1725 1999-12-31 William M. Perry <wmperry@aventail.com>
1726
1727 * image.el (defimage): Images with the `:data' keyword should be
1728 considered valid as well.
1729
1730 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1731
1732 * dired.el (dired-get-filename): Don't call file-name-absolute-p
1733 with FILE if FILE is nil.
1734
1735 1999-12-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1736
1737 * simple.el (choose-completion-string): In minibuffer,
1738 do not delete the prompt string.
1739
1740 1999-12-30 Gerd Moellmann <gerd@gnu.org>
1741
1742 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
1743 assigned to mode-line-mode-menu because bindings.el is dumped with
1744 Emacs, and thus the lists used for menu-item definition will be
1745 copied to pure space. Emacs' menu code (parse_menu_item) doesn't
1746 like pure menu item definitions.
1747
1748 * expand.el (expand-abbrev-hook): Return t if expansion was
1749 done, nil otherwise.
1750
1751 1999-12-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1752
1753 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
1754 (tar-quit): Function deleted.
1755
1756 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1757
1758 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
1759 was used but not declared.
1760
1761 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
1762 hs-find-block-beginning): Add or modify docstrings.
1763
1764 (hs-isearch-show): Rewrite.
1765
1766 1999-12-28 Gerd Moellmann <gerd@gnu.org>
1767
1768 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
1769
1770 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
1771 space in front of a C-style comment end.
1772
1773 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
1774
1775 * startup.el (command-line-1): Make mode line mouse-sensitive for
1776 the MS-DOS version as well.
1777
1778 1999-12-28 Gerd Moellmann <gerd@gnu.org>
1779
1780 * bs.el: New file.
1781
1782 1999-12-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1783
1784 * textmodes/ispell.el (ispell-process-line):
1785 Add local var line-offset to adjust for the change
1786 in positions within the line, due to previous replacements.
1787
1788 1999-12-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1789
1790 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
1791 Doc fixes.
1792
1793 1999-12-27 Gerd Moellmann <gerd@gnu.org>
1794
1795 * add-log.el (change-log-version-number-regexp-list)
1796 (change-log-version-info-enabled): Change :version to 21.1.
1797 (toplevel): Require CL when compiling.
1798
1799 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
1800
1801 * add-log.el (change-log-version-number-regexp-list): Added tag
1802 :version 20.6
1803 (change-log-version-info-enabled): Added tag :version 20.6
1804
1805 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
1806
1807 * add-log.el: More general version number search with
1808 user-configurable regexp list.
1809 (change-log-version-number-regexp-list): New user variable.
1810 (change-log-find-version): Rewritten. Use user-configurable
1811 version numbering regexp list
1812 change-log-version-number-regexp-list.
1813 (change-log-find-version): Renamed to
1814 change-log-version-number-search
1815 (add-log-file-name-function): New.
1816 (change-log-search-vc-number): Added END paramaeter. Added doc
1817 string to function.
1818 (change-log-version-rcs): Renamed. Was
1819 change-log-search-vc-number.
1820
1821 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org>
1822
1823 * progmodes/compile.el (compilation-goto-locus): Delete hideshow
1824 overlays if they interfere.
1825 (compilation-find-file): Make intangible overlays tangible.
1826
1827 * progmodes/hideshow.el: Generally, synch w/ maintainer
1828 version 5.9.
1829
1830 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
1831
1832 (hs-minor-mode-hook): Don't initialize.
1833
1834 (hs-special-modes-alist): Rewrite value and docstring.
1835
1836 (hs-minor-mode-prefix): Delete unused var.
1837
1838 (hs-block-start-mdata-select): New var, buffer local.
1839
1840 (hs-headline): New var.
1841
1842 (hs-match-data, hs-forward-sexp): New funcs.
1843
1844 (hs-hide-comment-region): New func.
1845
1846 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
1847 hs-safety-is-job-n, hs-hide-initial-comment-block,
1848 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
1849 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
1850 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
1851 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
1852 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
1853
1854 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
1855 (hs-isearch-show-temporary): New funcs.
1856
1857 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
1858
1859 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
1860
1861 When constructing menu, use `[(shift button2)]' notation.
1862
1863 1999-12-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1864
1865 * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
1866 (jka-compr-compression-info-list): Add new elt to each vector.
1867 (jka-compr-write-region): Don't compress the data if it is
1868 already compressed.
1869
1870 * jka-compr.el (jka-compr-really-do-compress): New variable.
1871 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
1872 if visiting.
1873 (jka-compr-write-region): Set jka-compr-really-do-compress
1874 if visiting. Test it when deciding to compress.
1875
1876 1999-12-22 Gerd Moellmann <gerd@gnu.org>
1877
1878 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
1879 with third argument t.
1880
1881 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1882
1883 * antlr-mode.el: Version 1.2 is released.
1884 (antlr): This package has a web page.
1885
1886 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1887
1888 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
1889 regions. Suggested by Dale Davis <Dale_Davis@securify.com>.
1890 (antlr-mode-map): New binding [C-c C-c].
1891 (antlr-mode-menu): New entries.
1892
1893 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
1894
1895 * antlr-mode.el: Respect Emacs conventions.
1896 ((require 'cl)): Only use during compilation.
1897 (antlr-language-for-option): New function to avoid using `find'.
1898 (antlr-mode): Use it.
1899 (antlr-with-syntax-table): Define new instead using XEmacs' one.
1900 (antlr-imenu-create-index-function): Change accordingly.
1901 (antlr-inside-rule-p): Ditto.
1902 (antlr-end-of-rule): Ditto.
1903 (antlr-end-of-body): Ditto.
1904 (antlr-beginning-of-rule): Ditto.
1905 (antlr-indent-line): Ditto.
1906
1907 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com>
1908
1909 * antlr-mode.el: Really use `antlr-tab-offset-alist'.
1910 (antlr-set-tabs): Don't use hard-coded values.
1911
1912 * antlr-mode.el: Minor navigation changes. Not perfect, but this
1913 won't be possible without a huge time penalty.
1914 (antlr-skip-exception-part): Be more specific.
1915 (antlr-skip-file-prelude): Don't skip action prelude of next rule.
1916 Renamed from `antlr-skip-grammar-header'.
1917 (antlr-next-rule): Change accordingly.
1918 (antlr-end-of-body): Ditto. Better error message.
1919 (antlr-beginning-of-body): Better error message.
1920 (antlr-imenu-create-index-function): Skip rule action prelude.
1921
1922 * antlr-mode.el: Minor syntax highlighting changes.
1923 (antlr-font-lock-default-face): Deletia.
1924 (antlr-font-lock-tokendef-face): Changed color.
1925 (antlr-font-lock-tokenref-face): Changed color.
1926 (antlr-font-lock-literal-face): Changed color.
1927 (antlr-font-lock-additional-keywords): Minor changes.
1928
1929 1999-12-20 Carsten Dominik <cd@gnu.org>
1930
1931 * progmodes/idlwave.el: New file.
1932
1933 * progmodes/idlwave-rinfo.el: New file.
1934
1935 * progmodes/idlwave-shell.el: New file.
1936
1937 * progmodes/idlwave-toolbar.el: New file.
1938
1939 * files.el (auto-mode-alist): idlwave-mode default for .pro files.
1940
1941 1999-12-21 Gerd Moellmann <gerd@gnu.org>
1942
1943 * progmodes/cwarn.el: New file.
1944
1945 1999-12-19 Gerd Moellmann <gerd@gnu.org>
1946
1947 * bindings.el (completion-ignored-extensions): Add .pdf.
1948
1949 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
1950
1951 * version.el: Put the version info into binary on MS-DOS as well.
1952
1953 1999-12-19 Gerd Moellmann <gerd@gnu.org>
1954
1955 * emacs-lisp/debug.el (debugger-continue): Don't continue if
1956 debugger-may-continue is nil.
1957
1958 1999-12-18 Dave Love <fx@gnu.org>
1959
1960 * emacs-lisp/cl-macs.el: Remove conditional definition of
1961 eval-when-compile. Don't specify abs, expt, gethash,
1962 hash-table-count, hash-table-p as side-effect-free here.
1963 (cl-emacs-type): Don't declare.
1964 (cl-compile-time-init): Remove Emacs 18 compiler patch.
1965 (cl-parse-loop-clause): Remove compatibility code.
1966
1967 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
1968 (side-effect-free-fns): Add gethash, hash-table-count.
1969 (side-effect-and-error-free-fns): Add hash-table-p.
1970
1971 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend
1972 `cl-' to autoload names for some hash functions. Don't autoload
1973 eval-when-compile. Don't provide mini-cl.
1974 (cl-emacs-type): Remove.
1975 (cl-map-extents): Remove compatibility code.
1976
1977 * emacs-lisp/float.el: Bind free variables.
1978
1979 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
1980
1981 1999-12-16 Gerd Moellmann <gerd@gnu.org>
1982
1983 * bindings.el (completion-ignored-extensions): Add .tfm.
1984
1985 1999-12-16 Dave Love <fx@gnu.org>
1986
1987 * faces.el (set-face-attribute): Purecopy the attributes set.
1988
1989 * custom.el (custom-declare-variable): Purecopy value.
1990
1991 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
1992 (byte-extrude-byte-code-vectors): Use remprop.
1993 (byte-compile-lambda): Check that arg is a lambda.
1994
1995 1999-11-16 Anders Lindgren <AndersL@andersl.com>
1996
1997 * font-lock.el: System for adding and removing keywords.
1998 Both local (previously added keyword) and global keywords
1999 can be removed.
2000 (font-lock-remove-keywords): New user-level function.
2001 (font-lock-update-removed-keyword-alist): New internal function.
2002 (font-lock-removed-keywords-alist): New variable.
2003 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
2004 Empty `font-lock-keywords-alist' when `append' is `set' to avoid
2005 growing datastructures.
2006 (font-lock-set-defaults): Removes keywords stored in
2007 `font-lock-removed-keywords-alist' after local keywords added.
2008
2009 1999-12-16 Anders Lindgren <andersl@andersl.com>
2010
2011 * font-lock.el (c-keywords, c++-keywords): Better "case" support for
2012 complex constant expressions, e.g. "case 1<<A_BIT_NO:".
2013
2014 * font-lock.el (c-keywords): Only highlight preprocessor
2015 directives when spelled correctly.
2016
2017 * font-lock.el (font-lock-match-c++-structor-declaration,
2018 c++-keywords): Fontify constructors and destructors with function
2019 face inside C++ class declarations.
2020
2021 1999-12-16 Gerd Moellmann <gerd@gnu.org>
2022
2023 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
2024 the shell from sh-shell-file.
2025
2026 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
2027
2028 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2029
2030 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
2031 if one of the files specified cannot be accessed by
2032 file-attributes. Do not strip any leading directories from the
2033 file names, to behave more like `ls' does.
2034
2035 * dired.el (dired-get-filename): Handle absolute file names.
2036 (dired-readin-insert): If argument is a cons, don't print
2037 "wildcard" on the ``total'' line.
2038
2039 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
2040
2041 * faces.el (face-read-integer, read-face-attribute)
2042 (color-defined-p, color-values): Allow color values unspecified-fg
2043 and unspecified-bg, handle them as unspecified.
2044
2045 1999-12-15 Carsten Dominik <dominik@astro.uva.nl>
2046
2047 * textmodes/reftex.el: (reftex-compile-variables): respect new
2048 structure of `reftex-index-macro'
2049 (reftex-compile-variables): Use the changed structure of
2050 `reftex-label-alist'.
2051
2052 * textmodes/reftex-vars.el (reftex-index-math-format,
2053 (reftex-toc-max-level): New option.
2054 reftex-index-phrases-search-whole-words,
2055 reftex-index-phrases-case-fold-search,
2056 reftex-index-phrases-skip-indexed-matches,
2057 reftex-index-phrases-wrap-long-lines,
2058 reftex-index-phrases-sort-prefers-entry,
2059 reftex-index-phrases-sort-in-blocks): New options.
2060 (reftex-index-macros): Option structure changed.
2061 (reftex-index-macros-builtin): Added `repeat' item to each entry.
2062 (reftex-label-alist): Additional item in each entry to specify if
2063 the environment should be listed in the TOC.
2064 (eval-when-compile (require 'cl)) added.
2065
2066 * textmodes/reftex-index.el (reftex-index-selection-or-word): No
2067 longer deals with "repeat".
2068 (reftex-index): "repeat property in `reftex-index-macro-alist' is
2069 now used.
2070 (reftex-index-phrases-comment-regexp,
2071 reftex-index-phrases-macrodef-regexp,
2072 reftex-index-phrases-phrase-regexp1,
2073 reftex-index-phrases-phrase-regexp2,
2074 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
2075 New constants.
2076 (reftex-index-phrases-macro-data, reftex-index-phrases-files,
2077 reftex-index-phrases-font-lock-keywords,
2078 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
2079 reftex-index-phrases-restrict-file): New variables.
2080 (reftex-index-phrase-selection-or-word,
2081 reftex-index-visit-phrases-buffer,
2082 reftex-index-initialize-phrases-buffer,
2083 reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
2084 reftex-index-next-phrase, reftex-index-this-phrase,
2085 reftex-index-all-phrases, reftex-index-region-phrases,
2086 reftex-index-phrases-parse-header,
2087 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
2088 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
2089 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
2090 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
2091 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
2092 reftex-index-make-replace-string,
2093 reftex-query-index-phrase-globally, reftex-query-index-phrase,
2094 reftex-index-phrase-match-is-indexed,
2095 reftex-index-phrases-fixup-line,
2096 reftex-index-phrases-replace-space,
2097 reftex-index-select-phrases-macro): New functions.
2098 (reftex-index-globalize, reftex-index-globally): functions removed
2099 (eval-when-compile (require 'cl)) added.
2100
2101 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
2102 for max level.
2103 (reftex-toc-max-level-indicator): New variable.
2104 (reftex-toc-max-level): New command.
2105 (reftex-toc-map): New keybinding `t'.
2106 (reftex-toc-help): Constant updated.
2107 (eval-when-compile (require 'cl)) added.
2108
2109 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
2110 `t' command key can change `reftex-toc-max-level'
2111 (eval-when-compile (require 'cl)) added.
2112
2113 * textmode/reftex-sel (reftex-insert-docstruct): Respect
2114 `reftex-toc-max-level'
2115 (eval-when-compile (require 'cl)) added.
2116
2117 * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
2118 added.
2119
2120 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
2121 added.
2122
2123 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
2124 commands.
2125 (reftex-citation, reftex-do-citation,
2126 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
2127 preselect a citation format.
2128 (eval-when-compile (require 'cl)) added.
2129
2130 * textmodes/reftex-parse.el (reftex-context-substring): Optional
2131 parameter to-end
2132 (reftex-section-info): Deal with environment matches.
2133 (eval-when-compile (require 'cl)) added.
2134
2135 * reftex-global.el (eval-when-compile (require 'cl)) added.
2136
2137 1999-12-15 Kenichi Handa <handa@etl.go.jp>
2138
2139 The following changes are for the new composition mechanism. We
2140 have deleted `composition' charset and composite characters,
2141 instead introduced a special text property `composition'.
2142
2143 * composite.el: New file.
2144
2145 * ps-mule.el: Define encode-composition-rule and find-composition
2146 for Emacs 20.4 and the earlier versions.
2147 (ps-mule-init-external-library): Just require a feature for
2148 external libraries.
2149 (ps-mule-prologue): Postscript code modified for new composition.
2150 (ps-mule-find-wrappoint): New arg COMPOSITION.
2151 (ps-mule-plot-string): Delete code for composite characaters.
2152 (ps-mule-plot-composition): New funcion.
2153 (ps-mule-prepare-font-for-components): New function.
2154 (ps-mule-plot-components): New function.
2155 (ps-mule-composition-prologue-generated): Renamed from
2156 ps-mule-cmpchar-prologue-generated.
2157 (ps-mule-composition-prologue): New named from
2158 ps-mule-cmpchar-prologue. Modified for new composition.
2159 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
2160 ps-mule-prepare-cmpchar-font): Deleted.
2161 (ps-mule-string-encoding): New arg NO-SETFONT.
2162 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
2163 check Composing, not Cmpchar
2164 (ps-mule-initialize): Set ps-mule-composition-prologue-generated
2165 to nil.
2166 (ps-mule-begin-job): Check existence of new composition.
2167
2168 * ps-print.el (ps-plot-region): Handle new composition.
2169
2170 * simple.el (what-cursor-position): Show "(composed)" if the
2171 character is composed.
2172
2173 * international/characters.el: Fix cateogries of Lao symbols.
2174
2175 * international/fontset.el (vertical-centering-font-regexp): New
2176 variable.
2177
2178 * international/mule.el (mule-version): Updated to 5.0 (AOI).
2179 (mule-version-date): Updated to 1999.12.7.
2180 (with-category-table): New macro.
2181
2182 * international/mule-cmds.el (encode-coding-char): Don't check
2183 composite character.
2184
2185 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
2186 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
2187 x-ctext): Give `composition' property t.
2188
2189 * international/mule-util.el (set-nested-alist): Set BRANCHES (if
2190 non-nil) at the tail of ALIST.
2191 (compose-region, decompose-region, decompse-string,
2192 reference-point-alist, compose-chars): Moved to composite.el.
2193 (compose-chars-component, compose-chars-rule,
2194 decompose-composite-char): Deleted.
2195
2196 * international/quail.el (quail-install-map): New optional arg
2197 NAME.
2198 (quail-get-translation): If DEF is a symbol but not a function,
2199 ignore it.
2200 (quail-start-translation): Put a key sequence undefined in the
2201 translation keymap in unread-command-events, not generated-events.
2202 Return parameterized event (compose-last-chars N) if the input
2203 characters should be composed.
2204 (quail-map-definition): If DEF is t, treat it as nil.
2205 (quail-delete-last-char): Delete the quail region.
2206 (quail-show-translations): Don't show list of translations if the
2207 quail package is deterministic.
2208 (quail-completion-max-depth): New variable.
2209 (quail-completion-1): Pay attention to the above variable. Fix
2210 for the case that a translation is a function.
2211 (quail-map-from-table, quail-map-from-table-1,
2212 quail-map-from-table-2): New functions.
2213 (quail-lookup-map-and-concat): New function
2214
2215 * language/devan-util.el: Mostly rewritten.
2216
2217 * language/lao.el: Register lao-composition-function in
2218 composition-function-table.
2219
2220 * language/lao-util.el: Mostly rewritten.
2221
2222 * language/thai.el: Register thai-composition-function in
2223 composition-function-table.
2224 (thai-tis620): Delete `pre-write-conversion' property.
2225
2226 * language/thai-util.el: (thai-category-table): Make it by
2227 make-category-table.
2228 (thai-composition-pattern): New variable.
2229 (thai-compose-region, thai-compose-string): Use
2230 with-category-table.
2231 (thai-post-read-conversion): Just call thai-compose-region.
2232 (thai-pre-write-conversion): Deleted.
2233 (thai-composition-function): New funciton.
2234
2235 * language/tibet-util.el: Most functions rewritten.
2236 (tibetan-char-p): Renamed from tibetan-char-examin.
2237 (tibetan-composable-examin) (tibetan-complete-char-examin)
2238 (tibetan-vertical-stacking) (tibetan-composition): Deleted.
2239 (tibetan-add-components): New function.
2240 (tibetan-composition-function): New function.
2241
2242 * language/tibetan.el: Register tibetan-composition-function in
2243 composition-function-table.
2244 (tibetan-composable-pattern): New variable.
2245 (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
2246 (tibetan-precomposition-rule-alist): Move punctuations to
2247 tibetan-punctuation-transcription-alist and
2248 tibetan-obsolete-glyphs.
2249 (tibetan-punctuation-transcription-alist): New variable.
2250 (tibetan-obsolete-glyphs): New variable.
2251 (tibetan-regexp): Improve the initialization code.
2252
2253 * textmodes/fill.el (fill-find-break-point): Delete codes for
2254 composite characters.
2255 (fill-region-as-paragraph): Likewise.
2256
2257 1999-12-14 Gerd Moellmann <gerd@gnu.org>
2258
2259 * international/mule-cmds.el (default-input-method): Specify
2260 that it should be set after current-language-environment.
2261
2262 * custom.el (custom-handle-keyword): Add :set-after.
2263 (custom-add-dependencies): New function.
2264 (custom-set-variables): Take dependencies between args into
2265 account.
2266
2267 * battery.el (battery): Doc fix.
2268
2269 1999-12-12 Gerd Moellmann <gerd@gnu.org>
2270
2271 * progmodes/cc-make.el: Removed.
2272
2273 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2274
2275 * Release of cc-mode 5.26
2276
2277 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2278
2279 * cc-cmds.el (c-forward-conditional): Handle an arbitrary
2280 target depth. Optionally count #else lines as clause limits,
2281 as suggested by don provan <provan@lucent.com>. #elif
2282 handling fixed.
2283
2284 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
2285 (c-down-conditional-with-else): New commands that uses the
2286 added functionality in `c-forward-conditional'.
2287
2288 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2289
2290 * cc-align.el (c-lineup-comment): Preserve the alignment with
2291 a comment on the previous line instead of preserving the
2292 comment-column.
2293
2294 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2295
2296 * Fixes to IDL mode after input from Eric Eide
2297 <eeide@cs.utah.edu>:
2298 * cc-engine.el (c-beginning-of-statement-1): Allow
2299 `c-conditional-key' to be nil, for the benefit of IDL mode.
2300 * cc-engine.el (c-guess-basic-syntax): Ditto.
2301 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class'
2302 but do match CORBA 2.3 `valuetype'.
2303 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil
2304 for IDL.
2305 * cc-langs.el (c-IDL-conditional-key): New defconst. Should
2306 be nil for IDL.
2307 * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
2308 Like C++.
2309 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also,
2310 set `c-method-key' and `c-baseclass-key' to nil.
2311
2312 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2313
2314 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
2315 with nonhanging open braces.
2316
2317 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2318
2319 * cc-align.el: Added docstrings to all lineup functions.
2320
2321 * cc-align.el (c-lineup-java-throws): Handle a hanging throws
2322 keyword.
2323
2324 * cc-align.el (c-lineup-C-comments): Handle free form text
2325 comments. Use c-comment-prefix-regexp and comment-start-skip
2326 instead of hardcoded regexps.
2327
2328 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2329
2330 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
2331 behavior and return value as documented.
2332
2333 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2334
2335 * Changes for new style variable init system:
2336 * cc-langs.el (c-common-init): Dito.
2337 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
2338 now customizable.
2339 * cc-vars.el: Style variables may now take a value
2340 'set-from-style to make them take their value from the style
2341 system. This value is now the default on all these variables.
2342 * cc-vars.el (c-valid-offset): New function to verify a
2343 syntactic symbol offset setting.
2344 * cc-vars.el (c-offsets-alist): Variable moved from
2345 cc-styles.el since it's now customizable in a similar way to
2346 the other style variables.
2347 * cc-vars.el (c-old-style-variable-behavior): New variable to
2348 revert to the old style init behavior.
2349
2350 * cc-vars.el (c-file-style, c-file-offsets): Made always
2351 buffer local.
2352
2353 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
2354 the throws clause that might follow the function prototype in
2355 C++.
2356
2357 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2358
2359 * cc-defs.el (c-beginning-of-macro): Fixed bug where point
2360 could move forward for macros that doesn't start in column 0.
2361
2362 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2363
2364 * cc-align.el (c-indent-multi-line-block,
2365 c-lineup-whitesmith-in-block): Two new lineup functions for
2366 use in whitesmith style.
2367
2368 * cc-styles.el (c-style-alist): More fixes to whitesmith
2369 style. It should now handle all different braces uniformly in
2370 both hanging and non-hanging cases.
2371
2372 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2373
2374 * cc-cmds.el (c-indent-exp): Use a marker to save point to
2375 make it stay in the same position relative to the surrounding
2376 text.
2377
2378 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
2379 when adaptive-fill-mode doesn't manage to get it correct.
2380
2381 * cc-menus.el (cc-imenu-java-generic-expression): Handle types
2382 with dotted notation, e.g. foo.bar.Gnu.
2383
2384 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
2385 within unwind-protect (previously only some were wrapped so it
2386 would be possible to register mode initialization when full
2387 initialization did not finish).
2388
2389 * cc-styles.el (c-style-alist): Corrected the brace placement
2390 in the whitesmith style. Thanks to Sean Luke
2391 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith
2392 styles with consistent brace placement for all constructs.
2393
2394 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2395
2396 * cc-cmds.el (c-context-line-break): Continue C++ comments too
2397 when point is in the middle of them.
2398
2399 * cc-cmds.el: Line breaking and paragraph filling code
2400 rewritten:
2401 (c-guess-fill-prefix): New function that uses various
2402 heuristics to guess the comment prefix.
2403 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
2404 It now assumes adaptive filling is active to preserve the line
2405 prefix inside comments.
2406 (c-indent-new-comment-line): Replacement for the now
2407 obsolete `c-comment-line-break-function' that uses
2408 `c-guess-fill-prefix' when appropriate. It now observes the
2409 setting of `comment-multi-line', which has effect in C-style
2410 block comments.
2411
2412 * cc-cmds.el (c-context-line-break): New function intended to
2413 be put on RET. It's essentially `newline-and-indent', but
2414 continues C block comments with the appropriate line prefix.
2415
2416 * cc-cmds.el (c-do-auto-fill): New function put on
2417 `normal-auto-fill-function' to implement the
2418 `c-ignore-auto-fill' variable.
2419
2420 * cc-cmds.el (c-beginning-of-statement): Use
2421 `c-comment-prefix-regexp' to avoid ending up inside the
2422 comment prefix. Better handling of comment starters and
2423 enders. Catch comments better when traversing code. Stop at
2424 preprocessor directives.
2425
2426 * cc-defs.el (c-forward-comment): New subst to hide platform
2427 dependent quirks in `forward-comment'.
2428
2429 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
2430 argument.
2431 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
2432 arguments. Activate this function by default when
2433 `parse-partial-sexp' supports it (currently Emacs 20.x).
2434
2435 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
2436 on the comment opener to make constants usable as lineup
2437 arguments.
2438
2439 * cc-align.el (c-lineup-C-comments): Fixes to handle the
2440 changed anchor position in the `c' syntactic symbol. Handle
2441 more than stars in the comment prefix; use the new variable
2442 `c-comment-prefix-regexp'. Don't indent text not preceded by
2443 a comment prefix to the right of the comment opener if it's
2444 long.
2445
2446 * cc-langs.el: Fixes to mode initialization for new line
2447 breaking and paragraph filling method. Adaptive fill mode is
2448 now activated at startup instead of deactivated. The
2449 variables used for adaptive filling and paragraph movement are
2450 also changed to incorporate the value of
2451 `c-comment-prefix-regexp'. `substitute-key-definition' is
2452 used to override some functions in the global map instead of
2453 overriding their default bindings.
2454
2455 * cc-mode.el (java-mode): Modify `paragraph-start' for the
2456 javadoc markup at mode init.
2457
2458 * cc-mode.el (c-setup-filladapt): A new convenience function
2459 to configure Kyle E. Jones' Filladapt mode for CC Mode. This
2460 function is intended to be used explicitly by the end user
2461 only.
2462
2463 * cc-vars.el (c-comment-prefix-regexp): New variable used to
2464 recognize the comment fill prefix inside comments.
2465 (c-block-comment-prefix): New name for
2466 `c-comment-contiuation-stars', which is now obsolete. It's
2467 generalized to handle any character sequence.
2468 (c-ignore-auto-fill): New variable used to selectively disable
2469 Auto Fill mode in specific contexts.
2470
2471 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2472
2473 * cc-cmds.el (c-comment-indent): Leave at least one space
2474 between the comment and the last nonblank character in the
2475 case where we look at the indentation of the comment on the
2476 previous line (case 4).
2477
2478 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
2479 list of characters that may start a statement (it's a sort of
2480 prefix operator in Pike, and isn't used at all in any of the
2481 other languages).
2482
2483 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2484
2485 * cc-engine.el (c-guess-basic-syntax): Report brace list opens
2486 inside continued statements as statement-cont instead of
2487 brace-list-open. The reason is that one normally adjusts
2488 brace-list-open for brace lists as top-level constructs, and
2489 brace lists inside statements is a completely different
2490 context. Case 10B.2 changed. Also changed (the somewhat
2491 esoteric) case 9A to cope with this.
2492
2493 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2494
2495 * cc-cmds.el (c-electric-brace): Added electric handling of
2496 the open brace for brace-elseif-brace.
2497
2498 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2499
2500 * cc-defs.el (c-with-syntax-table): New macro to easily switch
2501 syntax tables temporarily.
2502
2503 * cc-engine.el (c-guess-basic-syntax): Handle template and
2504 member init argument lists split over several lines. Case 5D
2505 changed.
2506
2507 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
2508 @throws introduced in Javadoc 1.2.
2509
2510 * cc-menus.el (cc-imenu-java-generic-expression): Applied
2511 patch from RMS to avoid infinite backtracking.
2512
2513 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2514
2515 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
2516 by [ ].
2517
2518 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2519
2520 * cc-align.el (c-lineup-dont-change): Compensate properly for
2521 the column in langelem.
2522
2523 * cc-engine.el (c-syntactic-information-on-region): New
2524 function to help debugging the syntactic analysis.
2525
2526 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2527
2528 * cc-align.el (c-lineup-template-args): Handle nested template
2529 arglists.
2530
2531 * cc-langs.el (c++-template-syntax-table): New syntax table
2532 that makes `<' and `>' parenthesis characters, which is useful
2533 to switch to temporarily when analyzing template arglists.
2534
2535 * cc-styles.el: Changed default alignment of labels in the
2536 java style to conform to the examples in the Java Language
2537 Specification.
2538
2539 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
2540 by default.
2541
2542 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2543
2544 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
2545 immediately before the closing paren in an arglist, so don't
2546 check that in Pike mode. Case 7A changed.
2547
2548 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2549
2550 * cc-cmds.el (c-indent-region): Fixed bug where comment-only
2551 lines were ignored under certain conditions.
2552
2553 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2554
2555 * cc-align.el (c-lineup-template-args): New function for
2556 aligning continued template argument lists.
2557
2558 * cc-engine.el (c-guess-basic-syntax): Fix for member init
2559 lists containing function arglists split over several lines.
2560 Case 5D.1 changed.
2561
2562 * cc-engine.el (c-guess-basic-syntax): Fixed bug where
2563 template-args-cont didn't get recognized when the first
2564 arglist opener line doesn't contain a template argument. New
2565 case 5K.
2566
2567 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2568
2569 * cc-defs.el (c-point): Changed from subst to macro for
2570 efficiency.
2571 (c-beginning-of-defun-1, c-end-of-defun-1): New
2572 beginning-of-defun/end-of-defun wrappers separated from
2573 c-point.
2574
2575 * cc-menus.el (imenu-generic-expression,
2576 imenu-case-fold-search, imenu-progress-message): Dummy
2577 definitions to avoid compiler warnings if imenu can't be
2578 loaded.
2579 * cc-menus.el (cc-imenu-init): New function called at mode
2580 init.
2581 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
2582 imenu initializations to cc-imenu-init.
2583
2584 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2585
2586 * cc-engine.el (c-guess-basic-syntax): Slightly better check
2587 for lambda-intro-cont in Pike mode. Case 6 changed.
2588
2589 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
2590 anything following "new Foo()" was considered an anonymous
2591 class body in Java mode.
2592
2593 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
2594
2595 * cc-cmds.el (c-comment-line-break-function): When breaking in
2596 a string, don't insert a new line.
2597
2598 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
2599
2600 * cc-engine.el (c-at-toplevel-p): New interface function which
2601 returns information useful to add-on authors. It tells you
2602 whether you're at a toplevel statement or not.
2603
2604 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
2605
2606 * cc-cmds.el (c-comment-line-break-function): It is possible
2607 that forward-line does not land us at the bol, say if we're on
2608 the last line in a file. In that case, do a
2609 back-to-indentation instead of a forward-comment -1.
2610
2611 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2612
2613 * cc-engine.el (c-beginning-of-statement-1): Don't catch
2614 "default:" as normal label in case 4.
2615
2616 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2617
2618 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
2619 recognize continued bitfield declarations. Case 5D.1 changed.
2620 * cc-langs.el: New variable c-bitfield-key.
2621 * cc-mode.el: New variable c-bitfield-key.
2622
2623 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
2624
2625 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
2626 anonymous array expressions (i.e. "new Foo[] {.. bracelist
2627 ..}").
2628
2629 1999-12-12 Dave Love <fx@gnu.org>
2630
2631 * mail/footnote.el: Require cl when compiling. Don't autoload
2632 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays.
2633 (footnote-insert-text-marker, Footnote-insert-pointer-marker):
2634 Avoid `acons'.
2635 (footnote-mode-line-string, Footnote-add-footnote): Remove
2636 autoload cookie.
2637
2638 1999-12-12 Richard Sharman <rsharman@pobox.com>
2639
2640 * sh-script.el: Fix for when font-lock mode is active.
2641 (sh-font-lock-unfontify-region-function): New function.
2642
2643 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
2644
2645 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
2646 if start-process is not bound, since Ispell now supports such
2647 platforms as well.
2648
2649 1999-12-12 Gerd Moellmann <gerd@gnu.org>
2650
2651 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
2652 rmail-summary-goto-msg.
2653
2654 * files.el (after-find-file): Fix previous change.
2655
2656 1999-12-11 Dave Love <fx@gnu.org>
2657
2658 * help.el (where-is): Use `commandp' as predicate for
2659 `completing-read'
2660
2661 1999-12-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2662
2663 * cus-edit.el (custom-save-delete): Delete all occurrences,
2664 leave point where the first occurrence was.
2665 (custom-save-faces): Insert a newline at the end of the comment.
2666 Avoid a double newline there.
2667 If final closeparen is at bol, put a space before it.
2668 (custom-save-variables): Likewise.
2669 (custom-file): Doc fix.
2670
2671 1999-12-10 Gerd Moellmann <gerd@gnu.org>
2672
2673 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
2674 regexp matching image and audio files.
2675
2676 1999-12-09 Dave Love <fx@gnu.org>
2677
2678 * mail/footnote.el: New file.
2679
2680 1999-12-09 Gerd Moellmann <gerd@gnu.org>
2681
2682 * files.el (after-find-file): Use auto-save-visited-file-name if
2683 set.
2684
2685 * mail/feedmail.el (feedmail-find-eoh): Take
2686 feedmail-queue-alternative-mail-header-separator into account.
2687
2688 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
2689
2690 * smerge-mode.el: New file.
2691
2692 * font-lock.el (font-lock-multiline): New variable.
2693 (font-lock-add-keywords): Rename `major-mode' into `mode'.
2694 (font-lock-remove-keywords): Added a dummy `mode' argument for
2695 potential future support.
2696 (font-lock-fontify-anchored-keywords,
2697 (font-lock-fontify-keywords-region): Only handle multiline strings
2698 if necessary (avoids a pathological behavior in (f.ex) diff-mode).
2699
2700 1999-12-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2701
2702 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
2703
2704 * dired-aux.el (dired-insert-subdir): Add autoload cookie.
2705
2706 1999-12-07 Dave Love <fx@gnu.org>
2707
2708 * help.el (view-emacs-problems): New command, bound to C-h P.
2709
2710 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
2711
2712 1999-12-07 Stefan Monnier <monnier@cs.yale.edu>
2713
2714 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
2715 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
2716 New code to support the minor mode version.
2717 (diff-recenter): New function.
2718 (diff-next-hunk, diff-next-file): Use it.
2719 (diff-remembered-files-alist): New var.
2720 (diff-merge-strings): New function.
2721 (diff-find-file-name): Make it smarter and use the user's input more.
2722 (diff-mode): Cosmetic changes.
2723
2724 * files.el (save-some-buffers): Turn EXITING into the more general
2725 PRED argument to allow specifying a subset of buffers.
2726
2727 * simple.el (kill-region): Use the new `delete-and-extract-region'
2728 rather than the undo log (which is incorrect with *-change-functions).
2729
2730 * font-lock.el (font-lock-default-fontify-region): Fix subtle
2731 off-by-one problem that could force re-fontifying the whole buffer.
2732 (font-lock-remove-keywords): New function.
2733 (font-lock-add-keywords): Use the new function to ensure idempotence.
2734
2735 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu>
2736
2737 * viper-cmd.el (viper-minibuffer-standard-hook,
2738 viper-minibuffer-real-start): Mew functions.
2739 (viper-read-string-with-history,viper-file-add-suffix,
2740 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
2741 change in the status of the minibuffer prompt.
2742
2743 1999-12-06 Gerd Moellmann <gerd@gnu.org>
2744
2745 * comint.el (comint-redirect-results-list)
2746 (comint-redirect-results-list-from-process): Remove interactive
2747 spec.
2748
2749 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2750
2751 * info.el (info-node, info-menu-5, info-xref): Define colors for
2752 Info faces if the display supports them.
2753
2754 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2755
2756 Changes for automatic remapping of X colors on terminal frames:
2757
2758 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
2759 term-setup-hook. Call msdos-remember-default-colors and
2760 msdos-handle-reverse-video.
2761 (msdos-face-setup): Parts of code moved to
2762 msdos-setup-initial-frame.
2763 (msdos-handle-reverse-video): New function, modeled after
2764 x-handle-reverse-video.
2765 (make-msdos-frame): Don't use initial-frame-alist and
2766 default-frame-alist. Call msdos-handle-reverse-video.
2767 (msdos-color-aliases): Remove.
2768 (msdos-color-translate, msdos-approximate-color): Remove.
2769 (msdos-color-values): Use 16-bit RGB values. RGB values updated
2770 for better approximation of X colors.
2771 (msdos-face-setup): Call tty-color-clear. Remove code that sets
2772 up tty-color-alist (it is now on startup.el).
2773 (x-display-color-p, x-color-defined-p, x-color-values,
2774 x-defined-colors, face-color-supported-p, face-color-gray-p):
2775 Remove.
2776
2777 * facemenu.el (facemenu-read-color, list-colors-display): Use
2778 defined-colors for all frame types.
2779 (facemenu-color-equal): Use color-values for all frame types.
2780
2781 * faces.el (read-face-attribute): For :foreground and :background
2782 attributes and frames on character terminals, translate the color
2783 to the closest supported one before looking it up in the list of
2784 valid values.
2785 (face-valid-attribute-values): Call defined-colors for all types
2786 of frames.
2787 (defined-colors, color-defined-p, color-values, display-color-p):
2788 New finctions.
2789 (x-defined-colors, x-color-defined-p, x-color-values,
2790 x-display-color-p): Aliases for the above.
2791
2792 * startup.el (command-line): Register terminal colors for frame
2793 types other than x and w32, but only if the terminal supports
2794 colors. Call tty-color-define instead of face-register-tty-color.
2795
2796 * term/x-win.el (xw-defined-colors): Renamed from
2797 x-defined-colors.
2798 * term/w32-win.el (xw-defined-colors): Likewise.
2799
2800 * term/tty-colors.el: New file.
2801 * loadup.el: Load term/tty-colors.
2802
2803 1999-12-06 Dave Love <fx@gnu.org>
2804
2805 * ffap.el: Autoload the ffap alias directly.
2806
2807 1999-12-06 Inge Frick <inge@nada.kth.se>
2808
2809 * dired-aux.el (dired-do-shell-command): Changed documentation.
2810 (dired-shell-stuff-it): A `?' in COMMAND has now the same
2811 meaning as `*'.
2812
2813 1999-12-06 Gerd Moellmann <gerd@gnu.org>
2814
2815 * simple.el (insert-buffer): Doc fix.
2816
2817 * apropos.el (apropos-mode): Add autoload cookie.
2818
2819 1999-12-06 Sam Steingold <sds@goems.com>
2820
2821 * progmodes/etags.el (etags-tags-completion-table): Modified the
2822 regexp to allow for the CL symbols starting with `+*'.
2823 (tags-completion-table): Doc fix (it's an obarray, not an alist).
2824 (tags-completion-table, tags-recognize-empty-tags-table): Remove
2825 `function' quoting lambda.
2826 (tags-with-face): New macro.
2827 (list-tags, tags-apropos): Use it.
2828 (tags-apropos-additional-actions): New user option.
2829 (etags-tags-apropos-additional): Use it.
2830 (tags-apropos): Call etags-tags-apropos-additional.
2831 (tags-apropos-verbose): New user option.
2832 (etags-tags-apropos): Use it.
2833 (visit-tags-table-buffer, next-file): Use `unless'.
2834 (recognize-empty-tags-table): Renamed to
2835 tags-recognize-empty-tags-table.
2836 (complete-tag): Call tags-complete-tag bypassing try-completion.
2837
2838 1999-12-06 Kenichi Handa <handa@etl.go.jp>
2839
2840 * international/mule.el (set-buffer-file-coding-system): Docstring
2841 modified.
2842
2843 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
2844
2845 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
2846 using the hideshow package.
2847 (hs-special-modes-alist): Added entry for bibtex to allow the use
2848 of the hideshow package.
2849 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
2850 not longer provided by bibtex.el directly. Instead the hideshow
2851 package should be used.
2852 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
2853 references to bibtex-hide-entry-bodies.
2854
2855 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
2856
2857 * textmodes/bibtex.el: Copyright notice is up to date. Moved
2858 maintainer information closer to the beginning of the bibtex.el
2859 file.
2860 (bibtex-maintainer-salutation): New constant.
2861 (bibtex-version): New constant.
2862 (bibtex-submit-bug-report): Use bibtex-version and
2863 bibtex-maintainer-salutation.
2864 (bibtex-entry-field-alist): Made booktitle field optional for
2865 @inproceedings entries when crossreferenced.
2866 (bibtex-entry-field-alist): Added booktitle field to proceedings
2867 entry type (for cross referencing). Thanks to Wagner Toledo Correa
2868 for the suggestion.
2869 (bibtex-string-file-path): Fixed typo.
2870
2871 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
2872
2873 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
2874 for reftex.el.
2875 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
2876 to menu.
2877
2878 1999-12-04 Dave Love <fx@gnu.org>
2879
2880 * delsel.el: Revert previous change -- region is significant to
2881 skeleton.
2882
2883 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu>
2884
2885 * viper-cmd.el (viper-change-state): Use
2886 viper-ESC-moves-cursor-back to decide whether to move the cursor
2887 back.
2888
2889 1999-12-03 Kenichi Handa <handa@mule.m17n.org>
2890
2891 * international/mule-util.el (truncate-string-to-width): Docsting
2892 fixed.
2893
2894 1999-12-02 Stefan Monnier <monnier@cs.yale.edu>
2895
2896 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
2897 use of `cond'.
2898 (lm-with-file): Move all the find-file...kill-buffer stuff into
2899 this macro. Make it use `find-file-noselect' and make it kill
2900 the buffer only if it wasn't already displayed somewhere.
2901 (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
2902 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
2903 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
2904 (lm-commentary): Fix to handle the case when the change log is
2905 at the end of the file.
2906
2907 1999-12-02 Kenichi Handa <handa@etl.go.jp>
2908
2909 * international/mule.el (charsetp): Fix typo in docstring.
2910
2911 * international/mule-diag.el (list-coding-categories): Fix typo;
2912 automatic -> autoload.
2913
2914 1999-12-02 Gerd Moellmann <gerd@gnu.org>
2915
2916 * vc.el (vc-update-change-log): Look for rcs2log under
2917 exec-directory.
2918
2919 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
2920 outline-regexp, add outline-level.
2921 (lisp-outline-level): New.
2922
2923 * calendar/appt.el (appt-convert-time): Handle "12:MMam",
2924 remove extraneous string-match.
2925
2926 * finder.el (finder-commentary): Activate Finder mode.
2927
2928 1999-12-01 Anders Lindgren <andersl@andersl.com>
2929
2930 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
2931 off when reverting buffers that contained mode specifiers.
2932 `revert-buffer' is now called with non-nil PRESERVE-MODES
2933 argument.
2934
2935 1999-12-01 Dave Love <fx@gnu.org>
2936
2937 * delsel.el: Grok skeleton-pair-insert-maybe.
2938
2939 1999-11-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2940
2941 * progmodes/cperl-mode.el (cperl-under-as-char):
2942 Use nil as default.
2943
2944 1999-11-30 Gerd Moellmann <gerd@gnu.org>
2945
2946 * speedbar.el (toplevel): Remove compatibility code for Emacs
2947 versions without custom.el.
2948
2949 1999-11-30 Dave Love <fx@gnu.org>
2950
2951 * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
2952
2953 * autoinsert.el: Minor doc fixes.
2954 (auto-insert): Return nil.
2955
2956 * faces.el (set-face-documentation): Purecopy STRING.
2957
2958 1999-11-29 Dave Love <fx@gnu.org>
2959
2960 * derived.el: Doc fixes, remove old backquote syntax.
2961
2962 * cus-edit.el (custom-save-variables, custom-save-faces): Write a
2963 comment warning about editing.
2964
2965 * help.el (help-mode-hook): Define.
2966
2967 1999-11-29 Gerd Moellmann <gerd@gnu.org>
2968
2969 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
2970 invalid translation of old-style backquote syntax to new syntax.
2971
2972 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
2973
2974 * Makefile (DONTCOMPILE): Add term/internal.el.
2975
2976 1999-11-26 Dave Love <fx@gnu.org>
2977
2978 * comint.el: Fix last change.
2979
2980 * emacs-lisp/advice.el: Fix last change.
2981
2982 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2983
2984 * cus-edit.el (Custom-reset-standard): Doc fix.
2985 (custom-variable-reset-standard): Doc fix.
2986 (custom-face-reset-standard): Doc fix.
2987 (custom-face-menu): "Reset to Standard" => "Erase Customization".
2988 (custom-variable-menu): Likewise.
2989 (custom-reset-menu): Likewise.
2990 (custom-buffer-create-internal): Likewise.
2991
2992 1999-11-26 Dave Love <fx@gnu.org>
2993
2994 * progmodes/make-mode.el (makefile-mode-hook): Customize.
2995
2996 * font-lock.el: Doc fixes.
2997
2998 * menu-bar.el (menu-bar-mode): Customize.
2999
3000 * cus-start.el: Add use-dialog-box.
3001
3002 * add-log.el (change-log-mode-hook): Customize.
3003 (add-log-current-defun): Use
3004 fortran-{beginning,end}-of-subprogram.
3005
3006 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3007
3008 * emacs-lisp/advice.el: Many doc fixes.
3009
3010 * comint.el (comint-preoutput-filter-functions): Doc fix.
3011
3012 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3013
3014 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3015 Improve messages for capitalization of arg names,
3016 for flag variables, for t and nil, for imperatives.
3017 Call them imperatives rather than infinitives sans "to".
3018 (checkdoc-common-verbs-wrong-voice): Add "moves".
3019 (checkdoc-message-text-engine): Improve messages for y-or-n-p.
3020
3021 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3022 Don't convert comments from 3-semicolon to 2-semicolon.
3023 That is a matter of style.
3024 (checkdoc-triple-semi-comment-check-flag): Variable deleted.
3025 (checkdoc-comments): Don't bind that variable.
3026
3027 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3028
3029 * files.el (write-file-hooks): Doc fix.
3030
3031 1999-11-26 Gerd Moellmann <gerd@gnu.org>
3032
3033 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
3034
3035 1999-11-25 Dave Love <fx@gnu.org>
3036
3037 * hippie-exp.el: Require comint when compiling.
3038 (hippie-expand): Add :links.
3039 (hippie-expand-try-functions-list): Customize.
3040
3041 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
3042
3043 * viper*el: Replaced old-style backquotes.
3044
3045 * ediff*el: Replaced old-style backquotes.
3046
3047 * ediff-merge
3048 (ediff-looks-like-combined-merge,ediff-get-combined-region):
3049 Changed to support the new format for ediff-combination-pattern.
3050
3051 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
3052 Changed to support the new format for ediff-combination-pattern.
3053
3054 1999-11-24 Dave Love <fx@gnu.org>
3055
3056 * custom.el (custom-declare-group): Purecopy DOC.
3057 (custom-handle-keyword): Purecopy VALUE.
3058 (custom-add-link): Purecopy WIDGET.
3059 (custom-add-version): Purecopy VERSION.
3060 (custom-add-load): Purecopy LOAD.
3061
3062 * cus-face.el (custom-declare-face): Purecopy DOC.
3063
3064 * info.el:
3065 (Info-build-node-completions, Info-search, Info-follow-reference)
3066 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
3067 (Info-find-emacs-command-nodes): Avoid properties on matched text
3068 which may appear in minibuffer.
3069
3070 1999-11-24 Gerd Moellmann <gerd@gnu.org>
3071
3072 * locate.el (locate-with-filter): Doc fix.
3073
3074 1999-11-24 Alex Schroeder <alex@gnu.org>
3075
3076 * sql.el (sql-find-sqli-buffer): New function.
3077 (sql-set-sqli-buffer-generally): New function.
3078 (sql-set-sqli-buffer): Better checking of new-buffer.
3079 (sql-copy-column): Add comma after INTO clause, too.
3080
3081 1999-11-24 Alex Schroeder <alex@gnu.org>
3082
3083 * sql.el (sql-imenu-generic-expression): New, used to set
3084 imenu-generic-expression.
3085
3086 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
3087 setting font-lock-defaults' SYNTAX-ALIST. Set
3088 imenu-generic-expression, imenu-case-fold-search, and
3089 imenu-syntax-alist.
3090
3091 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
3092 and 46 when setting font-lock-defaults' SYNTAX-ALIST.
3093
3094 1999-11-23 Andrew Innes <andrewi@gnu.org>
3095
3096 * w32-win.el (w32-drag-n-drop): Load files in current window, if
3097 drop coords aren't over a specific window.
3098
3099 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3100
3101 * ps-print.el: Define mule funs without checking if mule package is
3102 loaded.
3103 (ps-print-version): New version number (5.0.1).
3104 (ps-header-dirpart): Now uses abbreviate-file-name.
3105
3106 1999-11-23 Dave Love <fx@gnu.org>
3107
3108 * progmodes/fortran.el (fortran-comment-line-start): Renamed from
3109 comment-line-start.
3110 (fortran-comment-line-start-skip): Renamed from
3111 comment-line-start-skip.
3112 (fortran-mode-map): Use renamed functions. Add manual and custom
3113 entries to menu.
3114 (fortran-mode-hook): Customize.
3115 (fortran-comment-indent-function): Renamed from
3116 fortran-comment-hook.
3117 (delete-horizontal-regexp): Function deleted.
3118 (fortran-electric-line-number): Simplified.
3119 (fortran-beginning-of-subprogram): Renamed from
3120 beginning-of-fortran-subprogram.
3121 (fortran-end-of-subprogram): Renamed from
3122 end-of-fortran-subprogram.
3123 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
3124 (fortran-previous-statement, fortran-next-statement): Simplified.
3125 (fortran-blink-match): New function.
3126 (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
3127 (fortran-indent-to-column): Don't use delete-horizontal-regexp.
3128 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
3129 line-end-position.
3130 (fortran-fill): No longer interactive. Simplified.
3131 (fortran-break-line): Simplified.
3132 (fortran-analyze-file-format): Use char-after, not looking-at.
3133
3134 * emacs-lisp/find-func.el (find-function-regexp): Use
3135 `define-minor-mode' after easy-menu change.
3136
3137 1999-11-23 Gerd Moellmann <gerd@gnu.org>
3138
3139 * comint.el: Add redirection.from active comint buffers into
3140 another buffer. Written by Peter Breton.
3141
3142 1999-11-23 Stefan Monnier <monnier@cs.yale.edu>
3143
3144 * emacs-lisp/autoload.el (make-autoload): Recognize the new
3145 `define-minor-mode'.
3146 (define-minor-mode): Specify `doc-string-elt'.
3147
3148 * emacs-lisp/easy-mmode.el: Changed maintainer.
3149 (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
3150 Use defcustom for the hooks; Improve the auto-generated docstrings.
3151 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
3152 (define-minor-mode): Add BODY arg; Only declare the keymap if
3153 provided; Improve the auto-generated docstrings.
3154
3155 1999-11-22 Gerd Moellmann <gerd@gnu.org>
3156
3157 * textmodes/text-mode.el (text-mode): Construct paragraph-start so
3158 that the leading `^' is at the start. This is necessary because
3159 paragraphs.el tries to remove anchors, but can find them only if
3160 they are the first character.
3161
3162 * progmodes/antlr-mode.el: New file.
3163
3164 * calendar/calendar.el: Fix autoload for
3165 calendar-absolute-from-astro. Add autoload for
3166 calendar-print-astro-day-number.
3167
3168 1999-11-21 Anders Lindgren <andersl@andersl.com>
3169
3170 * follow.el: Use modern backquote syntax. Minor comment update.
3171
3172 1999-11-21 Gerd Moellmann <gerd@gnu.org>
3173
3174 * simple.el (with-syntax-table): Don't switch buffers.
3175
3176 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
3177 progmodes/hideif.el: Use new backquote syntax.
3178
3179 1999-11-21 Ken Manheimer <klm@python.org>
3180
3181 * icomplete.el (icomplete-completions): Use an explicit variable
3182 `icomplete-prospects-length', obviating the need to use an
3183 apparently faulty throw/catch arrangement.
3184
3185 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
3186
3187 * term/internal.el (IT-display-table-setup): Don't overstep
3188 character code 255.
3189
3190 1999-11-20 Kenichi Handa <handa@mule.m17n.org>
3191
3192 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
3193 for the charset chinese-sisheng is 7bit encoding, not 8bit.
3194
3195 1999-11-19 Stefan Monnier <monnier@cs.yale.edu>
3196
3197 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
3198 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
3199
3200 * files.el (auto-mode-alist): Add patterns for diff-mode.
3201
3202 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
3203 to detect an empty prompt.
3204
3205 1999-11-18 Dave Love <fx@gnu.org>
3206
3207 * simple.el (input-mode-8-bit): Fix the customization.
3208
3209 1999-11-18 Gerd Moellmann <gerd@gnu.org>
3210
3211 * international/iso-acc.el (iso-languages): Add more
3212 characters for Portuguese.
3213
3214 * speedbar.el: Clean up comment at the start of the file.
3215 Remove RCS id.
3216
3217 * progmodes/compile.el (compilation-parse-errors): Use
3218 compilation-buffer-p instead of testing major-mode.
3219
3220 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk>
3221
3222 * quickurl.el Added defcustom of quickurl-completion-ignore-case.
3223 (quickurl-ask): completion-ignore-case is set to the value of
3224 quickurl-completion-ignore-case for the duration of the call to
3225 completing-read.
3226
3227 1999-11-18 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3228
3229 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
3230
3231 1999-11-18 Kenichi Handa <handa@etl.go.jp>
3232
3233 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars
3234 instead of ps-print-def.
3235
3236 * ps-print.el: Require ps-vars instead of ps-print-def.
3237
3238 * ps-mule.el: Require ps-vars instead of ps-print-def.
3239
3240 1999-11-17 Gerd Moellmann <gerd@gnu.org>
3241
3242 * simple.el (with-syntax-table): Save buffer explicitly instead of
3243 using save-excursion.
3244
3245 1999-11-16 Gerd Moellmann <gerd@gnu.org>
3246
3247 * mail/supercite.el: New maintainer.
3248
3249 1999-11-16 Reto Zimmermann <reto@synopsys.com>
3250
3251 * progmodes/vhdl-mode.el: Use new backquote syntax.
3252
3253 1999-11-16 Gerd Moellmann <gerd@gnu.org>
3254
3255 * simple.el (with-syntax-table): New.
3256
3257 1999-11-15 Sam Steingold <sds@ksp.com>
3258
3259 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
3260
3261 1999-02-22 Sam Steingold <sds@goems.com>
3262
3263 * goto-addr.el (goto-address-at-mouse,
3264 goto-address-find-address-at-point): Use compose-mail.
3265 (goto-address-mail-method): Removed variable.
3266 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
3267 goto-address-send-using-mail): Removed functions.
3268
3269 1998-11-03 Sam Steingold <sds@goems.com>
3270
3271 * simple.el (backward-delete-char-untabify):
3272 backward-delete-char-untabify-method can be `all' now - to delete
3273 hungrily including newlines.
3274
3275 1999-11-15 Sam Steingold <sds@ksp.com>
3276
3277 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
3278
3279 1999-11-15 Dave Love <fx@gnu.org>
3280
3281 * cus-edit.el (customize-face, customize-face-other-window):
3282 Require match from completing-read.
3283 (custom-buffer-done-function): Default to custom-bury-buffer, not
3284 bury-buffer.
3285
3286 1999-11-15 Gerd Moellmann <gerd@gnu.org>
3287
3288 * mail/rmail.el, iswitchb.el, hippie-exp.el,
3289 progmodes/cperl-mode.el: Use new backquote syntax.
3290
3291 1998-09-14 Michael Ernst <mernst@alum.mit.edu>
3292
3293 * uniquify.el: Use new backquote syntax.
3294
3295 1999-11-14 Markus Rost <rost@ias.edu>
3296
3297 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
3298 as in ispell-local-dictionary-alist.
3299
3300 1999-11-14 Alex Schroeder <alex@gnu.org>
3301
3302 * ansi-color.el (ansi-color-apply): Updated regexps to include
3303 highlighted face.
3304
3305 1999-01-14 Johan Vromans <jvromans@squirrel.nl>
3306
3307 * forms.el (forms--make-format-elt-using-text-properties):
3308 Treat `intangible' differently.
3309
3310 * forms.el: Use new backquote syntax.
3311
3312 1999-11-13 Gerd Moellmann <gerd@gnu.org>
3313
3314 * textmodes/scribe.el (scribe-mode): Doc-fix.
3315
3316 1999-11-13 Peter Breton <pbreton@ne.mediaone.net>
3317
3318 * net-utils.el (run-network-program, net-utils-run-program): Use
3319 the new backquote syntax.
3320 (smbclient-program, smbclient-program-options)
3321 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
3322 variables
3323 (smbclient, smbclient-list-shares): New functions
3324
3325 1999-11-12 Sam Steingold <sds@ksp.com>
3326
3327 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
3328 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
3329 (viper-kbd-buf-definition, viper-kbd-mode-alist)
3330 (viper-kbd-mode-pair, viper-kbd-mode-definition)
3331 (viper-kbd-global-pair, viper-kbd-global-definition):
3332 Use the new backquote syntax.
3333
3334 * emulation/viper-cmd.el (viper-test-com-defun)
3335 (viper-prefix-arg-value, viper-prefix-arg-com):
3336 Use the new backquote syntax.
3337
3338 * emacs-lisp/debug.el (debugger-env-macro):
3339 Use the new backquote syntax.
3340
3341 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
3342 Use the new backquote syntax.
3343
3344 * calendar/calendar.el (calendar-remove-frame-by-deleting):
3345 New user variable.
3346 (calendar-hide-window): Use it.
3347 (increment-calendar-month, calendar-for-loop, calendar-sum):
3348 Use the new backquote syntax.
3349
3350 1999-11-12 Andrew Innes <andrewi@gnu.org>
3351
3352 * select.el (x-set-selection): Call buffer-substring, not
3353 substring. Also fix docstring
3354
3355 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl>
3356
3357 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
3358 of customizable variables to bug report message. Added
3359 system-type to package name in bug report.
3360
3361 1999-11-12 Gerd Moellmann <gerd@gnu.org>
3362
3363 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
3364 to display file names.
3365
3366 1999-11-11 Gerd Moellmann <gerd@gnu.org>
3367
3368 * mwheel.el: Fix copyright notice, don't require 'cl at run time.
3369
3370 * isearch.el: Add lazy-highlighting feature.
3371
3372 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
3373
3374 * progmodes/ps-mode.el (ps-mode-maintainer-address): New
3375 constant.
3376 (ps-mode-submit-bug-report): New function. Entry added to menu.
3377
3378 1999-11-10 William M. Perry <wmperry@aventail.com>
3379
3380 * mwheel.el: New file to support the new style wheeled mice.
3381
3382 1999-11-10 Gerd Moellmann <gerd@gnu.org>
3383
3384 * startup.el (initial-scratch-message): Add ";;" to the front of
3385 lines in the message.
3386
3387 * files.el (file-local-copy): Remove optional BUFFER argument
3388 because that's not used by anything.
3389
3390 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
3391 to-address.
3392
3393 1999-11-08 Markus Rost <rost@ias.edu>
3394
3395 * wid-edit.el (widget-button-click): Wrap with save-excursion
3396 to restore track-mouse in the correct buffer.
3397
3398 1999-11-08 Gerd Moellmann <gerd@gnu.org>
3399
3400 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
3401
3402 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl>
3403
3404 * progmodes/ps-mode.el (ps-mode-print-function): Changed default
3405 lpr-command to "lp" for some system-types. (copied from lpr.el
3406 Emacs version 20.2.1).
3407
3408 1999-11-04 Markus Rost <rost@ias.edu>
3409
3410 * simple.el (comment-region): Strip off white space at end of
3411 comment-start.
3412
3413 1999-11-04 Gerd Moellmann <gerd@gnu.org>
3414
3415 * faces.el (secondary-selection): Fix wrong color name.
3416
3417 1999-11-04 John Tobey <jtobey@epsilondev.com>
3418
3419 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
3420 the default when invoking perldb in a non-Perl buffer, and other
3421 cases involving -e or --.
3422
3423 1999-11-04 Gerd Moellmann <gerd@gnu.org>
3424
3425 * simple.el (previous-matching-history-element)
3426 (next-history-element): Use delete-field instead of erase-field.
3427
3428 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
3429 Use delete-field instead of erase-field.
3430
3431 * faces.el (secondary-selection): Change background to yellow.
3432
3433 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
3434 find the start of the text. Use field-string to read the user
3435 input.
3436
3437 1999-11-03 Gerd Moellmann <gerd@gnu.org>
3438
3439 * faces.el (make-face-bold, make-face-unbold, make-face-italic)
3440 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
3441 for compatibility with old face implementation.
3442
3443 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
3444 Use erase-field instead of erase-buffer.
3445
3446 * frame.el (blink-cursor-mode, blink-cursor-end): Use
3447 internal-show-cursor with new interface.
3448 (blink-cursor-timer-function): New.
3449 (blink-cursor-start): Use blink-cursor-timer-function.
3450
3451 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
3452
3453 * calendar.el (redraw-calendar): Move to nearest date before
3454 redrawing.
3455
3456 * diary-lib.el (simple-diary-display): Reset modeline even if
3457 there are no diary entries since the diary buffer may be displayed.
3458
3459 1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3460
3461 * emacs-lisp/debug.el (debug): If noninteractive, display the
3462 backtrace using `message', then exit Emacs.
3463 (debugger-batch-max-lines): New variable.
3464 (debugger-setup-buffer): New subroutine, broken out of `debug'.
3465 Change the messages put at the start, to say that the debugger
3466 was entered.
3467
3468 1999-11-02 Sam Steingold <sds@ksp.com>
3469
3470 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
3471
3472 1999-11-01 John Tobey <jtobey@epsilondev.com>
3473
3474 * gud.el: (gud-perldb-massage-args): Massage correctly in the
3475 presence of perl switches other than "-e".
3476
3477 1999-11-01 Markus Rost <rost@ias.edu>
3478
3479 * dired-x.el (dired-smart-shell-command): Use
3480 shell-command-history as in shell-command.
3481
3482 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3483
3484 * userlock.el (ask-user-about-lock): Doc fix.
3485
3486 * frame.el: Doc fixes.
3487
3488 1999-11-01 Gerd Moellmann <gerd@gnu.org>
3489
3490 * frame.el (blink-cursor-mode): Call internal-show-cursor instead
3491 of show-cursor.
3492 (blink-cursor-start, blink-cursor-end): Ditto.
3493
3494 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
3495
3496 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3497
3498 * window.el (walk-windows): If ALL-FRAMES is a frame,
3499 start on that frame. Use save-selected-window.
3500
3501 1999-11-01 Gerd Moellmann <gerd@gnu.org>
3502
3503 * simple.el (end-of-buffer): Use window-end to find the window end
3504 instead of vertical-motion because this handles variable-height
3505 lines correctly.
3506
3507 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu>
3508
3509 * ediff.el: Version change.
3510
3511 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
3512 make sure you are in a good frame before deleting other
3513 windows.
3514 (ediff-file-checked-in-p): Don't consider CVS
3515 files checked in.
3516 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you
3517 are writing to a newly created empty file.
3518
3519 * ediff-mult.el (ediff-show-session-group-hook): New default.
3520
3521 * ediff-vers.el (ediff-pcl-cvs-view-revision):
3522 First cd to the file directory. reportedly works
3523 better with remote files.
3524
3525 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
3526 Use file-name-nondirectory when passing files to CVS.
3527
3528 * ediff-diff.el (ediff-cmp-options): New variable.
3529 (ediff-same-file-contents): Use ediff-cmp-options.
3530
3531 * ediff-ptch.el (ediff-prompt-for-patch-buffer,
3532 ediff-get-patch-buffer): Use current buffer if it appears to be a
3533 patch.
3534
3535 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
3536 C-g
3537
3538 * viper-util.el (viper-nontrivial-find-file-function): Deleted.
3539 (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
3540 (viper-save-cursor-color,viper-restore-cursor-color):
3541 Improved cursor color handling.
3542 (viper-get-saved-cursor-color-in-replace-mode,
3543 viper-get-saved-cursor-color-in-insert-mode): New functions for
3544 better cursor color handling.
3545
3546 * viper-ex.el (ex-read,ex-edit):
3547 Fixes for correct interpretation of #,%.
3548 (viper-ex): Now works correctly when called from other functions.
3549 (viper-glob-function): New variable.
3550 (viper-ex): Save excursion before doing :global.
3551
3552 * viper-mous.el (viper-counting-clicks-p): Bug fixes.
3553
3554 * viper-cmd.el (viper-post-command-sentinel,
3555 viper-insert-state-post-command-sentinel,
3556 viper-insert-state-pre-command-sentinel): Takes better care of
3557 cursor colors.
3558
3559 * viper.el: Version change.
3560
3561 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com>
3562
3563 * whitespace.el (whitespace-update-modeline): Bugfix to ensure
3564 that the modeline display was updated *only* when
3565 `whitespace-display-in-modeline' was set, not otherwise.
3566
3567 1999-10-30 Gerd Moellmann <gerd@gnu.org>
3568
3569 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
3570 "frac12".
3571
3572 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
3573 ad-activate.
3574
3575 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
3576
3577 * whitespace.el: Test for existence of `defcustom' and `defgroup'
3578 using fboundp instead of assuming that these are not present in
3579 particular flavors of emacs.
3580 (whitespace-version): Update to 2.8
3581 (whitespace-display-in-modeline): Add custom variable to control
3582 displaying the whitespace errors on the modeline based on
3583 suggestion from <klaus.berndl@sdm.de>
3584 (whitespace-buffer): Now returns `t' if unclean and `nil' if
3585 clean, to enable using as a hook function, as suggested by Puneet
3586 Goel <puneet@computer.org>
3587 (whitespace-buffer): Fix a subtle bug that cleaned up only if
3588 quiet was not set, even with whitespace-auto-cleanup set.
3589 (whitespace-mode-line): Now uses less modeline real estate and
3590 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
3591 which is present in the file, and <y> is any type of whitespace
3592 whose check has been suppressed by setting
3593 `whitespace-check-<whitespace-type>' to nil.
3594 (whitespace-unchecked-whitespaces): New function to return the
3595 list of whitespaces for whom checks have been suppressed.
3596 (whitespace-display-unchecked-whitespaces): Renamed to
3597 `whitespace-update-modeline' to reflect its functionality.
3598
3599 1999-10-30 Gerd Moellmann <gerd@gnu.org>
3600
3601 * progmodes/compile.el (compilation-error-regexp-alist):
3602 Undo previous change.
3603
3604 1999-10-28 Dave Love <fx@gnu.org>
3605
3606 * help.el (help-follow): Make arg optional again and really
3607 default to point.
3608
3609 1999-10-28 Gerd Moellmann <gerd@gnu.org>
3610
3611 * paths.el (rmail-file-name): Make it an option.
3612
3613 * progmodes/ada-mode.el, progmodes/ada-prj.el,
3614 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
3615 comment fixes.
3616
3617 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
3618 MIPS Pro 7.3 compiler error message syntax.
3619
3620 1999-10-27 Dave Love <fx@gnu.org>
3621
3622 * progmodes/compile.el: Checkdoc-inspired fixes.
3623
3624 1999-10-27 Gerd Moellmann <gerd@gnu.org>
3625
3626 * lpr.el (print-buffer): Doc-string fix.
3627
3628 1999-10-27 Dave Love <fx@gnu.org>
3629
3630 * emacs-lisp/advice.el: Doc fixes.
3631 (ad-lemacs-p): Removed.
3632 (advice): Add :link to defgroup.
3633
3634 1999-10-27 Kenichi Handa <handa@etl.go.jp>
3635
3636 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
3637 last-coding-system-used by the call of ange-ftp-set-ascii-mode.
3638
3639 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3640
3641 * window.el (walk-windows): If ALL-FRAMES is a frame,
3642 start on that frame. Use save-selected-window.
3643
3644 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3645
3646 * emacs-lisp/advice.el (ad-activate-internal): Renamed from
3647 ad-activate. All callers changed, including those in data.c.
3648 (ad-activate-internal-off): Renamed from ad-activate-off.
3649 All uses changed.
3650 (ad-activate): Renamed from ad-activate-on. All uses changed.
3651 (ad-start-advice, ad-stop-advice, ad-recover-normality):
3652 Alter the definition of ad-activate-internal, not ad-activate.
3653
3654 1999-10-26 Gerd Moellmann <gerd@gnu.org>
3655
3656 * startup.el (command-line-1): Add support for command line
3657 arguments `file' and `execute'. Fix handling of `visit'.
3658
3659 1999-10-26 Kenichi Handa <handa@etl.go.jp>
3660
3661 * international/mule-cmds.el (read-input-method-name): Handle the
3662 case that the arg DEFAULT is symbol.
3663
3664 * international/mule-diag.el (mule-diag): Handle the case that
3665 default-input-method is symbol.
3666
3667 1999-10-26 Gerd Moellmann <gerd@gnu.org>
3668
3669 * textmodes/tildify.el: New file.
3670
3671 1999-10-25 Sam Steingold <sds@ksp.com>
3672
3673 * Makefile (compile-files): Fixed the "tr" strings.
3674 (EMACS): Set to ../src/emacs.
3675
3676 1999-10-25 Gerd Moellmann <gerd@gnu.org>
3677
3678 * info.el (Info-build-node-completions): Add '("*") to the
3679 completion list.
3680
3681 1999-10-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3682
3683 * frame.el (auto-raise-mode): When enabling the mode,
3684 immediately raise the selected frame.
3685
3686 * indent.el (indent-region): Doc fix.
3687
3688 * comint.el (comint-output-filter): Make the Comint buffer current
3689 for the comint-preoutput-filter-functions.
3690
3691 * mail/reporter.el: Doc fix.
3692
3693 1999-10-24 Stephen Eglen <stephen@gnu.org>
3694
3695 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
3696 that Octave lisp files can also run under XEmacs 20.
3697 (require 'custom) added so that files can run under Emacs 19.34.
3698
3699 * iswitchb.el (iswitchb-default-keybindings): No need to use
3700 read-kbd-macro in keybindings.
3701
3702 1999-10-23 Dave Love <fx@gnu.org>
3703
3704 * elide-head.el: New file.
3705
3706 1999-10-23 Gerd Moellmann <gerd@gnu.org>
3707
3708 * Makefile (compile-files, backup-compiled-files): New targets.
3709 (bootstrap, bootstrap-clean): Ditto.
3710
3711 1999-10-22 Paul Eggert <eggert@twinsun.com>
3712
3713 * international/mule-cmds.c (locale-language-names):
3714 Use Latin-1 (not Latin-3) for Afrikaans, Galician.
3715 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
3716 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
3717 Use Latin-8 for Welsh.
3718 Use Latin-1 for English if "en" is explicitly specified.
3719 Use Latin-1 for Scots Gaelic, Tagalog.
3720 Use Latin-1 (not Latin-4) for Greenlandic.
3721 Use Latin-1 (not Latin-2) for Albanian.
3722 (locale-preferred-coding-systems, locale-language-names):
3723 Remove generic ISO 8859 locales; locale-charset-language-names now
3724 does this.
3725 (locale-charset-language-names): New variable.
3726 (set-locale-environment): Use language name specified by
3727 locale-charset-language-names if its charsets disagree with the
3728 language name specified by locale-language-names.
3729
3730 1999-10-22 Dave Love <fx@gnu.org>
3731
3732 * make-mode.el: Minor doc fixes.
3733
3734 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
3735
3736 1999-10-21 Dave Love <fx@gnu.org>
3737
3738 * loadup.el: Add latin-8, latin-9.
3739
3740 1999-10-20 Paul Eggert <eggert@twinsun.com>
3741
3742 * disp-table.el (standard-display-european): Remove undocumented
3743 arg AUTO; no longer used by startup.el. Do not attempt to treat
3744 all non-English language environments as coding system names.
3745 Instead, use the downcased language environment name as a coding
3746 system name if it is one; otherwise, use latin-1.
3747
3748 1999-10-20 Gerd Moellmann <gerd@gnu.org>
3749
3750 * dired.el (dired-move-to-filename-regexp): Fix long comment lines
3751 that were split so that part of the comment appeared as Lisp code.
3752
3753 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3754
3755 * ps-bdf.el: Doc fix.
3756
3757 * ps-print-def.el: New file: common definitions for all parts of
3758 ps-print.
3759 (ps-multibyte-buffer): Moved from ps-mule.
3760
3761 * ps-mule.el: File dependence fix.
3762 (ps-multibyte-buffer): Moved to ps-print-def.
3763
3764 * ps-print.el: Doc fix, better customization.
3765 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
3766 (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
3767 (ps-end-file): Doc fix.
3768 (ps-setup, ps-begin-file): Fun fix.
3769 (postscript): New group.
3770 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
3771 (ps-print-prologue-1): Adjust PostScript programming.
3772 (ps-print): Adjust group hierarchy.
3773 (ps-print-n-up, ps-print-zebra, ps-print-background,
3774 ps-print-printer)
3775 (ps-print-page): New subgroups.
3776 (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
3777 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
3778 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
3779 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
3780 (ps-zebra-stripe-height, ps-print-background-image)
3781 (ps-print-background-text, ps-spool-config): Adjust customization.
3782 (dos-ps-printer): Definition eliminated.
3783
3784 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3785
3786 * ps-mule.el: Doc fix, define functions properly if mule package is
3787 loaded or not.
3788 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
3789 mule package is loaded or not.
3790
3791 * ps-print.el: Doc fix, n-up printing.
3792 (ps-print-version): New version number (5.0).
3793 (ps-page-dimensions-database): Added document media.
3794 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
3795 (ps-page-order, ps-printing-region-p): New vars.
3796 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
3797 funs.
3798 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
3799 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
3800 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
3801 (ps-n-up-xstart, ps-n-up-ystart): New macros.
3802 (ps-print-begin-sheet-hook): New hook.
3803 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
3804 const.
3805 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
3806 (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
3807 (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
3808 (ps-count-lines): Changed to defun.
3809 (ps-header-page): Changed to defsubst, fix fun.
3810 (ps-printing-region): Doc fix, adjust programming code.
3811 (ps-output-boolean, ps-background-pages, ps-background-text)
3812 (ps-background-image, ps-background, ps-get-boundingbox): Adjust
3813 programming code.
3814
3815 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3816
3817 * ps-print.el: Doc fix, duplex and setpagedevice configuration.
3818 (ps-print-version): New version number (4.2).
3819 (ps-spool-config, ps-spool-tumble): New vars.
3820 (ps-print-prologue-1): Changed to defconst, adjust PostScript
3821 programming, new PostScript procedure to handle errors.
3822 (ps-print-prologue-2): Changed to defconst.
3823 (ps-print-duplex-feature): New const: duplex and tumble setting.
3824 (ps-setup, ps-begin-file): Fix funs.
3825 (ps-boolean-capitalized): New fun.
3826
3827 1999-10-19 Stefan Monnier <monnier@cs.yale.edu>
3828
3829 * Makefile (dontcompilefiles): Obsoleted.
3830 (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
3831 (EL): Unused.
3832 (temacs): Removed (unused).
3833 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
3834 version of the file (necessary for the update to work properly).
3835 (autoloads): Force the use of `pwd`/loaddefs.el.
3836 (updates); Redefined in terms of other targets to reduce redundancy.
3837 (.el.elc): New default rule, just in case you want it.
3838 (compile): Use a single invocation of Emacs.
3839 (bootstrap-compile); Unneeded.
3840 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
3841
3842 1999-10-19 Dave Love <fx@gnu.org>
3843
3844 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
3845
3846 1999-10-19 Sam Steingold <sds@ksp.com>
3847
3848 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
3849 comply with the comment.
3850
3851 1999-10-19 Gerd Moellmann <gerd@gnu.org>
3852
3853 * autorevert.el (auto-revert-mode): Make auto-revert-mode
3854 permanent-local.
3855
3856 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl>
3857
3858 * progmodes/ps-mode.el (ps-mode-print-function): Fix default
3859 value: \"lpr\" changed to "lpr"
3860 (ps-mode-version): New constant
3861 (ps-mode-show-version): New function, added key in ps-mode-map
3862 (ps-run-messages): Removed
3863 (ps-run-font-lock-keywords-2): New defcustom variable replacing
3864 ps-run-messages. These keywords now include the value of
3865 ps-run-prompt, making its fontification customizable.
3866 (ps-run-init): Removed \\n from docstring, it is now added when
3867 the value is used
3868 (ps-run-font-lock-keywords-1): Added checking for initial ^ in
3869 ps-run-prompt
3870 (ps-mode): Added ps-run-font-lock-keywords-2 to list of
3871 customizable variables in doc-string (its equivalent
3872 ps-run-messages was missing in previous version of the doc-string)
3873 (ps-run-mode): Simplified assignment to font-lock-defaults, using
3874 symbols only
3875
3876 1999-10-19 Alex Schroeder <alex@gnu.org>
3877
3878 * ansi-color.el: Complete rewrite.
3879
3880 1999-10-19 Paul Eggert <eggert@twinsun.com>
3881
3882 Fix bootstrapping problems.
3883 Use the system locale to specify Emacs locale defaults.
3884
3885 * international/mule-cmds.el (global-map):
3886 Do not use backquote, because that makes a bootstrapping
3887 problem if you need to recompile all Lisp files using interpreted code.
3888 * international/mule.el (charset-id, charset-bytes,
3889 charset-dimension, charset-chars, charset-width,
3890 charset-direction, charset-iso-final-char,
3891 charset-iso-graphic-plane, charset-reverse-charset,
3892 charset-short-name, charset-long-name, charset-description,
3893 charset-plist): Likewise.
3894 * subr.el (save-match-data): Likewise.
3895
3896 * international/mule-cmds.el
3897 (set-display-table-and-terminal-coding-system): New function,
3898 containing code migrated out of set-language-environment.
3899 (set-language-environment, set-locale-environment): Use it.
3900 (locale-translation-file-name): Moved here from startup.el.
3901 (locale-language-names, locale-preferred-coding-systems):
3902 New vars.
3903 (locale-name-match, set-locale-environment): New functions.
3904
3905 * language/japan-util.el (setup-japanese-environment-internal):
3906 Prefer japanese-iso-8bit if the system-type is usg-unix-v.
3907
3908 * startup.el (iso-8859-n-locale-regexp): Remove.
3909 (locale-translation-file-name): Move to mule-cmds.el.
3910 (command-line): Move locale-stuff into set-locale-environment.
3911
3912 1999-10-18 Dave Love <fx@gnu.org>
3913
3914 * abbrev.el (add-abbrev, inverse-add-abbrev)
3915 (expand-region-abbrevs): Remove properties from buffer text.
3916
3917 1999-10-17 Gerd Moellmann <gerd@gnu.org>
3918
3919 * iswitchb.el (iswitchb-exhibit): Extract user-input only
3920 from the mini-buffer, without the prompt.
3921
3922 * simple.el (minibuffer-prompt-end): Return the position
3923 after the prompt, not the position of that last character
3924 of the prompt.
3925
3926 1999-10-17 Miles Bader <miles@gnu.org>
3927
3928 * simple.el: Doc fixes.
3929
3930 1999-10-17 Miles Bader <miles@gnu.org>
3931
3932 * simple.el (previous-matching-history-element, next-history-element):
3933 Change to work correctly even if the point is in the prompt.
3934 (choose-completion-string): Likewise.
3935 (minibuffer-prompt-width): New function (compatibility with old subr).
3936
3937 * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
3938 When constraining the final position to the current field,
3939 don't use the ONLY-IN-LINE mode of constrain-to-field.
3940
3941 1999-10-17 Miles Bader <miles@gnu.org>
3942
3943 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
3944 constrain-to-field.
3945 * textmodes/paragraphs.el (forward-sentence): Likewise.
3946
3947 1999-10-17 Miles Bader <miles@gnu.org>
3948
3949 * simple.el (line-move): Use constrain-to-field to avoid
3950 moving into a prompt.
3951 (previous-complete-history-element): Clarify doc string.
3952 (next-complete-history-element): Likewise.
3953 Use field-beginning instead of point-min.
3954 (next-matching-history-element): Use field-beginning and
3955 erase-field instead of point-min and erase-buffer.
3956 * textmodes/paragraphs.el
3957 (forward-paragraph, forward-sentence): Likewise.
3958 (backward-kill-paragraph, backward-kill-sentence): Remove code to
3959 constrain the kill to an field, as the movement commands now
3960 do this.
3961
3962 1999-10-17 Miles Bader <miles@gnu.org>
3963
3964 * simple.el (previous-matching-history-element): Get the
3965 minibuffer input with field-string instead of buffer-string.
3966 (choose-completion-string): Likewise.
3967 (next-history-element): Likewise.
3968 Erase the minibuffer input with erase-field, not erase-buffer.
3969 Use field-beginning to find the beginning of the input.
3970 * textmodes/paragraphs.el (backward-kill-sentence):
3971 Remove minibuffer-prompt hack.
3972 Constrain to any input field.
3973
3974 1999-10-17 Sam Steingold <sds@ksp.com>
3975
3976 * bindings.el (completion-ignored-extensions): Added ".sparcf"
3977 for CMUCL on sparc and ".ufsl" for LispWorks.
3978 (bound-and-true-p): Bugfix: free variable `v'.
3979
3980 1999-10-16 Dave Love <d.love@dl.ac.uk>
3981
3982 * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
3983 (edebug-uninstall-read-eval-functions): Use load-read-function,
3984 avoiding elisp-eval.
3985
3986 1999-10-16 Sam Steingold <sds@ksp.com>
3987
3988 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
3989 instead of `eql'.
3990
3991 1999-10-14 Stefan Monnier <monnier@cs.yale.edu>
3992
3993 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
3994 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
3995 (browse-url-temp-file-list, browse-url-delete-temp-file-list):
3996 * ediff-util.el (ediff-make-temp-file):
3997 * ediff-vers.el (ediff-pcl-cvs-view-revision):
3998 * emerge.el (emerge-make-temp-file):
3999 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
4000 * vc.el (vc-update-change-log):
4001 * mail/mailpost.el (post-mail-send-it):
4002 * mail/metamail.el (metamail-region):
4003 * progmodes/cmacexp.el (c-macro-expansion):
4004 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
4005
4006 1999-10-15 Gerd Moellmann <gerd@gnu.org>
4007
4008 * smtpmail.el (smtpmail-via-smtp): Add support for
4009 automatically appending a domain to RCPT TO: addresses.
4010
4011 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4012
4013 * dired.el (dired-insert-directory): Insert the amount of
4014 free space after the total size.
4015 (dired-free-space-program, dired-free-space-args): New variables.
4016
4017 1999-10-14 Karl Heuer <kwzh@gnu.org>
4018
4019 * mail/rmail.el (rmail-pop-password-error): Add new pattern.
4020
4021 1999-10-14 Dave Love <fx@gnu.org>
4022
4023 * international/characters.el:
4024 * international/fontset.el:
4025 * international/mule-conf.el: Add latin-iso8859-1[45].
4026
4027 * language/european.el: Add Latin-8, Latin-9. Modify some doc
4028 strings.
4029
4030 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
4031 (command-line): Detect Latin-[89] locales.
4032
4033 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
4034
4035 * international/mule-cmds.el (select-safe-coding-system)
4036 (leim-list-header): Avoid the use of strings that start with backslash
4037 newline since lread.c:read1 has a hack to turn those strings into
4038 integer 0 during the loadup.el process.
4039
4040 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
4041
4042 1999-10-13 Dave Love <fx@gnu.org>
4043
4044 * image.el (insert-image): Copy the image spec and add an
4045 intangible property.
4046
4047 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
4048
4049 * help.el (help-xref-interned): Make it also work on variable-only
4050 and function-only symbols.
4051 (help-make-xrefs): Take advantage of the new `help-xref-interned'.
4052 (help-follow): If the point under mouse is not highlighted, try
4053 `help-xref-interned' on the pointed-to symbol anyway.
4054
4055 * info.el (Info-on-current-buffer): New entry point.
4056 (Info-find-node): Split into two for Info-on-current-buffer to
4057 hook into it.
4058 (Info-current-file, Info-set-mode-line, Info-up):
4059 Info-current-file can now be t.
4060 (Info-clone-buffer-hook): Function for `clone-buffer'.
4061 (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
4062 Make `clone-buffer' available in various ways to the user.
4063
4064 1999-10-12 Stefan Monnier <monnier@cs.yale.edu>
4065
4066 * simple.el (shell-command, shell-command-on-region): Use
4067 make-temp-file.
4068 (clone-buffer, clone-process, clone-buffer-hook): New functions.
4069
4070 * subr.el (with-current-buffer): Don't use backquotes to avoid
4071 bootstrapping problems.
4072
4073 * loadup.el (load-path): Add subdirs for bootstrapping.
4074 (docstrings): Ignore errors during bootstrapping.
4075 (args): New `bootstrap' argument (for use in place of `dump').
4076
4077 1999-10-12 Emmanuel Briot <briot@gnat.com>
4078
4079 * ada-stmt.el: Doc-string fixes.
4080
4081 1999-10-12 Gerd Moellmann <gerd@gnu.org>
4082
4083 * recentf.el: New file.
4084
4085 * ps-mode.el: New file.
4086
4087 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
4088 case insensitive.
4089
4090 1999-10-12 Richard Sharman <rsharman@pobox.com>
4091
4092 * sh-script.el: Added support for indenting existing scripts.
4093 (sh-mode-map): Added new bindings.
4094 (sh-mode): Updated mode doc-string for new commands, added
4095 make-local-variable calls, initialize mode-specific variables.
4096 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line
4097 is now a different function.
4098 (sh-header-marker): Changed docstring.
4099 (sh-set-shell): Initialize mode-specific variables.
4100 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
4101 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
4102 Changed these define-skeleton calls to work with user-specified
4103 indentation settings.
4104 (sh-basic-indent-line, sh-blink, sh-calculate-indent)
4105 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
4106 (sh-electric-hash, sh-electric-less, sh-electric-rparen)
4107 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
4108 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
4109 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
4110 (sh-guess-basic-offset, sh-handle-after-case-label)
4111 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
4112 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
4113 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
4114 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
4115 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
4116 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
4117 (sh-handle-this-then, sh-help-string-for-variable)
4118 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
4119 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
4120 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
4121 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
4122 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
4123 (sh-remove-our-text-properties, sh-rescan-buffer)
4124 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
4125 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
4126 (sh-scan-case, sh-search-word, sh-set-char-syntax)
4127 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
4128 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
4129 functions.
4130 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
4131 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
4132 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
4133 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
4134 (sh-var-list): New variables.
4135
4136 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk>
4137
4138 * quickurl.el (quickurl-list-insert): `count-lines' was returning
4139 a value one line to high if the cursor wasn't at the start of a
4140 line. A `beginning-of-line' is now performed before making the
4141 call to `count-lines'.
4142
4143 1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
4144
4145 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
4146
4147 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
4148
4149 * Makefile (setwins): Abstract out the command to find subdirectories
4150 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
4151 (custom-deps, finder-data, autoloads, update-subdirs, updates)
4152 (autoloads-with-other-emacs): Use it.
4153
4154 * diff-mode.el: New file. A mode for viewing/editing context diffs.
4155
4156 1999-10-09 Gerd Moellmann <gerd@gnu.org>
4157
4158 * Makefile (bootstrap-compile): New target. Compile Lisp
4159 files with ../src/temacs.
4160
4161 1999-10-08 Dave Love <fx@gnu.org>
4162
4163 * ange-ftp.el: Require dired when compiling.
4164 (ange-ftp-normal-login): Allow EFS-style port specification.
4165
4166 1999-10-08 Simon Marshall <simon@gnu.org>
4167
4168 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
4169 (regexp-opt-group): Use it to get common suffixes in STRINGS.
4170 If STRINGS is nil, return "" rather than nil.
4171
4172 1999-10-08 Gerd Moellmann <gerd@gnu.org>
4173
4174 * Makefile (compile): Compile files one by one. Set load-path to
4175 current directory and subdirectories when compiling.
4176
4177 1999-10-08 Gerd Moellmann <gerd@gnu.org>
4178
4179 * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
4180 (emacs): Use it everywhere instead of EMACS.
4181 (compile): New target. Compile all Lisp files from scratch.
4182 (recompile): New target. Recompile lisp directory.
4183 (autoloads-with-other-emacs): New target. Build loaddefs.el with
4184 an Emacs executable not built in the current directory tree.
4185
4186 1999-10-07 Peter Breton <pbreton@ne.mediaone.net>
4187
4188 * filecache.el (file-cache-completion-ignore-case): New variable,
4189 defaulting to the value of completion-ignore-case.
4190 (file-cache-minibuffer-complete): Use it.
4191 (file-cache-files-matching, file-cache-files-matching-internal):
4192 New functions.
4193
4194 1999-10-07 Emmanuel Briot <briot@gnat.com>
4195
4196 * ada-xref.el: New file
4197
4198 * ada-prj.el: New file
4199
4200 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
4201
4202 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
4203 subprogram being created.
4204
4205 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
4206 ada-indent-newline-indent): Rewritten to support the new indentation
4207 scheme
4208
4209 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
4210 New functions
4211
4212 * ada-mode.el (ada-fill-comment-paragraph): Add support for the
4213 justification parameter
4214
4215 * ada-mode.el (ada-make-body, ada-gen-treat-proc,
4216 ada-make-subprogram-body): Rewritten to benefit from the gnatstub
4217 external program
4218
4219 1999-10-07 Dave Love <fx@gnu.org>
4220
4221 * bindings.el (bound-and-true-p): New macro.
4222 (make-mode-line-mouse-sensitive): Don't require easymenu.
4223
4224 1999-10-07 Gerd Moellmann <gerd@gnu.org>
4225
4226 * custom.el (defface): Extend documentation for new values of
4227 `type'.
4228
4229 * faces.el (face-spec-set-match-display): Recognize `type' of
4230 `motif', `lucid', `x-toolkit'.
4231 (menu): New face.
4232
4233 1999-10-05 Dave Love <fx@gnu.org>
4234
4235 * files.el: Recognize temporary crontab files.
4236
4237 * info.el: Require jka-compr when compiling.
4238 (Info-suffix-list): Add bzip2 files (non-ms-dos only).
4239
4240 1999-10-04 Dave Love <fx@gnu.org>
4241
4242 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
4243 scroll-up-aggressively, scroll-down-aggressively.
4244
4245 * time.el (display-time-mode): Add autoload cookie.
4246
4247 * rect.el (delete-extract-rectangle): Doc fix from verna.
4248
4249 * help-macro.el (three-step-help): Customize.
4250
4251 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4252
4253 * hexl.el (hexlify-buffer): Move point in proper range
4254 if it is too large.
4255 (hexl-after-revert-hook): Update hexl-max-address.
4256 (hexl-address-to-marker): Doc fix.
4257
4258 1999-10-03 Dave Love <fx@gnu.org>
4259
4260 * image.el (defimage): Remove redundant code. Substitute file in
4261 image plist.
4262
4263 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
4264
4265 * vc.el (vc-backend-checkout): Use coding system 'no-conversion
4266 when doing with-temp-file.
4267
4268 1999-10-01 Dave Love <fx@gnu.org>
4269
4270 * cus-edit.el (custom-comment-create): Fill :from and :to slots.
4271
4272 * help.el: Require view when compiling.
4273 (view-emacs-FAQ): Use Info version.
4274
4275 1999-09-29 Ken'ichi Handa <handa@gnu.org>
4276
4277 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
4278 (normat->normal). Use correct font names for Korean
4279 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
4280
4281 1999-09-29 Kenichi Handa <handa@etl.go.jp>
4282
4283 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
4284 code not used by KOI8 to the same 8-bit code instead of mapping to
4285 SPC.
4286 (cyrillic-alternativnyj-decode-table): Likewise.
4287
4288 1999-09-29 Alex Schroeder <alex@gnu.org>
4289
4290 * sql.el (sql-imenu-generic-expression): Aew, used to set
4291 imenu-generic-expression.
4292 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
4293 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression,
4294 imenu-case-fold-search, and imenu-syntax-alist.
4295 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
4296 setting font-lock-defaults' SYNTAX-ALIST.
4297
4298 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4299
4300 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
4301 macro, try again.
4302
4303 1999-09-28 Dave Love <fx@gnu.org>
4304
4305 * cus-edit.el (custom-comment): Change widget definition.
4306 (custom-comment-create, custom-comment-show)
4307 (custom-comment-invisible-p): Don't use :comment-overlay.
4308 (custom-comment-hide): New function.
4309 (custom-variable-set, custom-variable-save)
4310 (custom-variable-reset-standard, custom-face-set)
4311 (custom-face-save): Use it.
4312
4313 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4314
4315 * hexl.el (hexl-mode): Do nothing if already in hexl mode.
4316
4317 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4318
4319 * faces.el (region): Doc fix.
4320
4321 1999-09-27 Dave Love <fx@gnu.org>
4322
4323 * isearch.el (isearch): Add :links in defgroup.
4324 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
4325 (isearch-switch-frame-handler): Comment out (unused).
4326 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
4327 (isearch-ring-retreat-edit): Doc fix.
4328 (isearch-mouse-yank): New command.
4329 (isearch-last-command-char): Removed. Callers changed to use
4330 last-command-char.
4331 (isearch-char-to-string): Removed. Callers changed to use
4332 char-to-string.
4333
4334 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
4335
4336 * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
4337 option for Russian.
4338
4339 1999-09-25 Gerd Moellmann <gerd@gnu.org>
4340
4341 * faces.el (face-differs-from-default-p): Compare face
4342 attributes individually.
4343
4344 * image.el (put-image, insert-image): Add string argument.
4345
4346 1999-09-24 Gerd Moellmann <gerd@gnu.org>
4347
4348 * ange-ftp.el (ange-ftp-date-regexp): Make it work for
4349 LANG=de_DE.iso88591 on HPUX 11.0.
4350
4351 * dired.el (dired-move-to-filename-regexp): Make it work
4352 for LANG=de_DE.iso88591 on HPUX 11.0.
4353
4354 1999-09-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4355
4356 * info.el (info-initialize): Don't test existence of ALTERNATIVE
4357 if we know for some other reason it should not be used.
4358
4359 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
4360 New variable.
4361 (edebug-recursive-edit): Save current-prefix-arg there,
4362 bind it, and set it back at the end.
4363 (edebug-outside-excursion): Restore and update the outside
4364 value of current-prefix-arg.
4365 (edebug-emacs-version-specific): Delete support for Epoch.
4366
4367 1999-09-24 Howard Melman <howard@silverstream.com>
4368
4369 * imenu.el (imenu-after-jump-hook): New variable.
4370 (imenu): Run menu-after-jump-hook.
4371 (imenu-name-lookup-function): New variable.
4372 * imenu.el (imenu--in-alist): Use those variables.
4373
4374 1999-09-24 Carsten Dominik <cd@gnu.org>
4375
4376 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
4377 multiple thebibliography environments.
4378
4379 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
4380 with recentering window.
4381 (reftex-extract-bib-entries-from-thebibliography,
4382 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal
4383 with multiple thebibliography environments.
4384
4385 * textmodes/reftex-vars.el
4386 (reftex-section-levels): Function allowed as cdr.
4387 (reftex-max-section-depth) New option.
4388
4389 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
4390 with multiple thebibliography environments.
4391
4392 1999-09-23 Gerd Moellmann <gerd@gnu.org>
4393
4394 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
4395 instead of point-min in call to delete-region.
4396
4397 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de>
4398
4399 * vc.el (vc-backend-checkout): Use with-temp-file when checking
4400 out into arbitrary file names.
4401
4402 1999-09-19 Ken'ichi Handa <handa@gnu.org>
4403
4404 * language/european.el ("Turkish"): New language environment.
4405
4406 1999-09-19 Dave Love <fx@gnu.org>
4407
4408 * delim-col.el: New file.
4409
4410 1999-09-17 Richard Stallman <rms@gnu.org>
4411
4412 * files.el (after-find-file): When visiting a backup file,
4413 make it read-only.
4414
4415 * apropos.el (apropos-symbol-face): Non-nil even for ttys.
4416 (apropos-keybinding-face, apropos-label-face): Likewise.
4417 (apropos-property-face, apropos-match-face): Likewise.
4418 (apropos-label-properties): New variable.
4419 (apropos-print-doc): Use apropos-label-properties.
4420 (apropos-print): Set apropos-label-properties.
4421
4422 1999-09-15 Richard Stallman <rms@gnu.org>
4423
4424 * winner.el: Use aref instead of sref.
4425
4426 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
4427
4428 1999-09-14 Gerd Moellmann <gerd@gnu.org>
4429
4430 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
4431
4432 1999-09-14 Richard Stallman <rms@gnu.org>
4433
4434 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
4435 cookie, even if followed by a letter.
4436
4437 1999-09-14 Stephen Eglen <stephen@gnu.org>
4438
4439 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
4440 --no-line-editing are passed to Octave by including them here
4441 rather than storing them in inferior-octave-startup-args.
4442
4443 1999-09-14 Eli Zaretskii <eliz@gnu.org>
4444
4445 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
4446 command, option, env and sc.
4447
4448 * subr.el (shell-quote-argument): Quote argument with double
4449 quotes for ms-dos.
4450
4451 1999-09-14 Richard Stallman <rms@gnu.org>
4452
4453 * simple.el (eval-expression-print-level): New variable.
4454 (eval-expression-print-length): New variable.
4455 (eval-expression-debug-on-error): New variable.
4456 (eval-expression): Bind print-level, print-length and
4457 debug-on-error from those vars.
4458
4459 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
4460 Bind print-level, print-length and debug-on-error.
4461
4462 1999-09-14 Inge Frick <inge@nada.kth.se>
4463
4464 * dired.el (dired-recursive-deletes): New custom variable.
4465 (dired-re-no-dot): New variable.
4466 (dired-delete-file): New function deletes files and directories
4467 recursively.
4468 (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
4469
4470 * dired-aux.el (dired-recursive-copies): New custom variable.
4471 (dired-handle-overwrite): Broke a long line.
4472 (dired-copy-file): Call `dired-copy-file-recursive' instead of
4473 `copy-file'.
4474 (dired-copy-file-recursive): New function. Copy directories
4475 recursively.
4476 (dired-do-create-files): Added support for generalized directory
4477 target. How-to function may now return a function. New fluid
4478 variable `dired-one-file'.
4479 (dired-copy-how-to-fn): New variable.
4480 (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
4481 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
4482 (dired-do-copy-regexp): No recursive copies.
4483
4484 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com>
4485
4486 * whitespace.el (whitespace-version): Update version to 2.4
4487
4488 * whitespace.el: Add customization variables to conditionally test
4489 any of the five whitespaces, per request from Rune Kleveland
4490 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
4491
4492 * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
4493
4494 * whitespace.el (whitespace-modes): Add `change-log-mode' to the
4495 list of modes to be checked for bogus whitespaces.
4496
4497 * whitespace.el (whitespace-rescan-timer-time): Update
4498 documentation.
4499
4500 * whitespace.el (whitespace-display-unchecked-whitespaces):
4501 New function to update modeline with untested whitespaces.
4502
4503 * whitespace.el (whitespace-buffer): Test only whitespaces whose
4504 checking is turned on, and update modeline using the newly created
4505 `whitespace-display-unchecked-whitespaces'.
4506
4507 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
4508 whose checking is turned on, and update modeline using the newly
4509 created `whitespace-display-unchecked-whitespaces'.
4510
4511 * whitespace.el (whitespace-describe): Update documentation.
4512
4513 * whitespace.el (whitespace-tickle-timer): Test if
4514 `whitespace-rescan-timer-time' is non-zero before tickling timer.
4515
4516 1999-09-13 Dave Love <fx@gnu.org>
4517
4518 * hideif.el (hide-ifdef-mode): Add autoload cookie.
4519
4520 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
4521 for temp buffer.
4522 (checkdoc-this-string-valid): Don't assume default comment-start.
4523
4524 1999-09-13 Gerd Moellmann <gerd@gnu.org>
4525
4526 * rsz-mini.el: Remove code, keep the interface.
4527
4528 1999-09-13 Dave Love <fx@gnu.org>
4529
4530 * help.el (help-highlight-p): Doc fix.
4531
4532 * faces.el (mode-line, header-line, tool-bar): Add :version.
4533 (highlight, secondary-selection): Add :group.
4534 (trailing-whitespace): Add :group, :version.
4535
4536 * wid-edit.el: Remove some compatibility code and checks.
4537 (widget-specify-field, widget-specify-button): Don't use XEmacs
4538 properties.
4539 (widget-overlay-inactive): Change error message.
4540 (widget-button-pressed-face): New variable.
4541 (widget-button-click): Use it.
4542 (widget-documentation-link-add): Specify mouse and button faces.
4543 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
4544 removed now the functionality is built in.
4545
4546 * cus-edit.el: Don't define-widget-keywords.
4547 (multimedia): New group.
4548 (custom-last): Function removed.
4549 (custom-quote): Add vectorp case, comment out characterp case.
4550 (custom-buffer-done-function, custom-raised-buttons): New option.
4551 (Custom-buffer-done): New function.
4552 (custom-buffer-create-internal): Obey custom-raised-buttons,
4553 Custom-buffer-done.
4554 (custom-button-face): Make it `released-button'.
4555 (custom-button-pressed-face): Make it `pressed-button'
4556 (custom-mode-map): Bind "q" to Custom-buffer-done.
4557 (custom-mode): Deal with raised/pressed buttons.
4558
4559 Changes from Didier Verna:
4560 (custom-prompt-variable): Optional third arg makes prompt for a
4561 comment string.
4562 (customize-set-value, customize-set-variable,
4563 customize-save-variable): Optional prefix makes function handle
4564 variable comments.
4565 (customize-customized, customize-saved, custom-variable-state-set)
4566 (custom-variable-set, custom-variable-save, custom-face-state-set)
4567 (custom-variable-reset-saved, custom-variable-reset-standard)
4568 (custom-face-set, custom-face-save, custom-face-reset-saved)
4569 (custom-face-reset-standard, customize-save-customized): Handle
4570 custom comments.
4571 (custom-comment-face, custom-comment-tag-face): New face.
4572 (custom-comment): New widget.
4573 (custom-comment-create, custom-comment-delete)
4574 (custom-comment-value-set, custom-comment-show)
4575 ()custom-comment-invisible-p): New functions.
4576 (custom-variable-value-create, custom-face-value-create): Create a
4577 comment field widget.
4578 (custom-variable-menu, custom-face-menu): New entry for custom
4579 comment.
4580 (custom-face-value-create): Remove compatibility code.
4581 (custom-save-variables, custom-save-faces): Possibly save custom
4582 comments.
4583
4584 * cus-face.el (custom-face-attributes): Simplify :underline,
4585 :overline, :inverse-video cases. Fix up :box case (probably needs
4586 more work).
4587
4588 Change from Didier Verna:
4589 (custom-set-faces): The arguments can now have a custom comment as
4590 fourth argument.
4591
4592 * custom.el: Don't define-widget-keywords.
4593 Change from Didier Verna:
4594 (custom-set-variables): The arguments can now have a
4595 custom comment as fifth element.
4596
4597 1999-09-13 Richard Stallman <rms@gnu.org>
4598
4599 * info.el (Info-find-node): Cope better if guesspos is too large.
4600
4601 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4602
4603 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
4604 of buffer-substring because buffer-string doesn't copy the
4605 prompt.
4606
4607 * faces.el (mode-line): Replaces `modeline'.
4608 (toplevel): Make `modeline' an alias for `mode-line'.
4609
4610 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4611
4612 * gs.el: Change `ghostscript' to `postscript' in comment.
4613
4614 1999-09-11 Rob Riepel <riepel@Stanford.EDU>
4615
4616 * emulation/tpu-edt.el (tpu-version): New version.
4617 (tpu-search-overlay, tpu-replace-overlay): New variables.
4618 (tpu-search-highlight, tpu-toggle-direction): New functions.
4619 (tpu-lm-replace): Set tpu-replace-overlay.
4620 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
4621 command hook.
4622
4623 1999-09-11 Richard Stallman <rms@gnu.org>
4624
4625 * isearch.el (isearch-mode-map): Undo previous change.
4626
4627 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
4628 use all of that as the sexp.
4629
4630 * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
4631 and use the initial argument as file name directly.
4632 Likewise if nothing matches.
4633
4634 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no>
4635
4636 * winner.el: Major changes. Avoid changing point and mark.
4637 Save configurations after they change, not before.
4638
4639 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
4640
4641 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
4642 Bind print-continuous-numbering and print-number-table.
4643
4644 1999-09-10 Dave Love <fx@gnu.org>
4645
4646 * bindings.el (debug-ignored-errors): Restore BBDB stuff.
4647
4648 1999-09-09 Richard Stallman <rms@gnu.org>
4649
4650 * whitespace.el: Finish making it fit Emacs conventions.
4651 Add autoloads.
4652
4653 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il>
4654
4655 * generic-x.el (bat-generic-mode): "::"-style comments don't
4656 need to begin with "-". Fix the font-lock definitions of ON/OFF
4657 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO
4658 from the list of keywords. Add DO to the list of keywords.
4659
4660 1999-09-09 Dave Love <fx@gnu.org>
4661
4662 * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
4663 (byte-optimize-backward-word): New optimizations.
4664 (side-effect-free-fns, side-effect-and-error-free-fns): Add
4665 entries.
4666
4667 1999-09-09 Gerd Moellmann <gerd@gnu.org>
4668
4669 * image.el (put-image): Remove optional buffer parameter.
4670
4671 * faces.el (face-italic-p): Return t only for values `italic'
4672 and `oblique'.
4673
4674 * mouse.el (mouse-drag-mode-line-1): Extension of former
4675 mouse-drag-mode-line that also drags the header line.
4676 (mouse-drag-mode-line): Call it.
4677 (mouse-drag-header-line): New.
4678 (toplevel): Bind down-mouse-1 on header lines to
4679 mouse-drage-header-line.
4680
4681 1999-09-08 Gerd Moellmann <gerd@gnu.org>
4682
4683 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
4684 (make-mode-line-mouse-sensitive): Replace `top-line' by
4685 `header-line'.
4686
4687 1998-09-08 Michael Ernst <mernst@alum.mit.edu>
4688
4689 * help.el (describe-function-1): Don't return empty string for keymaps.
4690
4691 * fill.el (fill-region-as-paragraph, canonically-space-region):
4692 Respect colon-double-space at end of line.
4693
4694 1999-09-08 Stephen Gildea <gildea@alum.mit.edu>
4695
4696 * files.el (backup-by-copying-when-privileged-mismatch): New variable.
4697 (backup-buffer): Use it.
4698
4699 1999-09-08 Peter Breton <pbreton@ne.mediaone.net>
4700
4701 * generic-x.el (generic-define-unix-modes): Added new modes:
4702 inetd-conf-generic-mode, etc-services-generic-mode,
4703 etc-passwd-generic-mode. These are all defined for Unix by default.
4704 (apache-generic-mode): Use an imenu-generic-expression to list
4705 Configuration keywords.
4706 (samba-generic-mode): Use both ; and # as comment characters.
4707 (samba-generic-mode): Font-lock expressions now highlight name
4708 value pairs.
4709 (bat-generic-mode): Keywords are now case-insensitive through
4710 font-lock-defaults setting.
4711 (java-properties-generic-mode): Supports both ! and # as comment
4712 characters.
4713 (java-properties-generic-mode): Added an imenu-generic-expression
4714 (java-properties-generic-mode): Reworked to support the various
4715 different ways to separate name and value (viz, '=', ':' and
4716 whitespace).
4717 (show-tabs-generic-mode): Added this new generic-mode.
4718
4719 1999-09-08 Richard Stallman <rms@gnu.org>
4720
4721 * progmodes/inf-lisp.el: Moved from top directory.
4722
4723 * tar-mode.el (tar-header-block-tokenize):
4724 Use `when' instead of `and'. Fix some clobbered text.
4725
4726 * gud.el (gud-make-debug-menu): Make a child for the
4727 local menu, for its menu bar, and the debug menu.
4728 (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
4729 Use the history in the simple way.
4730
4731 1999-09-07 Kenichi Handa <handa@etl.go.jp>
4732
4733 * language/korea-util.el (default-korean-keyboard): Initialize it
4734 according to the environment variable HANGUL_KEYBOARD_TYPE.
4735
4736 1999-09-07 Richard Stallman <rms@gnu.org>
4737
4738 * subr.el (make-temp-file): New function.
4739
4740 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
4741
4742 * font-lock.el (font-lock-multiline): New text property contains
4743 a boolean to indicate if the char is part of a multiline match.
4744 (font-lock-default-fontify-region): Extend the region appropriately
4745 for multiline keywords.
4746 (font-lock-default-unfontify-region): Also remove the new
4747 font-lock-multiline text property.
4748 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
4749 (font-lock-fontify-keywords-region): Mark multiline regexp matches.
4750
4751 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4752
4753 * diary-lib.el (list-diary-entries): Make sure two-digit years
4754 have leading zeros.
4755
4756 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4757
4758 * faces.el (face-set-after-frame-default): Initialize some
4759 attributes of some faces from frame parameters.
4760
4761 * faces.el (scroll-bar, border, cursor, mouse): New faces.
4762
4763 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4764
4765 * faces.el (fringe): Replaces face `margin'.
4766
4767 1999-09-07 Dave Love <fx@gnu.org>
4768
4769 * tar-mode.el (tar-header-block-tokenize): Bind linkname.
4770
4771 1999-09-07 Richard Stallman <rms@gnu.org>
4772
4773 * subr.el (push): Doc fix.
4774
4775 1999-09-06 Richard Stallman <rms@gnu.org>
4776
4777 * vc.el (vc-annotate-display): Use < 69 not < 70
4778 to distinguish 20YY from 19YY.
4779
4780 * timezone.el (timezone-parse-date): Use < 69 not < 70
4781 to distinguish 20YY from 19YY.
4782
4783 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
4784
4785 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk>
4786
4787 * quickurl.el: (quickurl-list-focused-line): Removed.
4788 (quickurl-list-insert): Now works out the focused line using
4789 `count-lines' instead of using `quickurl-list-focused-line'.
4790
4791 1999-09-06 Richard Stallman <rms@gnu.org>
4792
4793 * mail/rmail.el (rmail-retry-failure): Unconditionally move
4794 to beginning of message.
4795
4796 1999-09-06 Dave Love <fx@gnu.org>
4797
4798 * isearch.el (isearch-mode-map): Add mouse-2.
4799
4800 * mail/rmail.el (rmail-read-password): Deleted.
4801 (rmail-get-pop-password): Use read-password.
4802
4803 * quickurl.el: Don't conditionally define caddr.
4804 (quickurl-url-comment): Use nth, not caddr in function and
4805 defsetf.
4806
4807 1999-09-06 Richard Stallman <rms@gnu.org>
4808
4809 * auto-show.el: Doc fixes.
4810
4811 1999-09-06 Stephen Eglen <stephen@gnu.org>
4812
4813 * progmodes/octave-inf.el (inferior-octave-startup-args): Add
4814 --no-line-editing so that TABs in source files are not interpreted
4815 as completion requests.
4816
4817 1999-09-06 Gerd Moellmann <gerd@gnu.org>
4818
4819 * hscroll.el, auto-show.el: Remove all code, keep the public
4820 interface as no-ops.
4821
4822 * faces.el (face-bold-p): Don't return t if face has lighter
4823 weight than normal.
4824
4825 1999-09-06 Eli Zaretskii <eliz@gnu.org>
4826
4827 * startup.el (command-line): Make small-temporary-file-directory
4828 be nil except on ms-dos.
4829
4830 * files.el (small-temporary-file-directory): Ditto. Also doc fix.
4831
4832 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
4833 is defined.
4834
4835 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
4836 letters with a colon after d or l.
4837
4838 1999-09-06 Dave Love <fx@gnu.org>
4839
4840 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now
4841 primitive.)
4842
4843 1999-09-05 Richard Stallman <rms@gnu.org>
4844
4845 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
4846
4847 * textmodes/paragraphs.el (backward-kill-sentence):
4848 Don't test minibuffer-prompt-end here.
4849 (forward-sentence): Do handle it here.
4850 (backward-kill-paragraph): Don't test it here.
4851 (forward-paragraph): Handle it here.
4852
4853 * mouse.el (font-menu-add-default): Simplify code.
4854
4855 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4856
4857 * faces.el (header-line): Renamed from `top-line'.
4858
4859 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4860
4861 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
4862
4863 1999-09-04 Richard Stallman <rms@gnu.org>
4864
4865 * whitespace.el: New file.
4866
4867 1999-09-04 Dave Love <fx@gnu.org>
4868
4869 * paths.el: Make some doc strings obey the make-docfile convention.
4870
4871 * bindings.el: Likewise.
4872 (debug-ignored-errors): Remove BBDB ones.
4873
4874 1999-09-03 Richard Stallman <rms@gnu.org>
4875
4876 * mail/mh-comp.el (mh-forward): Get new subject line from the original,
4877 not from the draft to forward.
4878
4879 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
4880
4881 1999-09-03 Dave Love <fx@gnu.org>
4882
4883 * double.el (double-mode): Customize the variable.
4884
4885 1999-09-03 Kenichi Handa <handa@etl.go.jp>
4886
4887 * international/characters.el: Delete duplicated code.
4888
4889 1999-09-02 Richard Stallman <rms@gnu.org>
4890
4891 * indent.el (indent-relative): Doc fix.
4892
4893 * quickurl.el (quickurl): Doc fix.
4894
4895 1999-09-02 Gerd Moellmann <gerd@gnu.org>
4896
4897 * faces.el (margin): Change background to "gray" for mono (this is
4898 drawn with a stipple pattern).
4899
4900 1999-09-02 Gerd Moellmann <gerd@gnu.org>
4901
4902 * simple.el (next-history-element): Use minibuffer-prompt-end once
4903 again. Remove test for minibuffer-prompt-in-buffer.
4904
4905 1999-09-02 Eli Zaretskii <eliz@gnu.org>
4906
4907 * files.el (small-temporary-file-directory): New variable.
4908
4909 * startup.el (command-line): Compute the value of
4910 small-temporary-file-directory.
4911
4912 * ediff-init.el (ediff-temp-file-prefix): Use
4913 small-temporary-file-directory if non-nil.
4914
4915 * vc.el (vc-update-change-log): Likewise.
4916
4917 * progmodes/cmacexp.el (c-macro-expansion): Likewise.
4918
4919 * simple.el (shell-command, shell-command-on-region): Use
4920 make-temp-name properly. Use small-temporary-file-directory if
4921 non-nil, otherwise temporary-file-directory, to generate temporary
4922 files.
4923
4924 * dos-w32.el (direct-print-region-helper): Use
4925 temporary-file-directory. (From Stefan Monnier.)
4926
4927 1999-09-02 Richard Stallman <rms@gnu.org>
4928
4929 * progmodes/asm-mode.el (asm-mode): Set comment-start properly
4930 from asm-comment-char.
4931 (asm-font-lock-keywords): Recognize instruction width suffixes.
4932
4933 1999-09-01 Richard Stallman <rms@gnu.org>
4934
4935 * play/fortune.el: New file.
4936
4937 1999-08-31 Dave Love <fx@gnu.org>
4938
4939 * help.el (help-make-xrefs): Don't lose on non-empty blank line
4940 after key table.
4941
4942 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
4943 redisplay variables.
4944
4945 * subr.el (push): Fix typo.
4946
4947 1999-08-30 Kevin Blake <kblake@ticnet.com>
4948
4949 * emacs-lisp/ring.el: Many doc fixes.
4950 (ring-size, ring-copy): New functions.
4951
4952 1999-08-29 Richard Stallman <rms@gnu.org>
4953
4954 * progmodes/etags.el (tags-loop-continue):
4955 After tags-loop-operate returns, force skip to next file.
4956
4957 * mail/mail-extr.el (mail-extr-all-letters-but-separators)
4958 (mail-extr-first-letters, mail-extr-last-letters):
4959 Use character classes [:alpha:] and [:alnum:].
4960
4961 * subr.el (push, pop): New macros.
4962
4963 * progmodes/compile.el (compilation-error-regexp-alist):
4964 New item for SGI IRIX MipsPro compilers.
4965
4966 * speedbar.el (speedbar-directory-buttons): Recognize
4967 device names when checking for file names.
4968
4969 * array.el (array-reconfigure-rows): Use generate-new-buffer.
4970
4971 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
4972 and specially handle defvar inside their expansions.
4973 (eval-defun-1): New subroutine.
4974
4975 * progmodes/compile.el (compilation-error-regexp-alist):
4976 Fix the Perl -w entry to allow period after line number.
4977 Don't allow newlines in file name, but allow them after line number
4978 for Perl debugging traces.
4979
4980 * which-func.el (which-func-cleanup-function): New variable.
4981 (which-function): Call that function.
4982
4983 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
4984 to end a function name.
4985
4986 * informat.el (Info-tagify): Don't insert more than one newline
4987 before the tag table.
4988
4989 1999-08-29 Stefan Monnier <monnier@cs.yale.edu>
4990
4991 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
4992 than make-temp-name, use match-string-no-properties, and eliminate
4993 a quadratic behavior when building bibtex-strings.
4994
4995 1999-08-29 Alex Schroeder <alex@gnu.org>
4996
4997 * comint.el (comint-input-ring-separator): New variable.
4998 (comint-read-input-ring): Doc change; use
4999 comint-input-ring-separator when reading file.
5000 (comint-write-input-ring): Use
5001 comint-input-ring-separator when writing file.
5002
5003 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com>
5004
5005 * informat.el (Info-tagify): Start by widening.
5006 Match node headers that don't list the file name,
5007 and more kinds of page separations.
5008 Strip properties during tagification.
5009 Use start of node header line as tag's position.
5010 Fix the "done" message.
5011
5012 (Info-validate): Save and restore match data around narrowing down.
5013
5014 1999-08-28 Richard M. Stallman <rms@gnu.org>
5015
5016 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
5017 On repeated call, override previous values put into
5018 minor-mode-map-alist and minor-mode-alist.
5019
5020 1999-08-28 Michael Ernst <mernst@alum.mit.edu>
5021
5022 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
5023
5024 1999-08-27 Andreas Schwab <schwab@gnu.org>
5025
5026 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
5027 from cvs update.
5028
5029 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5030
5031 * calendar/calendar.el (calendar-move-hook): New hook.
5032
5033 * calendar/cal-move.el: Call the new hook in every movement function.
5034
5035 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
5036 the right function name.
5037
5038 1999-08-26 Stephen Gildea <gildea@alum.mit.edu>
5039
5040 * time-stamp.el: Put quote-backquote around all symbol names
5041 in doc strings, for mousing.
5042 (time-stamp): Support multi-line patterns.
5043 (time-stamp-inserts-lines): New variable.
5044 (time-stamp-count): New variable.
5045 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
5046 "Thu" instead of "%a".
5047
5048 1999-08-25 Gerd Moellmann <gerd@gnu.org>
5049
5050 * simple.el (kill-word): Undo previous change.
5051
5052 1999-08-25 Gerd Moellmann <gerd@gnu.org>
5053
5054 * jit-lock.el (jit-lock-function): Extend the fontified range
5055 to the beginning of the line containing the range start and
5056 the beginning of the line following the range end.
5057
5058 1999-08-24 Dave Love <fx@gnu.org>
5059
5060 * timezone.el: Move provide to end.
5061 (timezone-parse-date): Simplify somewhat. Assume 2-digit years
5062 <70 are 2000+.
5063 (timezone-parse-time): Simplify somewhat.
5064
5065 1999-08-24 Gerd Moellmann <gerd@gnu.org>
5066
5067 * faces.el (margin): Renamed from bitmap-area.
5068
5069 1999-08-24 Alex Schroeder <alex@gnu.org>
5070
5071 * sql.el: Doc changes.
5072 (sql-sybase): Use sql-server instead of sql-database.
5073
5074 1999-08-23 Dave Love <fx@gnu.org>
5075
5076 * rect.el: Add/fix various doc strings. Add `*' to all the
5077 interactive specs.
5078
5079 1999-08-21 Gerd Moellmann <gerd@gnu.org>
5080
5081 * jit-lock.el (jit-lock-function): Use line-beginning-position.
5082 Don't unwind-protect font-lock-fontify-region.
5083
5084 * paragraphs.el (backward-kill-paragraph): Don't move
5085 point into mini-buffer prompt.
5086 (backward-kill-sentence): Ditto.
5087
5088 * simple.el (next-history-element): Use minibuffer-prompt-end.
5089 Remove test for minibuffer-prompt-in-buffer.
5090 (kill-word): Don't move point into mini-buffer prompt.
5091
5092 1999-08-21 Dave Love <fx@gnu.org>
5093
5094 * Makefile: Exclude CVS dirs like RCS.
5095
5096 1999-08-19 Dave Love <fx@gnu.org>
5097
5098 * tooltip.el (tooltip-mode): Customize this, per convention.
5099 (tooltip-active): Option deleted.
5100
5101 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize.
5102
5103 * hanoi.el, page-ext.el: Declare dynamic vars.
5104
5105 * term.el: Avoid ange-ftp related compilation warnings.
5106
5107 1999-08-18 Gerd Moellmann <gerd@gnu.org>
5108
5109 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
5110 the default so that beginners can benefit from it without
5111 searching in manuals.
5112
5113 1999-08-18 Ray Blaak <blaak@gnu.org>
5114
5115 * progmodes/delphi.el: Consider assembly sections as blocks, to
5116 indent them better. Make auto-indent on newline optional.
5117
5118 1999-08-17 Gerd Moellmann <gerd@gnu.org>
5119
5120 * bindings.el (mode-line-modified): Look up key binding for C-x
5121 C-q. If it's bound call that binding, otherwise call
5122 toggle-read-only.
5123
5124 1999-08-17 Dave Love <fx@gnu.org>
5125
5126 * info.el (info): Doc fix.
5127
5128 * finder.el (finder-known-keywords): Add `multimedia'.
5129
5130 * apropos.el: Don't capitalize custom group name.
5131
5132 * info-look.el: Remove compatibility code.
5133 (info-lookup-guess-default*): DTRT for point at start of symbol.
5134 (info-complete): Don't lose with point not at end of symbol.
5135
5136 1999-08-16 Gerd Moellmann <gerd@gnu.org>
5137
5138 * term.el (toplevel): Make face `term-default' an empty face.
5139 The code relied on the fact that Emacs ignored invalid faces in
5140 face text properties in 20.4.
5141
5142 1999-08-16 Richard M. Stallman <rms@gnu.org>
5143
5144 * subr.el (point-at-eol, point-at-bol): New aliases.
5145
5146 * simple.el: Functions reordered.
5147
5148 * rect.el (delete-rectangle-line): Use line-end-position.
5149
5150 1999-08-16 Karl Heuer <kwzh@gnu.org>
5151
5152 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
5153 here from simple.el.
5154
5155 1999-08-16 Dave Love <fx@gnu.org>
5156
5157 * mouse.el: Provide `mldrag' for compatibility.
5158 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
5159 marked obsolete.
5160
5161 * mldrag.el: Removed since the features are in mouse.el.
5162
5163 * jka-compr.el (auto-compression-mode): New variable for
5164 customization.
5165
5166 * bindings.el (mode-line-mule-info): Doc fix.
5167
5168 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
5169 name comparisons.
5170
5171 * files.el (interpreter-mode-alist): Add make, guile, clisp.
5172 (find-file): Doc fix.
5173
5174 1999-08-16 Carsten Dominik <cd@gnu.org>
5175
5176 * textmodes/reftex.el: Most of the code moved to other files.
5177 * textmodes/reftex-auc.el: New file, split out from reftex.el
5178 * textmodes/reftex-cite.el: New file, split out from reftex.el
5179 * textmodes/reftex-global.el: New file, split out from reftex.el
5180 * textmodes/reftex-index.el: New file, split out from reftex.el
5181 * textmodes/reftex-parse.el: New file, split out from reftex.el
5182 * textmodes/reftex-ref.el: New file, split out from reftex.el
5183 * textmodes/reftex-sel.el: New file, split out from reftex.el
5184 * textmodes/reftex-toc.el: New file, split out from reftex.el
5185 * textmodes/reftex-vars.el: New file, split out from reftex.el
5186 * textmodes/reftex-vcr.el: New file, split out from reftex.el
5187
5188 1999-08-16 Carsten Dominik <cd@gnu.org>
5189
5190 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
5191 conflict with pop-up-frames.
5192 (reftex-special-environment-parsers): New constant.
5193 (reftex-label-alist): car of an entry can also be a function.
5194 (reftex-what-special-env): Cew function.
5195 (reftex-label-location): Call `reftex-what-special-env'.
5196 (reftex-compile-variables): Check for symbol in
5197 `reftex-label-alist'.
5198 (reftex-what-environment): Fixed bug with stacked environments of
5199 same kind (e.g. enumerate).
5200 (reftex-process-string): Preserve default directory.
5201 (reftex-label-alist-builtin): Changed prefixes of endnote and
5202 footnote. Also the magic words.
5203 (reftex-reference): Interprete new option
5204 `reftex-fref-is-default'.
5205 (reftex-replace-prefix-escapes): Interprete new `%S' format.
5206 (reftex-toc-mouse-view-line): Command removed (had no binding).
5207 (reftex-everything-regexp): New function.
5208 (reftex-nearest-match): Made better.
5209 (reftex-toc-find-section): Use new version of
5210 `reftex-nearest-match'.
5211 (reftex-insert-docstruct): Adapted to work with the index stuff.
5212 (reftex-parse-from-file): Find index entries as well.
5213 (reftex-toc-toggle-index): New function
5214 (reftex-toc-map): `i' is now used to togle the index, File
5215 boundaries has been moved to `F'.
5216 (reftex-select-label-map): Toggling display of file boundaries is
5217 now on the `F' key, for consistency with `reftex-toc-map'.
5218 (reftex-erase-all-selection-and-index-buffers): Renamed from
5219 `reftex-erase-all-selection-buffer'. Now also kills the index
5220 buffers.
5221 (reftex-viewing-cross-references): Customization group renamed
5222 from reftex-viewing-cross-references-and-citations.
5223 (reftex-index-macro-regexp,
5224 reftex-find-index-entry-regexp-format): New variables
5225 (reftex-macros-with-index): New variable
5226 (reftex-add-index-macros): New function
5227 (reftex-renumber-simple-labels, reftex-translate): Allow for
5228 multiple labels in a single ref command.
5229 (reftex-index-support): New customization group
5230 (reftex-support-index, reftex-index-special-chars,
5231 reftex-index-macros, reftex-index-default-macro,
5232 reftex-index-default-tag, reftex-index-math-format,
5233 reftex-index-section-letters, reftex-index-include-context,
5234 reftex-index-follow-mode, reftex-index-header-face,
5235 reftex-index-section-face, reftex-index-tag-face,
5236 reftex-index-face): New options
5237 (reftex-index-map, reftex-index-menu, reftex-last-index-file,
5238 reftex-index-tag, reftex-index-return-marker,
5239 reftex-index-restriction-indicator, reftex-index-restriction-data,
5240 reftex-index-macro-regexp, reftex-index-level-re,
5241 reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
5242 reftex-everything-regexp-no-index, reftex-index-re,
5243 reftex-macros-with-index, reftex-index-macro-alist): New variables
5244 (reftex-index-help, reftex-index-macros-builtin,
5245 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
5246 reftex-query-index-macro-help): New constants
5247 (reftex-index-selection-or-word, reftex-index,
5248 reftex-default-index, reftex-update-default-index,
5249 reftex-index-complete-tag, reftex-index-select-tag,
5250 reftex-index-complete-key, reftex-index-update-taglist,
5251 reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
5252 reftex-display-index, reftex-insert-index,
5253 reftex-index-insert-new-letter, reftex-get-restriction,
5254 reftex-index-pre-command-hook, reftex-index-post-command-hook,
5255 reftex-index-show-help, reftex-index-next, reftex-index-previous,
5256 reftex-index-toggle-follow, reftex-index-toggle-context,
5257 reftex-index-view-entry, reftex-index-goto-entry-and-hide,
5258 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
5259 reftex-index-quit, reftex-index-quit-and-kill,
5260 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
5261 reftex-index-revert, reftex-index-switch-index-tag,
5262 reftex-index-restrict-to-section, reftex-index-widen,
5263 reftex-index-restriction-forward,
5264 reftex-index-restriction-backward, reftex-index-visit-location,
5265 reftex-index-analyze-entry, reftex-index-globalize,
5266 reftex-index-edit, reftex-index-toggle-range-beginning,
5267 reftex-index-toggle-range-end, reftex-index-edit-key,
5268 reftex-index-edit-attribute, reftex-index-edit-visual,
5269 reftex-index-edit-part, reftex-index-level-down,
5270 reftex-index-level-up, reftex-index-kill, reftex-index-undo,
5271 reftex-index-change-entry, reftex-index-goto-letter,
5272 reftex-add-index-macros, reftex-ensure-index-support,
5273 reftex-index-info-safe, reftex-index-info): New functions.
5274
5275
5276 1999-08-15 Richard M. Stallman <rms@gnu.org>
5277
5278 * paren.el (show-paren-mode): Support making show-paren-mode
5279 a buffer-local variable. Don't check for a window system.
5280 (show-paren-function): Check whether show-paren-function is
5281 enabled in current buffer; do the right thing if not.
5282 Don't check for a window system.
5283 (show-paren-mode): Make it a user variable.
5284
5285 * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
5286 Handle `enum' like `struct'.
5287
5288 * server.el (server-process-filter): If a client visits no buffers,
5289 close it immediately before recording it.
5290
5291 * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
5292 Optimize by calling concat just once. Handle =\n sequence.
5293 (mail-unquote-printable-region): New command.
5294 (mail-quote-printable): Make it autoload.
5295
5296 1999-08-15 Karl Heuer <kwzh@gnu.org>
5297
5298 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
5299
5300 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
5301
5302 * lisp/texinfmt.el: Handle @ifnottex.
5303
5304 1999-08-15 Eli Zaretskii <eliz@gnu.org>
5305
5306 * frame.el (blink-cursor): Don't turn on cursor blinking for
5307 ms-dos.
5308
5309 * faces.el (face-valid-attribute-values): Look in
5310 x-bitmap-file-path only for x and w32 window systems.
5311
5312 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
5313 Do that if width is nil as well.
5314 (x-display-mm-height, x-display-mm-width): Update values.
5315 (x-colors): Compute the list from msdos-color-values.
5316 (x-select-enable-clipboard): Doc fix.
5317 (x-frob-font-weight, x-font-family-list): New functions.
5318
5319 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk>
5320
5321 * window.el (shrink-window-if-larger-than-buffer): Don't try to
5322 back up from beginning of buffer.
5323
5324 1999-08-13 Karl Heuer <kwzh@gnu.org>
5325
5326 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
5327
5328 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>
5329
5330 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G
5331 doomsday clock, speed control is added and changes are made to
5332 allow large numbers of rings: rings now show the whole ring
5333 number, not just the last digit; consecutive rings are allowed to
5334 be the same size when necessary to fit all the rings in the
5335 window; and poles can be oriented horizontally. Face support is
5336 thrown in gratuitously.
5337 (hanoi): Changed default number of rings back to 3.
5338 (hanoi-unix, hanoi-unix-64): New commands
5339 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
5340 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
5341 hanoi-odd-ring-face): New variables.
5342 (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
5343 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
5344 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
5345 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
5346 (hanoi-topos, hanoi-draw-ring): Removed.
5347
5348 1999-08-12 Gerd Moellmann <gerd@gnu.org>
5349
5350 * faces.el (face-valid-attribute-values): Return an alist for
5351 families on ttys.
5352 (face-read-integer): Handle unspecified face attributes. Add
5353 completion for `unspecified'.
5354 (read-face-attribute): Handle unspecified font attributes.
5355 (face-valid-attribute-values): Add `unspecified' to lists so that
5356 it can be chosen via completion.
5357 (face-read-string): Don't recognize "none" as input.
5358
5359 1999-08-10 Dave Love <fx@gnu.org>
5360
5361 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
5362 string.
5363
5364 * sun-curs.el: Require sun-fns.
5365
5366 1999-08-10 Dave Love <fx@gnu.org>
5367
5368 * autorevert.el (auto-revert-mode): Add autoload cookie.
5369
5370 * hscroll.el, auto-show.el: Files deleted -- we have built-in
5371 hscroll.
5372
5373 * simple.el (hscroll-step, hscroll-point-visible)
5374 (hscroll-window-column): Remove now we have the mentioned real
5375 horizontal autoscrolling.
5376
5377 1999-08-10 Richard M. Stallman <rms@gnu.org>
5378
5379 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
5380 control use of -f option.
5381 (mail-specify-envelope-from): New variable.
5382 (mail-from-style): Doc fix.
5383
5384 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
5385 (easy-menu-get-map): New arg TO-MODIFY helps choose
5386 between local and global maps.
5387 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
5388 (easy-menu-change): Doc fix.
5389
5390 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
5391 (info-lookup-guess-default): Simplified and cleaned up.
5392 (info-lookup-guess-default*): Preserve point.
5393
5394 * view.el (view-mode-disable): If buffer-read-only is nil,
5395 don't change it.
5396
5397 * files.el (after-find-file): Disable View mode if buffer is no
5398 longer read-only.
5399
5400 * view.el (view-mode-enable, view-mode-disable):
5401 Call force-mode-line-update.
5402
5403 1999-08-10 Karl Heuer <kwzh@gnu.org>
5404
5405 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
5406 * array.el, play/landmark.el, international/latin-3.el: Likewise.
5407 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
5408
5409 1999-08-10 Alex Schroeder <asc@bsiag.com>
5410
5411 * ansi-color.el (ansi-color-to-text-properties): Added New state 5
5412 to prevent m-eating-bug.
5413
5414 1999-08-10 Eli Zaretskii <eliz@gnu.org>
5415
5416 * term/pc-win.el (msdos-bg-mode): Remove. Call
5417 frame-set-background-mode instead. All callers changed.
5418 (msdos-face-setup): Don't force color display parameter, it is set
5419 by frame-set-background-mode.
5420 (make-msdos-frame): Call x-handle-reverse-video and
5421 face-set-after-frame-default. Delete frame if creation failed.
5422
5423 * faces.el (face-set-after-frame-default): Don't call
5424 make-face-x-resource-internal for the pc window-system.
5425
5426 1999-08-10 Dave Love <fx@melange.gnu.org>
5427
5428 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
5429 case with no docstring specially.
5430
5431 1999-08-09 Eli Zaretskii <eliz@gnu.org>
5432
5433 * complete.el (PC-do-completion): If completing on file name,
5434 reproduce str by concatenating its directory and basename parts.
5435
5436 1999-08-07 Dave Love <fx@gnu.org>
5437
5438 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid
5439 unibyte to multibyte conversion of search-forward (from Handa),
5440 but avoid the replacement if the language is Latin-N.
5441
5442 1999-08-06 Richard Stallman <rms@gnu.org>
5443
5444 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
5445 of eval-buffer.
5446
5447 * international/mule.el (load-with-code-conversion):
5448 Pass t to eval-buffer for DO-ALLOW-PRINT.
5449
5450 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
5451
5452 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
5453 of filenames and attributes.
5454 (ls-lisp-insert-directory): Use directory-files-and-attributes
5455 for speed.
5456
5457 1999-08-05 Dave Love <fx@gnu.org>
5458
5459 * auto-show.el (auto-show-mode): Fix :set.
5460
5461 * widget.el (define-widget-keywords): Make dummy definition and
5462 comment-out its use.
5463
5464 1999-08-04 Richard Stallman <rms@gnu.org>
5465
5466 * progmodes/tcl.el: Customized.
5467
5468 * sql.el (sql-accumulate-and-indent): Instead of testing
5469 whether this is Emacs 20 before calling comint-accumulate,
5470 test whether comint-accumulate is defined.
5471
5472 1999-08-04 Dave Love <fx@gnu.org>
5473
5474 * sgml-mode.el: Require outline when compiling.
5475 (sgml-mode-hook, html-mode-hook): Customize.
5476 (sgml-validate-command): Fix :version.
5477 (html-autoview-mode): Doc fix.
5478
5479 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
5480 nothing in Latin-N environment.
5481
5482 * info.el (Info-find-node): Call info-initialize here.
5483 (info): Not here.
5484 (Info-file-list-for-emacs): Add message, dired-x, c, viper.
5485
5486 1999-08-04 Richard Stallman <rms@gnu.org>
5487
5488 * ansi-color.el: New file.
5489
5490 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
5491
5492 * dired.el (dired-string-replace-match): Return `nil' when no match
5493 found with global search.
5494
5495 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
5496 * terminal.el (te-terminfo-directory):
5497 * mail/mailpost.el (post-mail-send-it):
5498 * mail/metamail.el (metamail-region):
5499 * progmodes/ada-mode.el (ada-tmp-directory):
5500 Use temporary-file-directory.
5501
5502 * progmodes/compile.el (compilation-parsing-end,compilation-setup)
5503 (compilation-filter, compilation-forget-errors)
5504 (compilation-parse-errors): Use a marker instead of an integer for
5505 `compilation-parsing-end'.
5506
5507 * progmodes/diff.el (diff-parse-differences):
5508 Use a marker instead of an integer for `compilation-parsing-end'.
5509 * textmodes/tex-mode.el (tex-compilation-parse-errors):
5510 Use a marker instead of an integer for `compilation-parsing-end'.
5511
5512 1999-08-03 Richard Stallman <rms@gnu.org>
5513
5514 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
5515 (Buffer-menu-mode): Doc fix.
5516 (Buffer-menu-view): New command.
5517 (Buffer-menu-view-other-window): New command.
5518
5519 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com>
5520
5521 * replace.el (query-replace-regexp-eval)
5522 (replace-eval-replacement, replace-loop-through-replacements)
5523 (replace-match-string-symbols): New functions.
5524 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
5525 Use replace-loop-through-replacements.
5526
5527 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk>
5528
5529 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
5530 (5x5): Doc fix.
5531
5532 1999-08-03 Dave Love <fx@gnu.org>
5533
5534 * fortran.el (fortran-indent-new-line): Make it an alias
5535 for reindent-then-newline-and-indent.
5536
5537 1999-08-03 Didier Verna <verna@inf.enst.fr>
5538
5539 * rect.el: All functions rewritten, except when noted above
5540 their declaration. Below is a list of interface changes.
5541 (apply-on-rectangle): New function, mostly replaces
5542 `operate-on-rectangle'. All callers changed.
5543 (move-to-column-force): Pass new second argument to `move-to-column'.
5544 (kill-rectangle): Added optional prefix arg to fill lines.
5545 (delete-rectangle): Ditto.
5546 (delete-whitespace-rectangle): Ditto.
5547 (delete-extract-rectangle): Ditto.
5548 (open-rectangle): Ditto.
5549 (clear-rectangle): Ditto.
5550 (delete-whitespace-rectangle-line): New function.
5551 (delete-rectangle-line): Added third arg FILL.
5552 (delete-extract-rectangle-line): Ditto.
5553 (open-rectangle-line): Ditto.
5554 (clear-rectangle-line): Ditto.
5555
5556 1999-08-03 Ray Blaak <blaak@gnu.org>
5557
5558 * progmodes/delphi.el: New file.
5559
5560 1999-08-02 Richard Stallman <rms@gnu.org>
5561
5562 * textmodes/outline.el (outline-previous-heading): New function.
5563 (outline-up-heading-all): Use outline-previous-heading.
5564 (outline-next-heading): Delete definition inserted yesterday.
5565
5566 1999-08-01 Richard Stallman <rms@gnu.org>
5567
5568 * textmodes/outline.el (outline-next-heading): New function.
5569 (outline-up-heading-all): New function.
5570 (outline-font-lock-level): Using outline-up-heading-all.
5571 Tell outline-back-to-heading to accept invisible headings.
5572
5573 * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
5574
5575 * mail/mh-utils.el (mh-find-path-run): New variable.
5576 (mh-find-path): Test and set that.
5577 Set mail-user-agent only the first time this function is run.
5578 (mail-user-agent): Defvar deleted.
5579
5580 * info.el (info-initialize): New function.
5581 (info): Call info-initialize.
5582 (Info-directory-list): Initialize to nil,
5583 so info-initialize will set it up for real.
5584
5585 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5586
5587 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
5588 does not interpret a time as the year in a day-month entry.
5589
5590 * calendar/diary-lib.el: Change syntax table entry for colon in
5591 the diary as part of the european-date-diary-pattern fix.
5592
5593 1999-08-01 Eli Zaretskii <eliz@gnu.org>
5594
5595 * international/mule.el (set-auto-coding): Allow whitespace before
5596 and after the "variable: value" pair.
5597
5598 1999-07-30 Ken'ichi Handa <handa@gnu.org>
5599
5600 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
5601 (default-sendmail-coding-system): Doc-string fixed.
5602
5603 1999-07-30 Dave Love <fx@gnu.org>
5604
5605 * subr.el (assoc-delete-all): New function, renamed from
5606 frame-delete-all.
5607
5608 * frame.el: Change comments to doc strings and other doc fixes.
5609 (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
5610 Callers changed.
5611 (set-background-color, set-foreground-color, set-cursor-color)
5612 (set-mouse-color, set-border-color): Offer completion of colours.
5613 (cursor): Add :version to defgroup.
5614
5615 * facemenu.el (list-colors-display): Make it work on ttys.
5616 (facemenu-read-color): Likewise.
5617
5618 1999-07-30 Richard M. Stallman <rms@gnu.org>
5619
5620 * frame.el (frame-notice-user-settings): If background
5621 color has been changed, update background-mode from it,
5622 then update faces.
5623
5624 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com>
5625
5626 * net-utils.el (finger): Don't do indirect fingering.
5627
5628 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5629
5630 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
5631 rules. Add separator at end of holidays.
5632 (cal-tex-rules): New customizable variable.
5633 (cal-tex-latexify-list): Add optional parameter to put separator
5634 at end.
5635
5636 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu>
5637
5638 * textmodes/fill.el (fill-individual-paragraphs): Calculate new
5639 fill prefix on each line while looping to the end of paragraph.
5640 End paragraph if it's longer than the existing fill prefix.
5641
5642 * textmodes/fill.el (fill-context-prefix): Doc fix.
5643
5644 1999-07-30 Dave Love <fx@gnu.org>
5645
5646 * font-lock.el (jit-lock): Fix :load, add :version.
5647
5648 1999-07-30 Eli Zaretskii <eliz@gnu.org>
5649
5650 * term/pc-win.el (msdos-face-setup): Register standard colors in
5651 Vface_tty_color_alist.
5652 (face-color-supported-p, face_color_gray_p): New functions.
5653
5654 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
5655 is bound.
5656
5657 * startup.el (command-line): Don't register default colors for
5658 MSDOS window-system.
5659
5660 1999-07-29 Dave Love <fx@gnu.org>
5661
5662 * f90.el (f90-mode-syntax-table): Change backslash to escape, not
5663 charquote.
5664
5665 * lisp-mode.el (eval-defun): Re-written to avoid
5666 capturing variables.
5667
5668 * picture.el (picture-beginning-of-line): Don't call
5669 hscroll-point-visible now we have real autoscrolling.
5670 (picture-end-of-line, picture-newline, picture-open-line):
5671 Likewise.
5672
5673 * international/latin-8.el: New file.
5674 * international/latin-9.el: New file.
5675
5676 1999-07-28 Dave Love <fx@gnu.org>
5677
5678 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
5679
5680 * msb.el: Require cl only when compiling.
5681 (msb--home-dir): Deleted.
5682 (msb--format-title): Use abbreviate-file-name.
5683 (msb--choose-file-menu): Simplify string comparison.
5684
5685 1999-07-28 Gerd Moellmann <gerd@gnu.org>
5686
5687 * faces.el (toolbar): Add face definition for mono displays.
5688
5689 1999-07-27 Richard M. Stallman <rms@gnu.org>
5690
5691 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
5692
5693 * frame.el (frame-initialize): When setting frame-initial-frame-alist,
5694 force copying of default-frame-alist.
5695
5696 1999-07-26 Ken'ichi Handa <handa@gnu.org>
5697
5698 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
5699
5700 1999-07-26 Richard M. Stallman <rms@gnu.org>
5701
5702 * frame.el (set-mouse-color): If new color is nil,
5703 really respecify the current color.
5704
5705 1999-07-26 Gerd Moellmann <gerd@gnu.org>
5706
5707 * faces.el (bitmap-area): Change background of face `bitmap-area'
5708 to white for mono displays.
5709
5710 1999-07-26 Kenichi Handa <handa@etl.go.jp>
5711
5712 * international/ccl.el (ccl-embed-symbol): New function.
5713 (ccl-program-p): Deleted. Now it's implemented in C code.
5714 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
5715 (ccl-compile-translate-character): Likewise.
5716 (ccl-compile-map-single): Likewise.
5717 (ccl-compile-multiple-map-function): Likewise.
5718 (declare-ccl-program): Doc-string modified.
5719 (check-ccl-program): Check compiled CCL code by ccl-program-p.
5720
5721 1999-07-25 Ken'ichi Handa <handa@etl.go.jp>
5722
5723 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
5724
5725 1999-07-25 Markus Rost <rost@gnu.org>
5726
5727 * cus-edit.el (custom-save-variables, custom-save-faces): Sort
5728 the entries to make custom-file more readable.
5729
5730 1999-07-25 Richard M. Stallman <rms@gnu.org>
5731
5732 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
5733
5734 * emacs-lisp/edebug.el: Delete compatibility code.
5735 (edebug-next-token-class): If . is followed by a digit,
5736 return `symbol' for the token class.
5737
5738 * startup.el (command-line): If we don't find the user's init file,
5739 set user-init-file to nil.
5740
5741 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5742
5743 * info-look.el (info-lookup-interactive-arguments): Add optional
5744 argument query for new choice of help mode.
5745 (info-lookup-symbol): Use it.
5746 (info-lookup-file): Ditto.
5747 (info-lookup): Don't switch to other window, if already in Info
5748 buffer.
5749
5750 1999-07-23 Dave Love <fx@gnu.org>
5751
5752 * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
5753 syntax.
5754 (fortran-fontify-string, fortran-match-!-comment): Deleted.
5755 (fortran-font-lock-syntactic-keywords): New variable.
5756 (fortran-mode): Use it.
5757 (fortran-font-lock-keywords-1): Don't do comments.
5758 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
5759 match data.
5760
5761 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
5762
5763 * msb.el (msb-menu-bar-update-buffers): Renamed from
5764 menu-bar-update-buffers.
5765 (msb-custom-set, msb--toggle-menu-type): Call
5766 msb-menu-bar-update-buffers.
5767 (msb-mode): Revise the hook setting.
5768
5769 * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
5770
5771 1999-07-23 Gerd Moellmann <gerd@gnu.org>
5772
5773 * font-lock.el, help.el, simple.el: Re-integrate previously
5774 described changes that were lost due to errors while checking them
5775 in.
5776
5777 1999-07-23 Kevin Blake <kblake@ticnet.com>
5778
5779 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
5780
5781 1999-07-23 Ken'ichi Handa <handa@etl.go.jp>
5782
5783 * international/encoded-kb.el
5784 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
5785 but push it to unread-command-events.
5786 (encoded-kbd-self-insert-iso2022-8bit): Likewise.
5787 (encoded-kbd-self-insert-sjis): Likewise.
5788 (encoded-kbd-self-insert-big5): Likewise.
5789
5790 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
5791 before left margin and fill-prefix by fill-find-break-point.
5792
5793 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
5794
5795 * info-look.el (info-lookup-setup-mode): Don't give up, if
5796 info-lookup-make-completions returns an error.
5797 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
5798 name latex, not latex2e.
5799
5800 1999-07-21 Richard M. Stallman <rms@gnu.org>
5801
5802 * replace.el (perform-replace): Turn off case-fold-search
5803 if FROM-STRING argument has uppercase in it.
5804
5805 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5806
5807 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
5808 mode is on. Don't use end of changed text.
5809
5810 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5811
5812 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
5813 (cl-hash-table-p): Renamed from hash-table-p.
5814 (cl-hash-table-count): Renamed from hash-table-count.
5815 (maphash): Alias to cl-maphash removed.
5816 (gethash): Likewise.
5817 (puthash): Likewise.
5818 (remhash): Likewise.
5819 (clrhash): Likewise.
5820
5821 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5822
5823 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
5824 third arg non-nil. See comment there why this isn't a good idea.
5825
5826 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5827
5828 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
5829
5830 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
5831 sit-for with 3rd arg non-nil to prevent redisplay.
5832
5833 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5834
5835 * image.el (image-type-from-file-header): If file doesn't
5836 have a directory part, add data-directory.
5837
5838 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5839
5840 * tooltip.el (tooltip-gud-tips-p): Set default to nil.
5841 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
5842 motion handling when tooltip-gud-tips-p is nil.
5843
5844 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5845
5846 * tooltip.el (tooltip-mode): Don't use `plusp'.
5847 (tooltip-active): Use initial value of nil.
5848
5849 * jit-lock.el (jit-lock-mode): Don't use `plusp'.
5850
5851 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5852
5853 * bindings.el (make-mode-line-mouse-sensitive): Add key
5854 definitions for `top-line'.
5855
5856 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5857
5858 * faces.el (top-line): New face.
5859
5860 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5861
5862 * image.el (image-type-regexps): Add regexp for PS files.
5863
5864 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5865
5866 * faces.el (set-face-attribute): Fix wrong handling of frame
5867 begin equal to t.
5868
5869 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5870
5871 * image.el (image-type-regexps): Add PNG format.
5872
5873 1999-07-21 Dave Love <fx@gnu.org>
5874
5875 * bindings.el (mode-line-modified): New variable.
5876 (mode-line-mode-menu-1): Switch to appropriate window before
5877 showing menu.
5878
5879 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5880
5881 * faces.el (face-underline): Removed.
5882 (face-underline-color): Ditto.
5883
5884 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5885
5886 * faces.el (face-x-resources): Fix typo.
5887
5888 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5889
5890 * faces.el: Remove handling of `:relief', extend handling of
5891 `:box'.
5892 (frame-set-background-mode): Choose new defface specs after
5893 frame parameters have changed.
5894
5895 * cus-face.el: Ditto.
5896
5897 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5898
5899 * custom.el (defface): Extend documentation to include new
5900 face attributes.
5901
5902 * cus-face.el (custom-face-attributes): Add overline,
5903 strike-through, box.
5904
5905 * faces.el (face-valid-attribute-values): Handle overline,
5906 strike-through, box.
5907 (face-attribute-name-alist): Add pairs for new face attributes.
5908 (describe-face): Handle new face attributes.
5909
5910 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5911
5912 * faces.el (face-x-resources): Add overline, strike-through, box.
5913
5914 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5915
5916 * enriched.el (enriched-translations): Add `display' and
5917 "x-display".
5918 (enriched-handle-display-prop): New.
5919 (enriched-decode-display-prop): New.
5920
5921 * format.el (top-level): Give `display' property
5922 `format-list-atomic-p.
5923 (format-annotate-single-property-change): Test that property.
5924 If present, treat list property values like atoms.
5925
5926 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5927
5928 * cus-face.el (custom-face-attributes): Use `choice' everywhere
5929 so that "*" can be entered.
5930
5931 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5932
5933 * cus-face.el (custom-face-attributes): Don't use `#''.
5934
5935 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5936
5937 * cus-face.el (custom-face-attributes): Return underline
5938 face attribute directly from the second lambda of underline.
5939
5940 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5941
5942 * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
5943
5944 * frame.el (after-setting-font-hooks): New variable.
5945 (set-frame-font): Run those hooks.
5946
5947 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
5948
5949 * faces.el (set-face-attribute): Fix doc string.
5950
5951 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5952
5953 * cus-face.el (custom-face-attributes): Accept color name.
5954
5955 * faces.el (face-underline-p): Accept unspecified underlining.
5956 (face-underline): Ditto. Fix doc string.
5957
5958 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5959
5960 * faces.el (face-underline-color): New function.
5961
5962 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
5963
5964 * cus-face.el (custom-face-attributes): Support underline coloring.
5965 Added slot to choose a color.
5966
5967 * faces.el (face-underline): New function.
5968 (face-underline-p): Support underline coloring.
5969 Return nil only if the underline attribute is 'normal.
5970 (set-face-underline): New function.
5971 (face-valid-attribute-values): Support underline coloring.
5972
5973 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5974
5975 * image.el (insert-image): Use `display' instead of `glyph'
5976 as text property name.
5977 (put-image): Ditto.
5978 (image-type-from-file-header): Use insert-file-contents-literally.
5979
5980 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5981
5982 * easymenu.el (easy-menu-do-add-item): Don't use the empty
5983 string to indicate separators.
5984
5985 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5986
5987 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
5988 instead of message-log.
5989
5990 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5991
5992 * faces.el (bitmap-area): New face.
5993
5994 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5995
5996 * image.el (insert-image): New.
5997
5998 1999-07-21 Gerd Moellmann <gerd@gnu.org>
5999
6000 * frame.el (blink-cursor): Set the symbol's value.
6001 (show-trailing-whitespace): Change group to font-lock.
6002
6003 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6004
6005 * jit-lock.el: New.
6006 * font-lock.el: Add jit-mode as new support mode.
6007
6008 * font-lock.el (font-lock-fontify-keywords-region): Stop when
6009 reaching end instead of letting re-search-forward signal an error.
6010 (demand-lock-mode): New.
6011 (font-lock-turn-on-thing-lock): Add demand-lock-mode.
6012 (font-lock-turn-off-thing-lock): Ditto.
6013 (font-lock-after-fontify-buffer): Ditto.
6014 (font-lock-after-unfontify-buffer): Ditto.
6015
6016 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6017
6018 * gs.el: New file.
6019
6020 * startup.el (command-line-1): Activate tooltip mode if
6021 interactive.
6022
6023 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6024
6025 * faces.el (toolbar): Grey default background.
6026 (modeline): Ditto.
6027
6028 * image.el (image-type-regexps): New.
6029 (image-type-from-file-header): New.
6030 (create-image): Call it.
6031
6032 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6033
6034 * image.el: New file.
6035
6036 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6037
6038 * bindings.el (mode-line-format): Replace `mode-name' with
6039 `(:eval mode-line-mode-name)'.
6040 (mode-line-mode-name): New.
6041 (make-mode-line-mouse-sensitive): Don't change default value
6042 of `mode-name'.
6043
6044 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6045
6046 * tooltip.el: New file.
6047
6048 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6049
6050 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
6051 instead of mouse-3 to pop up menus.
6052 (mode-line-kill-buffer): Removed.
6053 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
6054 buffer name.
6055 (mode-line-buffer-menu-1): Removed.
6056
6057 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
6058
6059 * bindings.el (mode-line-buffer-identification-keymap): New.
6060 (mode-line-buffer-menu-keymap): New.
6061 (mode-line-mode-menu-keymap): New.
6062 (mode-line-unbury-buffer): New.
6063 (mode-line-other-buffer): New.
6064 (mode-line-kill-buffer): New.
6065 (mode-line-buffer-menu-1): New.
6066 (mode-line-mode-menu-1): New.
6067 (make-mode-line-mouse-sensitive): New.
6068
6069 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6070
6071 * help.el (describe-key-briefly): Handle mode line strings
6072 with local-map properties.
6073 (describe-key): Ditto.
6074 (mode-line-key-binding): New.
6075
6076 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6077
6078 * scroll-bar.el (scroll-bar-timer): New.
6079 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
6080
6081 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6082
6083 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
6084 and `bottom'.
6085
6086 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6087
6088 * scroll-bar.el (scroll-bar-toolkit-scroll): New.
6089 (global): Use different key bindings if using tookit scroll bars.
6090
6091 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6092
6093 * faces.el (modeline): Define mode line face with relief for
6094 class color, only.
6095 (toolbar): New face.
6096
6097 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6098
6099 * frame.el (frame-initialize): Set frame-creation-function to
6100 tty-create-frame-with-faces.
6101
6102 * faces.el (frame-set-background-mode): Make it work for
6103 window-system nil.
6104
6105 * faces.el (tty-create-frame-with-faces): New.
6106 (face-set-after-frame-default): Make it work for TTY frames.
6107
6108 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6109
6110 * faces.el (face-valid-attribute-values): Use tty-defined-colors.
6111 Return a list of one font family for TTYs. Don't return bitmap
6112 file paths for TTY frames.
6113
6114 * faces.el: Add face specs for tty displays to basic faces.
6115
6116 * font-lock.el (font-lock-comment-face): Add spec for color tty.
6117 (font-lock-string-face): Ditto.
6118 (font-lock-keyword-face): Ditto.
6119 (font-lock-builtin-face): Ditto.
6120 (font-lock-function-name-face): Ditto.
6121 (font-lock-variable-name-face): Ditto.
6122 (font-lock-type-face): Ditto.
6123 (font-lock-constant-face): Ditto.
6124 (font-lock-warning-face): Ditto.
6125
6126 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6127
6128 * startup.el (command-line): Register default tty colors.
6129
6130 * faces.el (face-spec-set-match-display): Recognize `type tty'.
6131
6132 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6133
6134 * faces.el (modeline): For X frames, use a modeline with relief.
6135
6136 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6137
6138 * faces.el (frame-update-faces): Copied from 20.2.
6139 (frame-update-face-colors): Ditto. Code removed that isn't
6140 applicable in the new face implementation.
6141
6142 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6143
6144 * frame.el (show-trailing-whitespace): New.
6145
6146 * faces.el (trailing-whitespace): New basic face.
6147
6148 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6149
6150 * cus-face.el (custom-facep): Always define as alias for facep.
6151
6152 * cus-face.el (custom-face-attributes): Use choice widgets.
6153 Remove :bold and :italic.
6154
6155 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6156
6157 * faces.el (face-charset-registries): Removed since fontset.el
6158 is no always loaded.
6159
6160 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6161
6162 * faces.el (internal-get-face): Added as obsolete function for
6163 compatibility.
6164
6165 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6166
6167 * frame.el (blink-cursor-end): Call show-cursor.
6168 (blink-cursor-mode): Ditto.
6169
6170 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6171
6172 * faces.el (face-spec-reset-face): Reset all attributes to
6173 `unspecified'.
6174 (face-spec-set): Use it.
6175
6176 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6177
6178 * faces.el (read-all-face-attributes): Bug fix.
6179 (face-read-integer): Allow nil default value.
6180 (face-valid-attribute-values): Use symbol names of attribute
6181 values for completion list.
6182
6183 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6184
6185 * faces.el (internal-find-face): Define for compatibility with
6186 20.2.
6187 (face-id): Likewise.
6188
6189 * faces.el (face-id): Return the ID of a realized face for ASCII.
6190
6191 * fontset.el (x-charset-registries): Removed. Now in faces.el.
6192 (x-complement-fontset-spec): Use face-charset-registries.
6193
6194 * faces.el (face-font-selection-order): Set font selection order
6195 from Lisp.
6196 (face-alternative-font-family-alist): Set alternative font
6197 families from Lisp.
6198
6199 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6200
6201 * faces.el (set-face-charset-registries): Set symbol value.
6202
6203 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6204
6205 * faces.el (face-set-after-frame-default): Call function
6206 internal-merge-in-global-face.
6207
6208 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6209
6210 * faces.el (face-list): Return symbols from face-global-alist.
6211
6212 * faces.el (face-list): Return a copy of the face name list so
6213 that it cannot be modified from outside (facemenu.el uses
6214 nreverse, for example).
6215
6216 * cus-face.el (custom-face-attributes): Add :bold and :italic
6217 for compatibility with old code.
6218
6219 * faces.el (set-face-attributes-from-resources): Additional
6220 frame parameter.
6221 (make-face-x-resource-internal): Set attributes from resources
6222 for a given frame or all frames.
6223
6224 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6225
6226 * faces.el (all-faces): Removed.
6227
6228 * custom.el (defface): Add new face attributes to function
6229 comment.
6230
6231 * font-lock.el (font-lock-comment-face): Use new face attribute
6232 names.
6233 (font-lock-string-face): Ditto.
6234 (font-lock-keyword-face): Ditto.
6235 (font-lock-builtin-face): Ditto.
6236 (font-lock-function-name-face): Ditto.
6237 (font-lock-variable-name-face): Ditto.
6238 (font-lock-type-face): Ditto.
6239 (font-lock-reference-face): Ditto.
6240 (font-lock-warning-face): Ditto.
6241 ((boundp 'font-lock-face-attributes)): Ditto.
6242
6243 * cus-face.el (custom-face-attributes): Use new face attributes.
6244
6245 * faces.el (set-face-attribute-from-resource): Initialize
6246 from resources only for X and W32.
6247
6248 * cus-face.el (custom-declare-face): Don't make frame-local
6249 faces.
6250
6251 * faces.el (describe-face): Use princ instead of insert.
6252
6253 * faces.el: Add XLFD manipulation functions from 20.2 again
6254 because fontset.el uses them.
6255 (face-set-after-frame-default): Add empty definition.
6256
6257 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6258
6259 * faces.el (make-face): Correct typo.
6260 (set-face-attribute-from-resource): Use let*.
6261 (face-underline-p): Correct typo.
6262 (face-inverse-video-p): Ditto.
6263 (set-face-stipple): Ditto.
6264 (face-read-string): Make completion-list optional parameter.
6265
6266 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6267
6268 * faces.el (face-charset-registries): Alist mapping charset
6269 symbols to registries and encoding.
6270
6271 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6272
6273 * frame.el (blink-cursor-mode): Use interactive spec "P".
6274
6275 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6276
6277 * frame.el (blink-cursor-mode): Function to toggle blinking cursor
6278 mode. The cursor of selected_window blinks if the mode is enabled.
6279
6280 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6281
6282 * simple.el (next-history-element): Set point to the end of the
6283 prompt if minibuffer-prompt-in-buffer.
6284
6285 1999-07-21 Gerd Moellmann <gerd@gnu.org>
6286
6287 * faces.el (x-font-regexp): Add sub-expression parentheses for
6288 several font name components.
6289
6290 1999-07-21 Gerd Moellmann <gerd@acm.org>
6291
6292 * faces.el (set-face-relief): Use index 12 for relief.
6293 (face-fill-in): Set relief from data.
6294 (internal-make-face): Init relief to zero.
6295
6296 * faces.el (face-spec-set): Call modify-face with additional
6297 parameters for relief and fixed-p.
6298
6299 1999-07-21 Gerd Moellmann <gerd@acm.org>
6300
6301 * cus-face.el: ':fixed and ':relief added.
6302
6303 * faces.el (describe-face): Add fixed font attribute and relief.
6304 (face-attr-match-p): Ditto.
6305 (face-attr-construct): Ditto.
6306 (face-spec-set): Ditto.
6307
6308 1999-07-21 Gerd Moellmann <gerd@acm.org>
6309
6310 * faces.el (internal-make-face): Function to create a Lisp vector
6311 suitable for representing a face.
6312 (make-face): Use it instead of make-vector.
6313 (x-create-frame-with-faces): Use it instead of vector.
6314 (internal-facep): Increase vector size to 14.
6315 (internal-make-face): Ditto.
6316 (face-relief): Access relief thickness.
6317 (face-fixed-p): Access fixed font attribute.
6318 (set-face-fixed-p): Set fixed font attribute.
6319 (set-face-relief): Set relief attribute.
6320 (internal-face-interactive-int): Read int attribute of face.
6321 (modify-face): Add fixed-p and relief parameters.
6322 (copy-face): Handle fixed-p and relief.
6323 (face-equal): Compare fixed-p and relief.
6324 (face-differs-from-default-p): Ditto.
6325 (face-nontrivial-p): Add fixed-p and relief.
6326
6327 1999-07-21 Gerd Moellmann <gerd@acm.org>
6328
6329 * faces.el (eval-when-compile): Add set-face-shadow-thickness.
6330 (internal-facep): Increase vector size.
6331 (make-face): Ditto.
6332 (face-shadow-thickness): Added.
6333 (set-face-shadow-thickness): Added.
6334 (modify-face): Add optional shadow-thickness parameter.
6335 (make-face-x-resource-internal): Add shadows.
6336 (copy-face): Ditto.
6337 (face-equal): Ditto.
6338 (face-differs-from-default-p): Ditto.
6339 (face-nontrivial-p): Ditto.
6340 (face-attr-match-p): Ditto.
6341 (face-attr-construct): Ditto.
6342 (face-spec-set): Ditto.
6343 (face-fill-in): Ditto.
6344
6345 1999-07-21 Gerd Moellmann <gerd@acm.org>
6346
6347 * bench.el (bench-mark-split-window): New bench mark.
6348
6349 1999-07-21 Gerd Moellmann <gerd@acm.org>
6350
6351 * faces.el (set-face-font): Don't pass default font to
6352 x-resolve-font so that font will not have to be of the same
6353 size.
6354
6355 1999-07-20 Dave Love <fx@gnu.org>
6356
6357 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
6358 unconditionally t.
6359
6360 1999-07-20 Karl Heuer <kwzh@gnu.org>
6361
6362 * font-lock.el (c++-font-lock-extra-types): Add "type_info".
6363
6364 1999-07-20 Dave Love <fx@gnu.org>
6365
6366 * help.el (describe-variable): Fix test for customizability.
6367
6368 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
6369 Check for readonly buffer in interactive spec.
6370 (zap-to-char, kill-line, kill-region, comment-region, kill-word)
6371 (backward-kill-word): Add * to interactive spec.
6372
6373 * underline.el (underline-region, ununderline-region): Add * to
6374 interactive spec.
6375
6376 * fill.el (canonically-space-region, justify-current-line): Add *
6377 to interactive spec.
6378 (fill-region-as-paragraph, fill-paragraph, fill-region)
6379 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
6380 readonly buffer in interactive spec.
6381
6382 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
6383 (backward-kill-sentence, kill-sentence): Add * to interactive
6384 spec.
6385
6386 1999-07-19 Richard M. Stallman <rms@gnu.org>
6387
6388 * dired-aux.el (dired-do-shell-command): Doc fix.
6389
6390 * shell.el (shell-unquote-argument): New function.
6391 (shell-directory-tracker): Use shell-unquote-argument.
6392 * comint.el (comint-arguments): Handle \ followed by space or tab.
6393
6394 1999-07-19 John Wiegley <jwiegley@borland.com>
6395
6396 * term.el (ansi-term-fg-faces-vector): Added support for ANSI
6397 color codes 39 and 49, which by the way lynx uses them seem to
6398 mean "foreground reset" and "background reset".
6399
6400 1999-07-19 Karl Heuer <kwzh@gnu.org>
6401
6402 * font-lock.el (c++-keywords): Add "typeid".
6403
6404 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
6405 selects no font, treat that as zero selections, not one.
6406
6407 1999-07-19 Dave Love <fx@gnu.org>
6408
6409 * info.el (Info-search): Don't lose with empty regexp.
6410
6411 * version.el: Cater for (free) `ident' program, not `which'.
6412
6413 * hl-line.el: New file.
6414
6415 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
6416 for modes which don't define menus.
6417
6418 1999-07-16 Richard M. Stallman <rms@gnu.org>
6419
6420 * webjump.el (webjump-sample-sites): Update some URLs.
6421
6422 1999-07-14 Richard Stallman <rms@gnu.org>
6423
6424 * Version 20.4 released.
6425
6426 1999-07-14 Andreas Schwab <schwab@gnu.org>
6427
6428 * compare-w.el (compare-windows): Try to find the next window in
6429 the current frame before looking at the other frames.
6430
6431 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
6432
6433 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
6434 Use cyrillic-jcuken as default input method.
6435
6436 1999-07-12 Richard Stallman <rms@gnu.org>
6437
6438 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
6439 Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
6440
6441 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
6442 (ispell-local-dictionary-alist): Add koi8-r for character set.
6443
6444 * textmodes/flyspell.el (flyspell-get-word):
6445 Add special handling for when ispell-otherchars is empty.
6446
6447 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no>
6448
6449 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
6450 when having nested functons.
6451 (pascal-indent-nested-functions) (pascal-indent-line)
6452 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
6453 indenting nested functions.
6454
6455 1999-07-09 Richard Stallman <rms@gnu.org>
6456
6457 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
6458
6459 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no>
6460
6461 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
6462 the `end' keyword was in the very beginning of the buffer.
6463
6464 1999-07-08 Richard Stallman <rms@gnu.org>
6465
6466 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
6467
6468 * term.el (term-emulate-terminal): Avoid infinite loop
6469 in strange case where minibuffer window is selected but not active.
6470
6471 1999-07-07 Stephen Eglen <stephen@gnu.org>
6472
6473 * progmodes/octave-inf.el (inferior-octave-directory-tracker):
6474 Change regexp so that it doesn't match commands beginning with `cd'.
6475
6476 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6477
6478 * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
6479
6480 1999-07-06 Richard Stallman <rms@gnu.org>
6481
6482 * hscroll.el (hscroll-minibuffer-hook): New function.
6483 (hscroll-global-mode): Add and remove that hook.
6484 Set hscroll-old-truncate-was-global's default value.
6485
6486 1999-07-05 Richard Stallman <rms@gnu.org>
6487
6488 * files.el (revert-buffer): Don't preserve point here.
6489 (revert-buffer-insert-file-contents-function): Doc fix.
6490
6491 * isearch.el (isearch-process-search-char): Write octal 200 correctly.
6492
6493 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
6494 doing a `stat' when it isn't necessary because that can cause
6495 trouble when an NFS server is down.
6496
6497 1999-07-04 Richard Stallman <rms@gnu.org>
6498
6499 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
6500
6501 1999-07-03 Richard Stallman <rms@gnu.org>
6502
6503 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
6504 for \200...\240 also.
6505 (isearch-printing-char): Use unibyte-char-to-multibyte.
6506
6507 1999-07-02 Richard Stallman <rms@gnu.org>
6508
6509 * frame.el (minibuffer-frame-alist): Use defcustom.
6510 (pop-up-frame-alist): Likewise.
6511 (initial-frame-alist): Specify * in the doc string.
6512
6513 * hscroll.el (hscroll-mode): Make it a permanent local.
6514 (hscroll-mode): Don't cancel the timer
6515 if HScroll mode is enabled in some other buffer.
6516
6517 * isearch.el (isearch-done): If search ends in middle of intangible
6518 text (due to text property), move on to the limit of that text.
6519
6520 1999-07-01 Andrew Innes <andrewi@gnu.org>
6521
6522 * man.el (Man-build-man-command): Use value of null-device,
6523 instead of hard-coding "/dev/null".
6524
6525 * dos-w32.el (untranslated-canonical-name): Avoid expanding
6526 ange-ftp file names, which might force ange-ftp to prompt for a
6527 password.
6528
6529 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
6530 to prevent references to temp files.
6531
6532 1999-06-30 Richard Stallman <rms@gnu.org>
6533
6534 * progmodes/sh-script.el (sh-feature): If nothing is known
6535 about the given shell, use the values for `sh'.
6536
6537 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de>
6538
6539 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
6540 to make it non-recursive.
6541
6542 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
6543
6544 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6545
6546 * auto-show.el (auto-show-mode): Fix Typo in :set.
6547
6548 1999-06-29 Richard M. Stallman <rms@gnu.org>
6549
6550 * progmodes/sh-script.el (sh-mode): When setting syntax
6551 table, default to the standard one.
6552
6553 1999-06-27 Richard M. Stallman <rms@gnu.org>
6554
6555 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
6556
6557 1999-06-27 Stefan Monnier <monnier@cs.yale.edu>
6558
6559 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
6560 a frame when `return' is requested (even if pop-up-frames = t)
6561 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
6562 should only be set for the bibtex buffer.
6563
6564 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
6565
6566 * progmodes/compile.el: Deal with compilation-error-screen-columns
6567 being buffer-local.
6568
6569 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6570
6571 * comint.el (comint-password-prompt-regexp): Allow "(again)".
6572
6573 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
6574
6575 * cal-x.el (calendar-only-one-frame-setup): New function.
6576 * calendar.el (calendar): Call it if requested.
6577
6578 1999-06-24 Karl Heuer <kwzh@gnu.org>
6579
6580 * startup.el (iso-8859-n-locale-regexp): Doc fix.
6581
6582 1999-06-22 Richard M. Stallman <rms@gnu.org>
6583
6584 * mail/supercite.el (sc-emacs-features): Doc fix.
6585
6586 1999-06-22 Karl Heuer <kwzh@gnu.org>
6587
6588 * files.el (auto-mode-alist): Add pike-mode.
6589
6590 1999-06-20 Paul R. Eggert <eggert@twinsun.com>
6591
6592 * tar-mode.el (tar-header-block-tokenize): Don't assume that the
6593 last byte of a numeric field is a space or a NUL. Parse it as
6594 potentially part of the number. This is used by GNU tar
6595 1.12.64012 to handle larger values.
6596
6597 1999-06-20 Karl Heuer <kwzh@gnu.org>
6598
6599 * custom.el (custom-handle-keyword): Fix error message.
6600
6601 1999-06-18 Andrew Innes <andrewi@gnu.org>
6602
6603 * mail/smtpmail.el (smtpmail-send-it): Use
6604 convert-standard-filename to make file names for queued mail safe
6605 on Windows (`:' is invalid in file names on Windows).
6606
6607 1999-06-17 Kenichi Handa <handa@etl.go.jp>
6608
6609 * international/mule-cmds.el (describe-current-input-method):
6610 Current-input-method is string.
6611 (toggle-input-method): Docstring fixed.
6612
6613 * international/mule-diag.el
6614 (describe-current-coding-system-briefly): Fix format string.
6615
6616 * international/mule-util.el (coding-system-eol-type-mnemonic):
6617 Docstring modified. Return a string.
6618
6619 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch>
6620
6621 * sql.el (sql-input-ring-file-name): Doc fix.
6622
6623 1999-06-17 Richard M. Stallman <rms@gnu.org>
6624
6625 * calendar/cal-x.el (special-display-buffer-names):
6626 Don't put (get-file-buffer diary-file) on this list.
6627
6628 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov>
6629
6630 * play/mpuz.el (mpuz-try-proposal): Fix message call.
6631 Don't penalize player for certain impossible guesses.
6632
6633 1999-06-16 Andrew Innes <andrewi@gnu.org>
6634
6635 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
6636 return the string "Unk 0 0000" so at least it appears to be a
6637 valid timestamp to `dired-move-to-filename-regexp'.
6638
6639 1999-06-15 Ken'ichi Handa <handa@gnu.org>
6640
6641 * ps-print.el (ps-control-character): Fix previous change.
6642
6643 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6644
6645 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
6646 multiple output of the last message.
6647
6648 1999-06-14 Eli Zaretskii <eliz@gnu.org>
6649
6650 * term/internal.el (IT-display-table-setup): Do not remap \222 to
6651 the ASCII apostrophe, as most DOS codepages have some other glyph
6652 there.
6653
6654 1999-06-14 Ken'ichi Handa <handa@gnu.org>
6655
6656 * language/ethio-util.el (setup-ethiopic-environment-internal):
6657 Use quail-activate-hook instead of obsolete hook quail-mode-hook.
6658 (exit-ethiopic-environment): Likewize.
6659
6660 1999-06-12 Richard M. Stallman <rms@gnu.org>
6661
6662 * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
6663
6664 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
6665
6666 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
6667 custom-initialize-default to avoid infinite loop.
6668 (crisp-mode): (defun) Call transient-mark-mode here, not when
6669 loading the file. Run crisp-mode-hook here, and run
6670 crisp-load-hook when loading the file.
6671
6672 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
6673 rmail-summary buffer, search for pattern in rmail-file.
6674
6675 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
6676
6677 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
6678
6679 * ps-print.el (ps-printer-name): Fix custom type.
6680
6681 1999-06-12 Reto Zimmermann <reto@synopsys.com>
6682
6683 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
6684 (vhdl-port-paste-generic-map): Fix indentation bug.
6685 (vhdl-port-paste-port-map): Fix indentation bug.
6686 (vhdl-scan-file-contents): Make scanning case insensitive.
6687
6688 1999-06-11 Richard M. Stallman <rms@gnu.org>
6689
6690 * files.el (write-file): When buffer is not already visiting a file,
6691 don't put buffer name in the minibuffer, just make it the default.
6692 Also handle just directory as arg usefully in that case.
6693
6694 * simple.el (sendmail-user-agent-compose):
6695 Ignore case when inserting the rest of the "other" headers.
6696
6697 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n.
6698
6699 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
6700 (info-lookup-interactive-arguments): Never insert the default
6701 into the minibuffer automatically.
6702
6703 * emacs-lisp/cl-extra.el (getf): Don't call get*.
6704
6705 1999-06-09 Richard M. Stallman <rms@gnu.org>
6706
6707 * simple.el (shell-command): Avoid printing "mark set" message.
6708
6709 1999-06-09 Dave Love <fx@gnu.org>
6710
6711 * progmodes/compile.el (compilation-error-regexp-alist): Allow
6712 digits in program name in first pattern.
6713
6714 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de>
6715
6716 * vc.el (vc-dired-mode): Don't match anything before the date in
6717 dired-move-to-filename-regexp.
6718
6719 1999-06-07 Ken'ichi Handa <handa@gnu.org>
6720
6721 * international/quail.el (quail-define-rules): Fix typo in
6722 docstring.
6723
6724 1999-06-05 Stephen Eglen <stephen@gnu.org>
6725
6726 * iswitchb.el (iswitchb-default-keybindings): Add
6727 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
6728 than when package is loaded.
6729
6730 1999-06-04 Richard M. Stallman <rms@gnu.org>
6731
6732 * startup.el (command-line): Don't set user-init-file directly;
6733 tell `load' to set it.
6734
6735 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
6736
6737 * simple.el (next-history-element):
6738 Handle minibuffer-text-before-history properly when reading sexps.
6739
6740 * disp-table.el (standard-display-european):
6741 For an interactive call by the user,
6742 don't set enable-multibyte-characters,
6743 and don't set the terminal coding system.
6744
6745 * textmodes/refbib.el: Don't print any messages or display
6746 a buffer when loading the library.
6747 (r2b-help): Doc fix.
6748 (r2b-help-message): Update the documentation.
6749 (r2b-load-quietly): Variable deleted.
6750 (r2b-convert-buffer): Doc fix.
6751
6752 1999-06-04 Dave Love <fx@gnu.org>
6753
6754 * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
6755
6756 * auto-show.el: Don't change hooks on loading.
6757 (auto-show-mode): Autoload. Default to nil. Add :set &c.
6758 (auto-show-mode): Add to hooks here.
6759
6760 1999-06-04 Richard Sharman <rsharman@pobox.com>
6761
6762 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
6763 recursion on bogus input.
6764
6765 1999-06-04 Eric M. Ludlam <zappo@ultranet.com>
6766
6767 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
6768 does not select a buffer from the buffers menu, then the attached
6769 frame is not switched to anything.
6770
6771 1999-06-03 Ken'ichi Handa <handa@gnu.org>
6772
6773 * language/vietnamese.el (ccl-encode-vscii): Typo fixed
6774 (viet-viscii-...->viet-vscii...).
6775
6776 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
6777
6778 1999-06-01 Dave Love <fx@gnu.org>
6779
6780 * progmodes/fortran.el: Add :link to defgroup.
6781 (fortran-blink-matching-if): Match ELSE statements too.
6782 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
6783 that filling is always done.
6784
6785 1999-05-31 Richard M. Stallman <rms@gnu.org>
6786
6787 * simple.el (append-next-kill): Use an arg to distinguish
6788 interactive calls from Lisp calls, rather than (interactive-p).
6789
6790 * international/iso-transl.el (iso-transl-language-alist):
6791 Interchange n and N.
6792
6793 1999-05-31 Dave Love <fx@gnu.org>
6794
6795 * msb.el Add to minor-mode-map-alist. Remove hook installation
6796 and keymap munging on load.
6797 (msb-mode): New option.
6798 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
6799 Doc fix.
6800 (msb-mode-map): New variable.
6801 (msb-mode): New command.
6802
6803 1999-05-31 Dave Love <fx@gnu.org>
6804
6805 * ispell.el: (ispell-alternate-dictionary): Fix custom type.
6806 (ispell-complete-word-dict): Likewise.
6807
6808 1999-05-31 Eli Zaretskii <eliz@gnu.org>
6809
6810 * forms.el (forms-save-buffer): Call set-buffer-modified-p to
6811 force the data buffer to be saved, even if the data didn't
6812 change, in case the write filter was modified. Restore the
6813 current record after read-file-filter finishes.
6814
6815 1999-05-29 Karl Heuer <kwzh@gnu.org>
6816
6817 * ispell4.el: Obsolete; file deleted.
6818
6819 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
6820
6821 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
6822 VALUE is a syntax table.
6823
6824 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
6825
6826 * simple.el (zap-to-char): Doc fix.
6827
6828 1999-05-27 Ken'ichi Handa <handa@gnu.org>
6829
6830 * isearch.el (isearch-quote-char): Don't assume character codes
6831 0200 - 0237 stand for characters in some single-byte character
6832 charset.
6833
6834 1999-05-27 Dave Love <fx@gnu.org>
6835
6836 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
6837
6838 1999-05-27 Andreas Schwab <schwab@gnu.org>
6839
6840 * dired-aux.el (dired-insert-subdir-doinsert): Check that the
6841 headerline does not exist already.
6842
6843 1999-05-26 Richard Stallman <rms@gnu.org>
6844
6845 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
6846 Avoid nested null-loops.
6847
6848 1999-05-26 Ken'ichi Handa <handa@gnu.org>
6849
6850 * international/characters.el: Typo fixed; prefered->preferred.
6851
6852 * international/mule-cmds.el (find-coding-systems-for-charsets):
6853 Typo fixed; prefered->preferred.
6854
6855 * map-ynp.el (map-y-or-n-p): Don't inherit the current input
6856 method in read-event.
6857
6858 * international/mule.el (charset-info): Doc-string fixed.
6859
6860 1999-05-25 Ken'ichi Handa <handa@gnu.org>
6861
6862 * mail/smtpmail.el (smtpmail-send-it): Bind
6863 smtpmail-code-conv-from properly.
6864 (smtpmail-send-data-1): If DATA is a multibyte string, encode it
6865 by smtpmail-code-conv-from.
6866
6867 1999-05-24 Richard Stallman <rms@gnu.org>
6868
6869 * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
6870 Binding deleted also.
6871
6872 1999-05-24 Karl Heuer <kwzh@gnu.org>
6873
6874 * comint.el (comint-bol-or-process-mark): Doc fix.
6875
6876 1999-05-23 Dave Love <fx@gnu.org>
6877
6878 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
6879 Enter it on minor-mode-map-alist.
6880 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed.
6881 Autoload. Add custom setter.
6882 (crisp-mark-line): Doc fix.
6883 (crisp-mode): Autoload. Re-write not to frob keymaps directly.
6884 (crisp-mode-hook): Define.
6885
6886 1999-05-23 Ken'ichi Handa <handa@gnu.org>
6887
6888 * files.el (recover-file): Recover buffer-file-coding-system.
6889
6890 1999-05-22 Richard Stallman <rms@gnu.org>
6891
6892 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
6893 regexp match the date, to avoid treating date as file size.
6894 Add YYYY S option to WESTERN/
6895
6896 * bookmark.el: Delete some XEmacs compatibility code.
6897 (bookmark-jump-noselect): Check vc-backend.
6898
6899 * subr.el (add-to-list): Doc fix.
6900
6901 1999-05-21 Stephen Eglen <stephen@gnu.org>
6902
6903 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
6904
6905 1999-05-18 Richard Stallman <rms@gnu.org>
6906
6907 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
6908 non-space after the @anchor command.
6909 (texinfo-format-var): Handle other nested constructs, using
6910 texinfo-parse-expanded-arg and texinfo-discard-command, not
6911 texinfo-parse-arg-discard.
6912
6913 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
6914 (debug): Bind and use debugger-outer-inhibit-redisplay.
6915 Bind inhibit-redisplay to nil.
6916 (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
6917
6918 1999-05-17 Dave Love <fx@gnu.org>
6919
6920 * help.el (describe-function-1): Extra arg, interactive-p.
6921 (describe-key, describe-function): Use it.
6922
6923 1999-05-17 Karl Heuer <kwzh@gnu.org>
6924
6925 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
6926
6927 1999-05-16 Dave Love <fx@gnu.org>
6928
6929 * cus-start.el (all): Delete selective-display. Add scroll-margin,
6930 scroll-preserve-screen-position, scroll-conservatively.
6931
6932 1999-05-16 Dave Love <fx@gnu.org>
6933
6934 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
6935
6936 1999-05-15 Reto Zimmermann <reto@Synopsys.COM>
6937
6938 * progmodes/vhdl-mode.el: Completely revised and massively extended.
6939
6940 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
6941
6942 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
6943 magic number and is not associated with a file.
6944
6945 1999-05-14 Richard M. Stallman <rms@gnu.org>
6946
6947 * files.el (find-file-noselect-1): Fix previous change.
6948
6949 1999-05-14 Simon Marshall <simon@gnu.org>
6950
6951 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
6952
6953 1999-05-13 Ken'ichi Handa <handa@gnu.org>
6954
6955 * international/mule-diag.el (mule-diag): Change MULE to Mule in
6956 docstring.
6957
6958 * international/mule-cmds.el: Change MULE to Mule in docstrings
6959 and menus.
6960
6961 1999-05-10 Kenichi HANDA <handa@etl.go.jp>
6962
6963 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
6964 to correctly reflect the value of BaseLineOffset in
6965 RelativeCompose. Now the value of RelativeCompose is an array of
6966 low and high positions.
6967 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
6968 RLC for the above change.
6969
6970 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org>
6971
6972 * comint.el (comint-password-prompt-regexp): Modified to match the
6973 output of ksu and ssh-add.
6974
6975 1999-05-11 Kenichi HANDA <handa@etl.go.jp>
6976
6977 * language/korea-util.el (isearch-toggle-korean-input-method):
6978 Adjusted for the change of input method handling in isearch.el.
6979 (isearch-hangul-switch-symbol-ksc): Likewise.
6980 (isearch-hangul-switch-hanja): Likewise.
6981
6982 1999-05-10 Dave Love <fx@gnu.org>
6983
6984 * help.el (help-make-xrefs): Fix typo.
6985
6986 1999-05-10 Andreas Schwab <schwab@gnu.org>
6987
6988 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
6989 unibyte-display-via-language-environment.
6990
6991 * help.el (help-make-xrefs): Handle more cases when looking for
6992 commands in a keymap description.
6993
6994 1999-05-10 Eli Zaretskii <eliz@gnu.org>
6995
6996 * loadup.el: For ms-dos systems, load ccl and codepage.
6997
6998 1999-05-09 Ken'ichi Handa <handa@gnu.org>
6999
7000 * ps-print.el (ps-control-character): Call
7001 ps-mule-prepare-ascii-font to setup ASCII fonts.
7002
7003 * ps-mule.el (ps-mule-begin-job): Redo this change "if
7004 ps-multibyte-buffer is nil, use
7005 ps-mule-font-info-database-default."
7006
7007 1999-05-08 Ken Stevens <k.stevens@ieee.org>
7008
7009 * ispell.el (ispell-local-dictionary-alist): New variable for
7010 customizing local dictionaries not accessable by everyone.
7011 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
7012 (ispell-required-version): Changed format `(major minor
7013 revision)' to support general pattern matching.
7014 (ispell-tex-skip-alists): AMS Tex block comment and `\author'
7015 skip region commented out due to incorrect skip potential in std latex.
7016 (ispell-word): Removed `when' macro. Fixed bug of not restoring
7017 cursor point on small words for calls from `ispell-minor-mode'.
7018 (check-ispell-version): Tests and accepts versions major.minor
7019 and above, with adjustments for interactions in 3.1.0-3.1.11.
7020 (ispell-get-line): No longer skips ispell process special characters.
7021 (ispell-comments-and-strings): Removed `when' macro call.
7022 (ispell-minor-check): Requires ispell-word to restore cursor point.
7023 (ispell-buffer-local-parsing): Supports checking comments only.
7024
7025 1999-05-08 Karl Heuer <kwzh@gnu.org>
7026
7027 * comint.el (comint-password-prompt-regexp): Fix last change to be
7028 more specific.
7029
7030 1999-05-07 Richard M. Stallman <rms@gnu.org>
7031
7032 * subr.el (with-temp-message): Fix the other call to message
7033 to use %s.
7034
7035 1999-05-07 Michael Ernst <mernst@alum.mit.edu>
7036
7037 * gud.el (gud-format-command): "%F" means file sans extension.
7038 (jdb): Use %F, not %f, for gud-break.
7039
7040 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org>
7041
7042 * comint.el (comint-password-prompt-regexp): Modified so that it
7043 matches the output of kinit.
7044
7045 1999-05-06 Greg Stark <gsstark@mit.edu>
7046
7047 * timezone.el (timezone-parse-date): Recognize new format used in
7048 internet cookies.
7049
7050 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu>
7051
7052 * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
7053
7054 1999-05-04 Andrew Innes <andrewi@gnu.org>
7055
7056 * time.el (display-time-update): Allow for wrap-around when
7057 checking against display-time-server-down-time.
7058
7059 1999-05-04 Ken'ichi Handa <handa@gnu.org>
7060
7061 * international/mule-diag.el (describe-coding-system): Fix English
7062 message.
7063
7064 1999-05-03 Jason Rumney <jasonr@altavista.net>
7065
7066 * term/w32-win.el: Change the x-charset-registry property for the
7067 Japanese charsets that are supported by Japanese Windows fonts.
7068
7069 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7070
7071 * diary-lib.el (diary-remind): Rewritten to behave sensibly for
7072 diary-block diary entries for which the reminders and the diary
7073 entries can overlap.
7074
7075 1999-05-02 Jason Rumney <jasonr@altavista.net>
7076
7077 * term/w32-win.el (mouse-set-font): Ensure constructed fontset
7078 matches the font selected in the dialog.
7079
7080 1999-05-02 Dave Love <fx@gnu.org>
7081
7082 * browse-url.el (browse-url-browser-function): Add :version.
7083
7084 * international/mule.el (auto-coding-alist): Add .tgz.
7085
7086 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il>
7087
7088 * international/codepage.el (cp-coding-system-for-codepage-1):
7089 Make the magnification parameter for the -dos encoder be 2.
7090
7091 1999-05-2 Andrew Innes <andrewi@gnu.org>
7092
7093 * term/w32-win.el (w32-drag-n-drop): Select file in window where
7094 it is dropped, rather than current window.
7095
7096 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
7097 after switching buffer, as case-fold-search is a buffer local
7098 variable.
7099
7100 * w32-fns.el (convert-standard-filename): Only convert directory
7101 separators to backslash if the interactive shell is one of the
7102 standard Windows shells that has DOS semantics.
7103
7104 * ls-lisp.el (ls-lisp-format-time): Trap errors from
7105 format-time-string, and return a suitable string to indicate the
7106 timestamp was invalid.
7107
7108 * hexl.el (hexlify-command): Apply shell-quote-argument after
7109 expanding hexl-program in case exec-directory contains a space.
7110 (dehexlify-command): Ditto.
7111
7112 * dos-w32.el (file-name-buffer-file-type-alist): Remove various
7113 file extension regexps which aren't necessarily binary files.
7114 (direct-print-region-helper): Use subst-char-in-string instead of
7115 binding directory-sep-char to convert filenames to DOS syntax.
7116 (direct-print-region-use-command-dot-com): New variable.
7117 (direct-print-region-helper): Use it to control whether to invoked
7118 command.com to print on Windows 9x.
7119
7120 * browse-url.el (browse-url-browser-function): Default to
7121 browse-url-default-windows-browser on windows-nt.
7122 (browse-url-default-windows-browser): New function.
7123
7124 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il>
7125
7126 * forms.el (forms-mode): Don't call forms-first-record or
7127 forms-last-record if the data file has zero records.
7128
7129 1999-04-29 Richard M. Stallman <rms@gnu.org>
7130
7131 * files.el (find-file-noselect-1): If buffer-file-name has changed
7132 after find-file-not-found-hooks runs, recompute the truename.
7133 And don't use FILENAME after that point.
7134
7135 1999-04-27 Dave Love <fx@gnu.org>
7136
7137 * paren.el (show-paren-mode)
7138 * which-func.el (which-func-mode-global)
7139 * type-break.el (type-break-mode)
7140 * time.el (display-time-mode)
7141 * rsz-mini.el (resize-minibuffer-mode)
7142 * mouse-sel.el (mouse-sel-mode)
7143 * icomplete.el (icomplete-mode)
7144 * hscroll.el (hscroll-global-mode)
7145 * help.el (temp-buffer-resize-mode)
7146 * font-lock.el (global-font-lock-mode)
7147 * delsel.el (delete-selection-mode)
7148 * avoid.el (mouse-avoidance-mode)
7149 * autoinsert.el (auto-insert-mode)
7150 * winner.el (winner-mode): Doc fix.
7151
7152 1999-04-26 Karl Heuer <kwzh@gnu.org>
7153
7154 * mail/rmail.el (rmail-next-same-subject): When searching, ignore
7155 the same whitespace that was ignored in choosing the subject string.
7156
7157 1999-04-26 Richard M. Stallman <rms@gnu.org>
7158
7159 * info.el (Info-find-node): Position properly after finding anchor.
7160
7161 * cus-start.el (all): Handle unibyte-display-via-language-environment.
7162
7163 * simple.el (indent-new-comment-line): Fix previous change.
7164
7165 * complete.el: Delete the wildcard expansion feature
7166 since that is now standard in find-file.
7167 (PC-try-load-many-files): Function deleted.
7168 (PC-after-load-many-files): Function deleted.
7169 (PC-many-files-list): Variable deleted.
7170 (PC-disable-wildcards): Variable deleted.
7171 (partial-completion-mode): Don't enable the wildcard feature.
7172
7173 * complete.el (PC-look-for-include-file): Don't set global variables
7174 `error', `buf' and `filename' here.
7175
7176 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
7177
7178 1999-04-26 John Wiegley <johnw@oneworld.new-era.com>
7179
7180 * textmodes/outline.el (outline-regexp): Doc fix.
7181
7182 1999-04-26 John Wiegley <johnw@borland.com>
7183
7184 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
7185 C++Builder 4.0 error message syntax.
7186
7187 1999-04-26 Mark Diekhans <markd@Grizzly.COM>
7188
7189 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
7190 supported, use find -exec.
7191
7192 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
7193
7194 * textmodes/texinfmt.el (texinfo-format-buffer): Bind
7195 coding-system-for-write, to avoid hanging when non-interactive.
7196
7197 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
7198
7199 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
7200 start with a newline.
7201
7202 1999-04-13 Ken'ichi Handa <handa@gnu.org>
7203
7204 * international/mule-conf.el (x-ctext): New coding system.
7205
7206 1999-04-12 Richard M. Stallman <rms@gnu.org>
7207
7208 * international/mule-cmds.el (input-method-function):
7209 Add permanent-local property.
7210
7211 1999-04-12 Dave Love <fx@gnu.org>
7212
7213 * jka-compr.el (jka-compr-insert-file-contents): Fix previous
7214 change to use jka-compr-byte-compiler-base-file-name.
7215
7216 * supercite.el (sc-scan-info-alist): Revert last change.
7217 (sc-attrib-selection-list): Fix :type here instead.
7218
7219 1999-04-11 Eli Zaretskii <eliz@gnu.org>
7220
7221 * international/mule.el (auto-coding-alist-lookup): Include ms-dos
7222 in the list of case-insensitive filesystems.
7223
7224 1999-04-09 Kenichi Handa <handa@etl.go.jp>
7225
7226 * international/fontset.el (create-fontset-from-fontset-spec):
7227 Don't register duplicated alias fontset names.
7228
7229 1999-04-08 Richard Stallman <rms@gnu.org>
7230
7231 * international/mule.el (auto-coding-alist-lookup): New function.
7232 (set-auto-coding): Use auto-coding-alist-lookup.
7233
7234 * jka-compr.el (jka-compr-insert-file-contents):
7235 Use auto-coding-alist-lookup to check for files that
7236 should not have eol conversion, in the unibyte case.
7237
7238 1999-04-07 Dave Love <fx@gnu.org>
7239
7240 * help.el (describe-variable): Check custom-loads property as well
7241 as custom-type.
7242
7243 * abbrev.el (abbrev-mode): Customizing sets the default value.
7244
7245 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de>
7246
7247 * vc.el (vc-backend-revert): For CVS files that were made
7248 writeable with "cvs edit", call "cvs unedit" to undo that.
7249
7250 1999-04-08 Dave Love <fx@gnu.org>
7251
7252 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
7253 more.
7254 (sc-emacs-features): Recognize Emacs 20.
7255 (sc-read-string): Use history arg.
7256 (sc-scan-info-alist): Check for rtnvalue a cons.
7257
7258 1999-04-08 Kenichi HANDA <handa@etl.go.jp>
7259
7260 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
7261 coding system to encode the message by
7262 select-message-coding-system.
7263
7264 1999-04-07 Richard Stallman <rms@gnu.org>
7265
7266 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
7267
7268 * winner.el: Reorder definitions.
7269
7270 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
7271
7272 * mail/rmail.el (rmail-decode-babyl-format):
7273 Undo previous change.
7274
7275 1999-04-06 Richard Stallman <rms@gnu.org>
7276
7277 * info.el (Info-find-node): Check for an anchor at the
7278 proper place, before reading an indirect file.
7279
7280 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
7281
7282 * jka-compr.el (jka-compr-insert-file-contents):
7283 Use raw-text-unix when we want no conversion.
7284
7285 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
7286
7287 * timezone.el (timezone-parse-date): Corrected regexp for
7288 style (5) date format so that tenths of seconds are optional.
7289
7290 1999-04-05 Eli Zaretskii <eliz@gnu.org>
7291
7292 * term/internal.el (dos-cpNNN-setup): New function, with the guts
7293 of dos-codepage-setup.
7294 (cjk-codepages-alist): New variable, an alist of Far-Eastern
7295 codepages for which there's no need to set up cpNNN coding
7296 systems.
7297 (dos-codepage-setup): Support Far-Eastern DOS terminals.
7298
7299 1999-04-05 Richard Stallman <rms@gnu.org>
7300
7301 * mail/rmail.el (rmail-ignored-headers): Doc fix.
7302
7303 1999-04-02 Richard Stallman <rms@gnu.org>
7304
7305 * progmodes/compile.el (compilation-handle-exit): Do right thing
7306 if (car status) doesn't end in a newline.
7307
7308 1999-04-01 Dave Love <fx@gnu.org>
7309
7310 * progmodes/sql.el (SQL): Add defgroup :version.
7311
7312 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
7313
7314 * emacs-lisp/bytecomp.el (byte-compile-file): Clear
7315 buffer-file-coding-system. If the coding system used is raw-text,
7316 etc., make the *Compiler Input* buffer unibyte.
7317
7318 * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
7319
7320 * loadup.el: Don't write the fns-...el file if not dumping.
7321
7322 1999-03-31 Dave Love <fx@gnu.org>
7323
7324 * snmp-mode.el (snmp): Fix defgroup :version.
7325
7326 * hilit-chg.el (highlight-changes): Add defgroup :version.
7327
7328 1999-03-31 Andreas Schwab <schwab@gnu.org>
7329
7330 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
7331 the gnus-save-hidden-threads macro.
7332
7333 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk>
7334
7335 * faces.el (face-set-after-frame-default): Obey the
7336 `customized-face' for new faces.
7337
7338 1999-03-30 Dave Love <fx@gnu.org>
7339
7340 * international/mule-cmds.el (current-language-environment): Doc fix.
7341 * abbrev.el (abbrev-mode): Doc fix.
7342 * autoinsert.el (auto-insert-mode): Doc fix.
7343 * complete.el (partial-completion-mode): Doc fix.
7344 * avoid.el (mouse-avoidance-mode): Doc fix.
7345 * delsel.el (delete-selection-mode): Doc fix.
7346 * font-lock.el (global-font-lock-mode): Doc fix.
7347 * help.el (temp-buffer-resize-mode): Doc fix.
7348 * hscroll.el (hscroll-global-mode): Doc fix.
7349 * icomplete.el (icomplete-mode): Doc fix.
7350 * mouse-sel.el (mouse-sel-mode): Doc fix.
7351 * paren.el (show-paren-mode): Doc fix.
7352 * rsz-mini.el (resize-minibuffer-mode): Doc fix.
7353 * time.el (display-time-mode): Doc fix.
7354 * type-break.el (type-break-mode): Doc fix.
7355 * which-func.el (which-func-mode-global): Doc fix.
7356 * winner.el (winner-mode): Doc fix.
7357
7358 1999-03-30 Michael Ernst <mernst@alum.mit.edu>
7359
7360 * wid-edit.el (widget-before-change): Signal text-read-only rather
7361 than an ordinary error.
7362
7363 1999-03-30 Richard M. Stallman <rms@gnu.org>
7364
7365 * repeat.el: Don't require advice.
7366 (repeat): Do function-indirection in check for kbd macro.
7367 In self-insert case, use the *last* char in INSERTION.
7368
7369 1999-03-30 Karl Heuer <kwzh@gnu.org>
7370
7371 * progmodes/cc-cmds.el (c-indent-command): Doc fix.
7372
7373 1999-03-29 Andreas Schwab <schwab@gnu.org>
7374
7375 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
7376 comint-input-filter-functions. Make variables related to shell
7377 directory tracking local.
7378
7379 1999-03-26 Andreas Schwab <schwab@gnu.org>
7380
7381 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
7382
7383 * simple.el (shell-command-on-region): Cope with exit-status being
7384 nil, which happens if call-process-region was interrupted.
7385
7386 1999-03-26 Richard M. Stallman <rms@gnu.org>
7387
7388 * simple.el (indent-new-comment-line): Handle use at a point
7389 after a comment-end. Handle multiple comments.
7390
7391 * mail/rmail.el (rmail-decode-babyl-format):
7392 To prevent locking, bind buffer-file-name to nil.
7393
7394 1999-03-26 Karl Fogel <kfogel@red-bean.com>
7395
7396 * mail-hist.el (mail-hist-current-header-name): Don't make
7397 off-by-one-error when determining if in message body.
7398
7399 1999-03-25 Andrew Innes <andrewi@gnu.org>
7400
7401 * w32-fns.el (set-default-process-coding-system): Copied from
7402 dos-w32.el, but modified to use Unix line endings for process
7403 input, and to add a suitable entry to process-coding-system-alist
7404 for DOS shells.
7405
7406 * dos-fns.el (set-default-process-coding-system): Copied from
7407 dos-w32.el.
7408
7409 * dos-w32.el (set-default-process-coding-system): Move function to
7410 dos-fns.el; a different version is used in w32-fns.el.
7411
7412 1999-03-24 Dave Love <fx@gnu.org>
7413
7414 * info.el (Info-directory-list): Revert change to re-writing
7415 Info-default-directory-list, but put `alternative' first.
7416 (Info-insert-dir): Modify selecting the top dir file as a consequence.
7417
7418 1999-03-23 Simon Marshall <simon@gnu.org>
7419
7420 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
7421 on the line by itself.
7422 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if
7423 it is not in a declarative context.
7424
7425 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk>
7426
7427 * cus-edit.el (custom-variable-prompt): Allow customization of
7428 autoloaded symbols.
7429
7430 1999-03-22 Kenichi HANDA <handa@etl.go.jp>
7431
7432 * simple.el (what-cursor-position): Don't cause error when point
7433 is at invalid multibyte sequence.
7434
7435 1999-03-21 Karl Heuer <kwzh@gnu.org>
7436
7437 * complete.el (partial-completion-mode): Doc fix.
7438
7439 1999-03-19 Richard M. Stallman <rms@gnu.org>
7440
7441 * progmodes/cplus-md.el (old-c++): Remove :group.
7442
7443 * progmodes/c-mode.el (old-c): Remove :group.
7444
7445 1999-03-18 Simon Marshall <simon@gnu.org>
7446
7447 * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
7448 (java-font-lock-keywords-2): Added "strictfp" keyword.
7449
7450 1999-03-17 Jason Rumney <jasonr@altavista.net>
7451
7452 * w32-fns.el (set-w32-system-coding-system) New function.
7453 (w32-system-coding-system) Initialize to 'iso-latin-1.
7454
7455 1999-03-17 Eli Zaretskii <eliz@gnu.org>
7456
7457 * international/mule-cmds.el (set-language-environment): Fix
7458 previous change: don't use dos-codepage when unbound.
7459
7460 1999-03-17 Karl Heuer <kwzh@gnu.org>
7461
7462 * calendar/appt.el (appt-make-list): Fix previous change.
7463
7464 1999-03-16 Richard M. Stallman <rms@gnu.org>
7465
7466 * window.el (shrink-window-if-larger-than-buffer):
7467 Don't try to redisplay with the cursor at the end
7468 on its own line--that would force a scroll and spoil things.
7469
7470 1999-03-16 Eli Zaretskii <eliz@gnu.org>
7471
7472 * international/mule-cmds.el (set-language-environment): Don't use
7473 cpNNN-nonascii-translation-table if it is unbound.
7474
7475 * term/internal.el (dos-codepage-setup): Compute the unibyte
7476 syntax table and bind unibyte-display-via-language-environment
7477 here, rather than at top level, so that resetting to unibyte in
7478 .emacs works as expected.
7479
7480 1999-03-15 Simon Marshall <simon@gnu.org>
7481
7482 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
7483
7484 1999-03-14 Milan Zamazal <pdm@pvt.net>
7485
7486 * abbrev.el (inverse-add-abbrev): Inherit the current input method.
7487
7488 1999-03-14 Kenichi Handa <handa@etl.go.jp>
7489
7490 * international/mule-util.el (detect-coding-with-priority):
7491 Restore the internal database.
7492
7493 1999-03-14 Stephen Eglen <stephen@gnu.org>
7494
7495 * mail/sendmail.el (sendmail-send-it): Fix typo in error string
7496 if mail-from-style has invalid value.
7497
7498 1999-03-12 Karl Heuer <kwzh@gnu.org>
7499
7500 * vc.el (vc-delete-logbuf-window): New var.
7501 (vc-finish-logentry): Use it.
7502
7503 1999-03-12 Richard M. Stallman <rms@gnu.org>
7504
7505 * startup.el (command-line-1): Improve startup msg.
7506
7507 1999-03-12 Eric M. Ludlam <zappo@ultranet.com>
7508
7509 * speedbar.el: Added commentary about stealthy functions.
7510 (speedbar-message) new function.
7511 (speedbar-y-or-n-p): New function
7512 (speedbar-with-attached-buffer) Moved macro before reference.
7513 Now uses `save-selected-window'.
7514 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
7515 speedbar-generic-item-info, speedbar-item-info-file-helper,
7516 speedbar-item-delete, speedbar-insert-generic-list,
7517 speedbar-timer-fn, speedbar-check-vc-this-line,
7518 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
7519 speedbar-buffers-item-info) Use speedbar-message.
7520 (speedbar-item-info) Limit `message-log-max'.
7521 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
7522 speedbar-item-delete, speedbar-item-object-delete,
7523 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
7524
7525 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp>
7526
7527 * server.el (server-start): Set coding system for the server
7528 process to raw-text.
7529 (server-process-filter): Decode file names if necessary.
7530
7531 1999-03-12 Dave Love <fx@gnu.org>
7532
7533 * textmodes/fill.el (sentence-end-double-space): Doc fix.
7534
7535 * textmodes/paragraphs.el (sentence-end): Doc fix.
7536
7537 1999-03-11 Karl Heuer <kwzh@gnu.org>
7538
7539 * comint.el (comint-password-prompt-regexp): Accept "login password:"
7540
7541 1999-03-09 Karl Heuer <kwzh@gnu.org>
7542
7543 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
7544 (ispell-dictionary-alist-2): Likewise.
7545 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
7546 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
7547 (ispell-dictionary-alist): Build from six pieces, not just two.
7548
7549 * ps-bdf.el (bdf-directory-list): Doc fix.
7550
7551 * enriched.el (enriched-mode): Make var permanent-local.
7552
7553 1999-03-09 Dave Love <fx@gnu.org>
7554
7555 * textmodes/sgml-mode.el (html-mode): Use
7556 sentence-end-double-space when setting sentence-end.
7557
7558 1999-03-09 Ken'ichi Handa <handa@gnu.org>
7559
7560 * language/thai.el (tis-620): New alias coding system for thai-tis620.
7561
7562 1999-03-08 Felix Lee <flee@cygnus.com>
7563
7564 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
7565
7566 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
7567
7568 1999-03-08 Karl Heuer <kwzh@gnu.org>
7569
7570 * dired-aux.el (dired-do-copy-regexp): Doc fix.
7571 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7572
7573 * dired.el (dired-do-copy-regexp): Doc fix.
7574 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7575
7576 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com>
7577
7578 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
7579
7580 1999-03-08 Jason Rumney <jasonr@altavista.net>
7581
7582 * international/codepage.el (cp1250-decode-table)
7583 (cp1251-decode-table, cp1253-decode-table)
7584 (cp1257-decode-table): New translation tables for MS Windows codepages.
7585 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
7586
7587 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
7588
7589 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
7590
7591 1999-03-07 Eli Zaretskii <eliz@gnu.org>
7592
7593 * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
7594
7595 * term/internal.el (top level): Display character 255 as 8bit as well.
7596
7597 1999-03-06 Dave Love <fx@gnu.org>
7598
7599 * progmodes/cc-cmds.el (c-outline-level): Bind
7600 buffer-invisibility-spec.
7601
7602 * progmodes/c-mode.el (c-outline-level): Likewise.
7603
7604 * progmodes/ada-mode.el (ada-outline-level): Likewise.
7605
7606 1999-03-05 Felix Lee <flee@cygnus.com>
7607
7608 * textmodes/outline.el (outline-get-last-sibling): Doc fix.
7609
7610 1999-03-05 Richard M. Stallman <rms@gnu.org>
7611
7612 * bindings.el (complete-symbol): Invert meaning of prefix arg.
7613
7614 1999-03-05 Andrew Innes <andrewi@gnu.org>
7615
7616 * w32-fns.el (convert-standard-filename): Convert directory
7617 separators to Windows format.
7618
7619 1999-03-05 Andreas Schwab <schwab@gnu.org>
7620
7621 * international/skkdic-cnv.el: Provide skkdic-cnv.
7622 (skkdic-convert): Emit code to require skkdic-cnv at compile time.
7623 (batch-skkdic-convert): Doc fix.
7624
7625 1999-03-04 Dave Love <fx@gnu.org>
7626
7627 * custom.el (custom-set-variables): Protect against setter errors.
7628
7629 1999-03-04 Eli Zaretskii <eliz@gnu.org>
7630
7631 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
7632 the file sizes from overflowing.
7633 (ls-lisp-format): If file size is a float, use %8.0f to print it.
7634 Under -s, print the size in blocks with %4.0f, in case they have
7635 a *really* huge file.
7636
7637 1999-03-03 Dave Love <fx@gnu.org>
7638
7639 * options.el (edit-options): Doc fix.
7640 (list-options): Don't lose with unbound symbols. Maintain
7641 Edit-options-mode.
7642
7643 1999-03-01 Dave Love <fx@gnu.org>
7644
7645 * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
7646
7647 1999-02-28 Richard M. Stallman <rms@gnu.org>
7648
7649 * ispell.el (ispell-dictionary-alist-override): New variable.
7650 (ispell-dictionary-alist): Don't setq it,
7651 if ispell-dictionary-alist-override is set.
7652
7653 * simple.el (shell-command-default-error-buffer): Renamed from
7654 shell-command-on-region-default-error-buffer.
7655 (shell-command-on-region): Mention in echo area when there
7656 is some error output. Mention success or failure, too.
7657 Accumulate multiple error outputs
7658 going forward, with formfeed in between. Display the error buffer
7659 when we have put something in it.
7660 (shell-command): Add the ERROR-BUFFER argument feature.
7661
7662 1999-02-28 Karl Heuer <kwzh@gnu.org>
7663
7664 * mail/mh-utils.el (mh-lib): Doc fix.
7665 (mh-lib-progs, mh-nmh-p): New vars.
7666 (mh-find-progs): Set mh-lib-progs along with other vars.
7667 (mh-path-search): New arg FUNC-P; if specified, use that instead
7668 of mh-file-command-p.
7669 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
7670
7671 * mail/mh-comp.el (mh-repl-formfile): New var.
7672 (mh-smail-batch): Don't ignore all arguments.
7673 (mh-reply): Do the right thing when using nmh.
7674
7675 1999-02-27 Kenichi Handa <handa@etl.go.jp>
7676
7677 * international/mule-cmds.el (select-safe-coding-system): Be sure
7678 to show a buffer being decoded.
7679
7680 1999-02-26 Ken'ichi Handa <handa@gnu.org>
7681
7682 * ps-bdf.el (bdf-directory-list): Initialize it to
7683 '("/usr/local/share/emacs/fonts/bdf").
7684
7685 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7686
7687 * ps-print.el: PostScript programming fix.
7688 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
7689 setpagedevice operator).
7690
7691 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7692
7693 * ps-print.el: Doc fix, font size specifies landscape and portrait
7694 sizes.
7695 (ps-print-version): New version number (4.1.4).
7696 (ps-font-size, ps-header-font-size, ps-header-title-font-size):
7697 Specifies landscape and portrait sizes.
7698 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
7699 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
7700 fix.
7701 (ps-get-font-size): New fun.
7702 (ps-font-size-internal, ps-header-font-size-internal)
7703 (ps-header-title-font-size-internal): New vars.
7704
7705 * ps-mule.el: Change of ps-print font size variable name.
7706 (ps-mule-generate-font): Fun fix.
7707 (ps-mule-begin-job): Programming uniformization.
7708
7709 1999-02-25 Dave Love <fx@gnu.org>
7710
7711 * help.el (help-xref-info-regexp): Allow linebreaks and capital.
7712 (help-make-xrefs): Do Info case first.
7713
7714 * repeat.el: Don't require advice.
7715 (repeat-last-kill-command): Variable deleted.
7716
7717 1999-02-25 Richard Stallman <rms@gnu.org>
7718
7719 * simple.el (shell-command-on-region): Don't go into the REPLACE = t
7720 case just because the current buffer is the output buffer.
7721
7722 1999-02-25 Kenichi Handa <handa@etl.go.jp>
7723
7724 * simple.el (what-cursor-position): To show the character's
7725 encoding, use encoded-string-description instead of information
7726 of chaset-origin-alist.
7727
7728 * international/mule-cmds.el (iso-2022-control-alist): New variable.
7729 (encoded-code-description): New function.
7730 (encoded-string-description): New function.
7731 (encode-coding-char): New function.
7732
7733 1999-02-25 Andrew Innes <andrewi@gnu.org>
7734
7735 * startup.el (command-line) [windows-nt]: Fix typo in regexp
7736 checking for .emacs[.el[c]].
7737
7738 1999-02-24 Richard Stallman <rms@gnu.org>
7739
7740 * help.el (describe-function-1): Don't print a whole lambda-function.
7741
7742 1999-02-23 Ken'ichi Handa <handa@gnu.org>
7743
7744 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
7745 inputting ?\240.
7746
7747 1999-02-23 Karl Heuer <kwzh@gnu.org>
7748
7749 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
7750
7751 * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
7752 (clean-buffer-list-kill-buffer-names): Doc fix.
7753
7754 * gud.el (gud-jdb-massage-args): Spelling fix.
7755
7756 1999-02-23 Richard M. Stallman <rms@gnu.org>
7757
7758 * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
7759
7760 1999-02-22 Eli Zaretskii <eliz@gnu.org>
7761
7762 * arc-mode.el (archive-set-buffer-as-visiting-file): Save
7763 excursion while calling set-auto-coding-function.
7764
7765 * play/handwrite.el (handwrite): Require ps-print, and use
7766 ps-printer-name and ps-lpr-command. Call ps-print-region-function
7767 if it's defined, instead of forking ps-lpr-command unconditionally.
7768
7769 1999-02-22 Kenichi Handa <handa@etl.go.jp>
7770
7771 * international/codepage.el (cp-coding-system-for-codepage-1): Put
7772 charset-origin-alist property to a coding system for the codepage.
7773
7774 * international/mule.el: Modify comment for charset-origin-alist
7775 property of a coding system.
7776
7777 * simple.el (what-cursor-position): charset-origin-alist property
7778 of a coding system may be a translation table or a symbol of which
7779 `translation-table' property is a translation table.
7780
7781 1999-02-21 Richard Stallman <rms@gnu.org>
7782
7783 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
7784 to the "html" template.
7785
7786 1999-02-21 Peter Breton <pbreton@ne.mediaone.net>
7787
7788 * dirtrack.el (dirtrack): Added docstring. Now returns input.
7789
7790 1999-02-18 Peter Breton <pbreton@ne.mediaone.net>
7791
7792 * dirtrack.el (dirtrack): Check for the prompt in the input string
7793 instead of the buffer.
7794
7795 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch>
7796
7797 * sql.el: Set version to 1.4.1. Changed mail address to
7798 alex@gnu.org. Mention the mailing list sql.el@gnu.org.
7799 (sql-input-ring-separator): Doc fix.
7800 (sql-mode-syntax-table): double-dash starts comments is defined as
7801 ". 56" instead of ". 12b" for XEmacs.
7802 (sql-stop, sql-interactive-mode): Doc fixes.
7803 (sql-postgres): Queries for database and server, not just one.
7804 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
7805
7806 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
7807 changed. This is needed for master.el to work.
7808 (sql-set-sqli-buffer): Use the new hook.
7809
7810 * sql.el (sql-make-alternate-buffer-name): Function that sets
7811 sql-alternate-buffer-name.
7812 (sql-alternate-buffer-name): Possible name of SQLi buffers.
7813 (sql-interactive-mode): Set sql-alternate-buffer-name.
7814 (sql-rename-buffer): New command.
7815 (sql-interactive-mode-menu): Menu for SQLi buffers.
7816
7817 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator
7818 and sql-input-ring-file-name are used to temporarily set
7819 comint-input-ring-file-name and comint-input-ring-separator when
7820 reading and writing input history files.
7821
7822 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
7823 (sql-input-ring-file-name): New variable with customization.
7824 (sql-input-ring-separator): New variable with customization.
7825 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
7826 Callers changed.
7827 (sql-show-sqli-buffer): The message for "sql-buffer is not set"
7828 now includes the name of the current buffer.
7829
7830 (sql-mode): Set paragraph-separate and paragraph-start so that
7831 sql-send-paragraph sends the entire SQL statements, even if it
7832 contains indented lines.
7833
7834 1999-02-18 Dave Love <fx@gnu.org>
7835
7836 * format.el (format-encode-run-method, format-decode-run-method):
7837 Fix previous change.
7838
7839 1999-02-18 Ken'ichi Handa <handa@gnu.org>
7840
7841 * international/mule.el (coding-system-list): Moved here from
7842 mule-util.el to avoid autoloading mule-util by the call of
7843 select-safe-coding-system.
7844
7845 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
7846
7847 * simple.el (turn-on-auto-fill): Mark it as an option for
7848 `text-mode-hook'.
7849
7850 1999-02-17 Richard Stallman <rms@gnu.org>
7851
7852 * emacs-lisp/easymenu.el (easy-menu-get-map):
7853 Don't crash if (current-local-map) is nil.
7854
7855 1999-02-17 Peter Breton <pbreton@ne.mediaone.net>
7856
7857 * filecache.el (file-cache-filter-regexps): Added .class.
7858
7859 1999-02-17 Ken'ichi Handa <handa@gnu.org>
7860
7861 * international/mule-util.el (decompose-region): Use
7862 insert-buffer-substring instead of insert-buffer to avoid putting
7863 mark.
7864
7865 1999-02-17 Andreas Schwab <schwab@gnu.org>
7866
7867 * calendar/cal-move.el (scroll-calendar-left): Don't set
7868 displayed-month and displayed-year here, let generate-calendar do
7869 it, after range checking.
7870
7871 1999-02-17 Simon Marshall <simon@gnu.org>
7872
7873 * progmodes/cc-engine.el (c-at-toplevel-p): New function.
7874
7875 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
7876 correctly between an object declared via a constructor and a method.
7877 (font-lock-defaults-alist): Don't give `.' word syntax for Java.
7878 (java-font-lock-keywords-1): Fontify package names individually.
7879 (java-font-lock-extra-types): Ensure regexp matches capitalised only.
7880 (java-font-lock-keywords-2): Simplify type fontification.
7881 (java-font-lock-keywords-3): Likewise.
7882
7883 1999-02-17 Kenichi Handa <handa@etl.go.jp>
7884
7885 * language/japanese.el (iso-2022-jp-2): New coding system.
7886 ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
7887
7888 1999-02-16 Dave Love <fx@gnu.org>
7889
7890 * help.el (describe-function-1): Accept non-symbols.
7891
7892 1999-02-16 Paul Eggert <eggert@twinsun.com>
7893
7894 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
7895 find the last match if there are multiple matches.
7896
7897 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7898
7899 * tex-mode.el (tex-run-command, latex-run-command)
7900 (slitex-run-command, tex-command): Doc changes.
7901 (tex-start-options-string): Autoload it. Doc change. Provide
7902 a menu for customization. Allow nil. Quote backslashes only once.
7903 (tex-start-tex): Handle nil value of tex-start-options-string
7904 and apply shell-quote-argument to it.
7905
7906 1999-02-16 Eli Zaretskii <eliz@gnu.org>
7907
7908 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
7909 the size in blocks, since it can be a float.
7910 (ls-lisp-format): Likewise
7911
7912 1999-02-16 Ken'ichi Handa <handa@gnu.org>
7913
7914 * language/japanese.el (japanese-shift-jis): Add
7915 charset-origin-alist property.
7916
7917 1999-02-15 Richard Stallman <rms@gnu.org>
7918
7919 * progmodes/compile.el (compile-internal): Use save-selected-window.
7920
7921 * subr.el (momentary-string-display): Bind inhibit-read-only.
7922
7923 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
7924
7925 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il>
7926
7927 * mail/rmail.el (rmail-show-message): If an unseen message has a
7928 Summary-line in its header, get past one more line before looking
7929 for the X-Coding-System header.
7930
7931 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
7932
7933 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
7934 explicitly to accomodate Windows 9X lack of a useful copy program.
7935
7936 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
7937
7938 * wid-edit.el (widget-choice-value-create): Use `equal'
7939 instead of `eq'.
7940
7941 1999-02-14 Richard Stallman <rms@gnu.org>
7942
7943 * international/iso-transl.el:
7944 (iso-transl-ae): Renamed from iso-transl-e-slash.
7945 (iso-transl-a-ring): Renamed from iso-transl-a-slash.
7946 (iso-transl-AE): Renamed from iso-transl-E-slash.
7947 (iso-transl-A-ring): Renamed from iso-transl-A-slash.
7948 (iso-transl-char-map): Related changes.
7949
7950 * format.el (format-replace-strings): Fix value of TO in REVERSE case.
7951
7952 1999-02-13 Richard Stallman <rms@gnu.org>
7953
7954 * textmodes/texinfmt.el (texinfo-alias): New function.
7955 (texinfo-fold-nodename-case): Add defvar.
7956 (texinfo-format-node): Do case folding if specified.
7957
7958 * ffap.el (ffap-file-at-point): Test local file names
7959 immediately. Strip off line numbers.
7960
7961 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch>
7962
7963 * sql.el: Set version to 1.3.2
7964 (sql-solid-program): Added support for solid.
7965 (sql-help): Doc mentions sql-solid.
7966 (sql-solid): Entry function for Solid.
7967 (sql-buffer): Doc explains the use of the variable and how to
7968 change it.
7969 (sql-mode-menu): Included entries for sql-show-sqli-buffer and
7970 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
7971 disabled if sql-buffer doesn't have a process; sql-send-paragraph
7972 is new.
7973 (sql-show-sqli-buffer): New function to display the value of
7974 sql-buffer.
7975 (sql-change-sqli-buffer): New function to change sql-buffer.
7976 (sql-mode): Doc explains how to change sql-buffer.
7977 (sql-send-paragraph): New function to send a paragraph.
7978 (sql-mode-map): Added keybinding for sql-send-paragraph.
7979 (sql-mysql): Doc corrected.
7980 (sql-ms): Doc corrected.
7981
7982 * sql.el (sql-server): Doc fix.
7983 (sql-mysql): Added the use of sql-server to specify the host,
7984 sql-database now specifies database instead of host.
7985 (sql-mode-menu): Send... menu items are only active if sql-buffer
7986 is non-nil.
7987 (sql-help): Changed tag of entry functions a bit.
7988
7989 * sql.el: Added keywords from `finder-by-keyword'.
7990 (sql-mode): Made sql-buffer a local variable, changed the
7991 documentation: removed instructions to add *.sql files to
7992 auto-mode-alist, added documentation for having mutliple SQL
7993 buffers sending their stuff to different SQLi buffers, each
7994 running a different process.
7995 (sql-postgres): Quoted *SQL* in doc string.
7996 (sql-ms): Likewise.
7997 (sql-ingres): Likewise.
7998 (sql-ingres): Quoted *SQL* in doc string, added references to
7999 sql-user and sql-password used during login.
8000 (sql-sybase): Quoted *SQL* in doc string, added comma.
8001 (sql-oracle): Likewise.
8002 (sql-interactive-mode): Added extensive documentation for having
8003 mutliple SQL buffers sending their stuff to different SQLi
8004 buffers, each running a different process.
8005 (sql-buffer): Changed doc from *SQL* to SQLi.
8006 (sql-get-login): Doc fix.
8007
8008 1999-02-12 Ken'ichi Handa <handa@gnu.org>
8009
8010 * international/mule-conf.el (undecided): Set ascii in
8011 safe-charsets property.
8012
8013 1999-02-12 Richard Stallman <rms@gnu.org>
8014
8015 * textmodes/paragraphs.el (paragraph-separate): Doc fix.
8016
8017 1999-02-12 Ken'ichi Handa <handa@gnu.org>
8018
8019 * ps-mule.el (ps-mule-font-info-database-default): Set the initial
8020 value to ps-mule-font-info-database-latin.
8021
8022 1999-02-13 Kenichi HANDA <handa@etl.go.jp>
8023
8024 * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
8025 (ps-mule-font-info-database-default): New variable.
8026 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
8027 ps-mule-font-info-database-default.
8028
8029 1999-02-12 Dave Love <fx@gnu.org>
8030
8031 * timezone.el (timezone-make-date-sortable)
8032 (timezone-make-date-arpa-standard): Doc fix.
8033
8034 1999-02-12 Ken'ichi Handa <handa@gnu.org>
8035
8036 * international/quail.el (quail-show-kbd-layout): Bind
8037 blink-matching-paren to nil.
8038
8039 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
8040 for ASCII and Latin-1.
8041
8042 1999-02-12 Andreas Schwab <schwab@gnu.org>
8043
8044 * gud.el (jdb): Fix regexp for comint-prompt-regexp.
8045
8046 1999-02-12 Kenichi Handa <handa@etl.go.jp>
8047
8048 * international/mule-cmds.el (language-info-alist): Remove
8049 description about charset-origin-alist.
8050
8051 * international/mule.el: Comment added for a new coding system
8052 property `charset-origin-alit'.
8053 (make-translation-table): This variable deleted.
8054
8055 * language/chinese.el (chinese-big5): Add charset-origin-alist
8056 property.
8057 ("Chinese-CNS"): Remove charset-origin-alist property.
8058
8059 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
8060 property.
8061 (cyrillic-alternativnyj): Likewise.
8062 ("Cyrillic-KOI8"): Remove charset-origin-alist property.
8063 ("Cyrillic-ALT"): Likewise.
8064
8065 * language/vietnamese.el (vietnamese-viqr): Add
8066 charset-origin-alist property.
8067 ("Vietnamese"): Remove charset-origin-alist property.
8068
8069 * simple.el (what-cursor-position): Don't use the varialbe
8070 charset-origin-alist, but use charset-origin-alist property of
8071 buffer-file-coding-system to decide external character set code.
8072
8073 1999-02-10 Richard Stallman <rms@gnu.org>
8074
8075 * shadowfile.el: Don't turn on the mode when the file is loaded.
8076
8077 1999-02-09 Richard Stallman <rms@gnu.org>
8078
8079 * progmodes/compile.el (compile-auto-highlight): Customize.
8080
8081 * add-log.el (add-log-file-name-function): New variable.
8082 (add-change-log-entry): Call that function, if non-nil.
8083
8084 1999-02-09 Michael Ernst <mernst@alum.mit.edu>
8085
8086 * rmail.el (rmail-search): Track match with a marker, not an integer.
8087
8088 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8089
8090 * progmodes/compile.el (compilation-setup): Set value of
8091 compilation-directory-stack as in compilation-forget-errors.
8092 (compile-reinitialize-errors): Bind buffer-undo-list and
8093 deactivate-mark.
8094 (compilation-forget-errors): Likewise.
8095
8096 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com>
8097
8098 * textmodes/texinfo.el (texinfo-environment-regexp): Add the
8099 def... constructs.
8100
8101 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
8102 Remove calls to sleep-for.
8103
8104 1999-02-08 Eli Zaretskii <eliz@gnu.org>
8105
8106 * international/codepage.el (cp-coding-system-for-codepage-1): On
8107 MS-DOS, use dos-unsupported-char-glyph for characters not
8108 supported by the codepage.
8109 (cp-make-coding-systems-for-codepage): Likewise.
8110
8111 1999-02-08 Andreas Schwab <schwab@gnu.org>
8112
8113 * international/mule-util.el (coding-system-list): Don't sort
8114 coding-system-list here.
8115
8116 * international/mule.el (coding-system-lessp): Moved here from
8117 mule-util.el
8118 (add-to-coding-system-list): New function.
8119 (make-subsidiary-coding-system, make-coding-system,
8120 define-coding-system-alias): Use it instead of setting
8121 coding-system-list directly.
8122
8123 1999-02-07 Dave Love <fx@gnu.org>
8124
8125 * calendar/appt.el (appt-make-list): Don't splice quotes and date
8126 onto message.
8127
8128 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8129
8130 * imenu.el (imenu--last-menubar-index-alist): Add doc.
8131 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist.
8132
8133 1999-02-06 Richard Stallman <rms@gnu.org>
8134
8135 * language/european.el (setup-slovenian-environment): New function.
8136 ("Slovenian"): New language environment.
8137
8138 * progmodes/sql.el (sql-help): Doc fix.
8139 (sql-mysql): Doc fix.
8140
8141 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8142
8143 * tex-mode.el: When compiling, require compare-w and skeleton
8144 to pacify the byte-compiler. Move the def's of the tex-commands
8145 together. Add a comment on kill-process vs. quit-process.
8146
8147 1999-02-05 Dave Love <fx@gnu.org>
8148
8149 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
8150 null markers.
8151 (compile-goto-error): Likewise.
8152
8153 1999-02-05 Stephen Gildea <gildea@alum.mit.edu>
8154
8155 * time-stamp.el (time-stamp-format): Format doc tighter.
8156 (time-stamp-line-limit): 0 searches the entire buffer (careful!).
8157 (time-stamp): Don't re-write the time stamp if it didn't change.
8158
8159 1999-02-05 Alex Schroeder <asc@bsiag.com>
8160
8161 * progmodes/sql.el: Changed version to 1.2.1.
8162 (sql-pop-to-buffer-after-send-region): Improved documentation.
8163 (sql-mysql-program): Added MySQL support.
8164 (sql-prompt-length): Made prompt-length configurable.
8165 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
8166 (sql-help): Added MySQL support, changed documentation.
8167 (sql-send-region): A message is displayed if something is sent.
8168 (sql-mode): Added buffer-local comment-start.
8169 (sql-interactive-mode): Use sql-prompt-length to set left-margin.
8170 (sql-interactive-mode): Added buffer-local comment-start.
8171 (sql-oracle): Set sql-prompt-length.
8172 (sql-sybase): Set sql-prompt-length.
8173 (sql-mysql): Added MySQL support.
8174 (sql-ingres): Set sql-prompt-length.
8175 (sql-ms): Set sql-prompt-length.
8176 (sql-postgres): Set sql-prompt-length.
8177
8178 1999-02-04 Eli Zaretskii <eliz@gnu.org>
8179
8180 * term/internal.el (dos-codepage-setup): Set selection coding
8181 system to cpNNN-dos.
8182
8183 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
8184
8185 * international/characters.el: Let ethiopic use iso-2022-7bit.
8186
8187 1999-02-02 Dave Love <fx@gnu.org>
8188
8189 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
8190 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
8191
8192 1999-02-02 Karl Heuer <kwzh@gnu.org>
8193
8194 * terminal.el (terminal-emulator): Doc fix.
8195
8196 1999-02-02 Ken'ichi Handa <handa@gnu.org>
8197
8198 * international/mule-util.el (compose-chars): Doc-string
8199 modified. Correctly handle a composition character in ARGS.
8200
8201 1999-02-01 Richard Stallman <rms@gnu.org>
8202
8203 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
8204 (makefile-menu-index-function): Function deleted.
8205 (makefile-mode): Use makefile-imenu-generic-expression.
8206
8207 1999-02-01 Geoff Voelker <voelker@cs.washington.edu>
8208
8209 * term/w32-win.el (w32-create-initial-fontsets): Back out previous
8210 change, invoke from before-init-hook.
8211
8212 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu>
8213
8214 * subr.el (remove-from-invisibility-spec): Cope with the case when
8215 buffer-invisibility-spec is t.
8216
8217 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu>
8218
8219 * calendar/calendar.el (calendar-mode-map): Fix bindings for
8220 appt-add and appt-delete.
8221
8222 1999-02-01 Eli Zaretskii <eliz@gnu.org>
8223
8224 * term/pc-win.el (msdos-approximate-color): New function.
8225 (msdos-color-translate): Call it to find a DOS color that best
8226 approximates an X-style "#NNNNNN" color specification.
8227
8228 1999-02-01 Ken'ichi Handa <handa@gnu.org>
8229
8230 * international/mule-util.el (compose-chars-component): Add
8231 autoload cookie.
8232
8233 1999-01-31 Ken'ichi Handa <handa@gnu.org>
8234
8235 * international/quail.el (quail-lookup-key): If cdr of MAP is a
8236 function, replace cdr of MAP by the return value of the function
8237 unconditionally.
8238
8239 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8240
8241 * progmodes/compile.el (compilation-next-error-locus): Don't
8242 decrease argument FIND-AT-LEAST of compilation-next-error-locus.
8243
8244 1999-01-31 Eli Zaretskii <eliz@gnu.org>
8245
8246 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
8247 and NLs before "charset", and allow the charset name be in double
8248 quotes.
8249
8250 1999-01-31 Richard Stallman <rms@gnu.org>
8251
8252 * imenu.el (imenu-sort-function): Fix custom type.
8253
8254 1999-01-30 Richard Stallman <rms@gnu.org>
8255
8256 * speedbar.el (speedbar-line-token): Match {...} instead of [...].
8257 (speedbar-line-token): Likewise.
8258
8259 * play/gametree.el (gametree-default-score): Use defcustom.
8260 (gametree-score-regexp, gametree-score-closer): Likewise.
8261 (gametree-score-manual-flag, gametree-score-opener): Likewise.
8262
8263 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8264
8265 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
8266 decoding.
8267
8268 1999-01-29 Markus Rost <rost@gnu.org>
8269
8270 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
8271 tex-validate-buffer.
8272 (plain-tex-mode, latex-mode, slitex-mode): Likewise.
8273 (tex-validate-buffer): Renamed from validate-tex-buffer. Works
8274 now with recent occur-mode.
8275 (tex-validate-region): Really walk through all Sexps.
8276 (tex-region): Bind shell-dirtrack-verbose.
8277 (tex-file, tex-bibtex-file): Likewise.
8278
8279 1999-01-29 Dave Love <fx@gnu.org>
8280
8281 * finder.el: (finder-commentary): Fix interactive spec. Try
8282 appending .el to file name.
8283 (finder-find-library, finder-commentary): Doc fixes.
8284
8285 1999-01-29 Andrew Innes <andrewi@gnu.org>
8286
8287 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
8288 where the userid contains directory separators.
8289
8290 1999-01-29 Dave Love <fx@gnu.org>
8291
8292 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
8293 (lm-commentary): Doc fix.
8294
8295 1999-01-29 Andreas Schwab <schwab@gnu.org>
8296
8297 * files.el (file-expand-wildcards): Never consider `.' and `..' a
8298 wildcard match. Fix regexp that tests if dirpart contains
8299 wildcard characters.
8300
8301 1999-01-28 Richard Stallman <rms@gnu.org>
8302
8303 * font-lock.el (font-lock-default-unfontify-region):
8304 If not font-lock-syntactic-keywords, don't remove syntax-table prop.
8305
8306 1999-01-27 Jason Rumney <jasonr@altavista.net>
8307
8308 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
8309 from FAMILY field.
8310 (w32-create-initial-fontsets): Do not use before-init-hook.
8311 (mouse-set-font): Document. Automatically create and use fontsets.
8312
8313 * dos-w32.el (direct-print-region-helper): Check for printer
8314 being t as well as a string.
8315
8316 1999-01-27 Kenichi Handa <handa@etl.go.jp>
8317
8318 * mail/rmail.el (rmail-decode-mime-charset): New variable.
8319 (rmail-mime-charset-pattern): New variable.
8320 (rmail-convert-to-babyl-format): Decode by MIME-charset if
8321 rmail-decode-mime-charset is non-nil.
8322
8323 1999-01-27 Ken'ichi Handa <handa@gnu.org>
8324
8325 * international/characters.el: Set category `q' for all characters
8326 in tibetan and tibetan-1-column.
8327
8328 1999-01-27 Andrew Innes <andrewi@gnu.org>
8329
8330 * frame.el (select-frame-by-name): Obey focus-follows-mouse.
8331 (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
8332
8333 1999-01-27 Dave Love <fx@gnu.org>
8334
8335 * international/mule-cmds.el (current-language-environment):
8336 Provide :link, :type (choices) and appropriate :get.
8337
8338 1999-01-27 Eli Zaretskii <eliz@gnu.org>
8339
8340 * startup.el (command-line): Set default eol-mnemonic-* strings to
8341 display end-of-line format in mode line.
8342
8343 * cus-start.el (all): Add eol-mnemonic-* variables.
8344
8345 1999-01-26 Dave Love <fx@gnu.org>
8346
8347 * startup.el (command-line-1): Up-date copyright.
8348
8349 * paths.el (Info-default-directory-list): Use configdir twice.
8350
8351 * info.el (Info-directory-list): Don't set path-separator now
8352 we're not shipped with Texinfo. Simplify path definition.
8353 Substitute all occurrences of instdir in Info-default-directory-list.
8354
8355 1999-01-25 Richard Stallman <rms@gnu.org>
8356
8357 * startup.el (normal-top-level-add-subdirs-to-load-path):
8358 Record the inode numbers of the dirs processed, to avoid loop.
8359
8360 * textmodes/tex-mode.el (tex-run-command): Doc fix.
8361
8362 1999-01-25 Dave Love <fx@gnu.org>
8363
8364 * browse-url.el (browse-url-netscape-program): Doc addition.
8365
8366 * help.el (help-make-xrefs): Default info references to an `(emacs)'
8367 prefix.
8368
8369 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
8370 auto-mode-alist.
8371
8372 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8373
8374 * calendar/diary-lib.el (mark-diary-entries): Use
8375 assoc-ignore-case and do not capitalize when matching month and
8376 day names.
8377
8378 * calendar/calendar.el (calendar-read-date): Ditto.
8379
8380 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
8381 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
8382
8383 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
8384
8385 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
8386
8387 * calendar/cal-islam.el (calendar-goto-islamic-date)
8388 (mark-islamic-diary-entries): Ditto.
8389
8390 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
8391
8392 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
8393 (calendar-read-mayan-tzolkin-date): Ditto.
8394
8395 * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
8396
8397 1999-01-22 Michael Ernst <mernst@alum.mit.edu>
8398
8399 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
8400
8401 1999-01-25 Karl Heuer <kwzh@gnu.org>
8402
8403 * faces.el (list-faces-display): Multiline case of previous fix.
8404
8405 1999-01-25 Andreas Schwab <schwab@gnu.org>
8406
8407 * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
8408
8409 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
8410
8411 * files.el (find-file): If find-file-noselect returns a list,
8412 do switch-to-buffer on each element.
8413 (find-file-other-window): Likewise for all but the first element.
8414 (find-file-other-frame): Same.
8415 (find-file-noselect): When we expand a wildcard, return a list
8416 of buffers.
8417
8418 1999-01-24 Eli Zaretskii <eliz@gnu.org>
8419
8420 * term/internal.el (dos-codepage-setup): Call prefer-coding-system
8421 to set the appropriate cpNNN-dos coding system as the
8422 highest-priority coding system.
8423
8424 1999-01-23 Ken'ichi Handa <handa@gnu.org>
8425
8426 * international/fontset.el (generate-fontset-menu): Return a
8427 sorted list by plain names of fontsets.
8428
8429 * international/mule-diag.el (list-fontsets): Sort fontsets by
8430 plain names.
8431
8432 * language/tibet-util.el (tibetan-vertical-stacking): If the arg
8433 FIRST is a composite character, decompose it at first.
8434
8435 1999-01-23 Dave Love <fx@gnu.org>
8436
8437 * format.el: Doc fixes.
8438 (format-encode-run-method): Have things happen in the right buffer.
8439 Deal with errors from method. Set coding-system-for-write.
8440 (format-decode-run-method): Have things happen in the right buffer.
8441 Deal with errors from method. Set coding-system-for-read.
8442 (format-alist): Use nil instead of unmatchable regexps.
8443
8444 * simple.el (shell-command-on-region): Return command's exit status.
8445
8446 1999-01-23 Eric Ludlam <zappo@gnu.org>
8447
8448 * speedbar.el (speedbar-item-info-file-helper): Add optional arg
8449 of the file whose info we want to display.
8450 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
8451 (speedbar-add-mode-functions-list) Improve doc.
8452 (speedbar-line-token) New function.
8453 (speedbar-dired) Fix order of directories in -shown-directories.
8454 (speedbar-line-path): Default return is default-directory
8455 (speedbar-buffers-line-path): Return is dir name only.
8456 (speedbar-mode-functions-list): New variable.
8457 (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
8458 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
8459 speedbar-files-item-info speedbar-buffers-item-info): New functions.
8460 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
8461 New functions.
8462 (speedbar-line-file): Broke out part that fetches file from a line.
8463 (speedbar-line-text): New function extracted from speedbar-line-file.
8464 (speedbar-line-path): Converted into a replaceable function.
8465 (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
8466
8467 1999-01-23 Ken'ichi Handa <handa@gnu.org>
8468
8469 * international/fontset.el (create-fontset-from-x-resource): Make
8470 style variants.
8471
8472 1999-01-22 Dave Love <fx@gnu.org>
8473
8474 * paths.el (Info-default-directory-list): Put sysdir after start.
8475
8476 1999-01-22 Sam Steingold <sds@goems.com>
8477
8478 * midnight.el (clean-buffer-list): Do not kill a buffer if it has
8479 a process associated with it.
8480
8481 1999-01-22 Jason Rumney <jasonr@altavista.net>
8482
8483 * term/w32-win.el (w32-standard-fontset-spec): Simplified.
8484
8485 1999-01-22 Felix Lee <flee@cygnus.com>
8486
8487 * vc.el (vc-annotate-display): Delete old overlays. Fix check for
8488 major-mode.
8489 (vc-annotate-mode): Delete variable.
8490
8491 1999-01-22 Andrew Innes <andrewi@gnu.org>
8492
8493 * startup.el (command-line): [windows-nt]: Check for existence of
8494 .emacs file so as to notice .emacs.el or .emacs.elc and use them
8495 in preference to _emacs.
8496
8497 1999-01-22 Dave Love <fx@gnu.org>
8498
8499 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
8500
8501 1999-01-20 Richard Stallman <rms@gnu.org>
8502
8503 * files.el (find-file-noselect): Do wildcard processing only
8504 if new arg WILDCARDS is non-nil.
8505 (find-file, find-file-other-window): New arg WILDCARDS.
8506 Default it to non-nil if interactive.
8507 (find-file-other-frame): Likewise.
8508 (find-file-read-only): Likewise.
8509 (find-file-read-only-other-window): Likewise.
8510 (find-file-read-only-other-frame): Likewise.
8511
8512 * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
8513 (widget-plist-convert-option): Delete spurious comma.
8514
8515 1999-01-19 Jason Rumney <jasonr@altavista.net>
8516
8517 * term/w32-win.el (w32-standard-fontspec-spec): Change
8518 iso8859-5 to koi8-r. Add iso8859-9.
8519
8520 1999-01-19 Dave Love <fx@gnu.org>
8521
8522 * browse-url.el (browse-url-maybe-new-window): Delete macro and
8523 its uses.
8524
8525 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
8526 is active.
8527 (fortran-indent-subprogram): Likewise.
8528
8529 1999-01-19 Dave Love <d.love@dl.ac.uk>
8530
8531 * paths.el (Info-default-directory-list): Perhaps add /usr/info.
8532
8533 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
8534
8535 * wid-edit.el (alist): Use sexp as default key-type.
8536
8537 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8538
8539 * textmodes/tex-mode.el (tex-define-common-keys):
8540 Remove key binding of tex-feed-input.
8541 (tex-mode-map): Bind tex-feed-input here.
8542 (tex-start-shell): Use compilation-shell-minor-mode. Set
8543 comint-input-filter-functions before running tex-shell-hook.
8544 (tex-start-tex): Forget compilation errors.
8545 (tex-compilation-parse-errors): Rewritten to work also with
8546 compile-mouse-goto-error and compile-goto-error. Adjusted to
8547 change in tex-region.
8548 (tex-region): For the temp file use file-name without directory.
8549 (tex-file): Expand file name of tex-print-file.
8550
8551 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8552
8553 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call.
8554
8555 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no>
8556
8557 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
8558 beginning could cause Emacs to hang. Fixed.
8559
8560 1999-01-18 Ken'ichi Handa <handa@gnu.org>
8561
8562 * international/ccl.el (ccl-compile-translate-character): Handle
8563 the case that a tranlation table is CCL register correctly.
8564
8565 * international/mule-cmds.el (select-safe-coding-system):
8566 Hightlight at most 256 characters.
8567
8568 1999-01-18 Dave Love <fx@gnu.org>
8569
8570 * startup.el (command-line): If the init file changes operation to
8571 unibyte, make all buffers unibyte and re-set language environment.
8572
8573 * disp-table.el (standard-display-european): Make all existing
8574 buffers unibyte. Fix doc.
8575
8576 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu>
8577
8578 * wid-edit.el (coding-system): Define this unconditionally.
8579
8580 * simple.el (shell-command-on-region-default-error-buffer): New var.
8581 (shell-command-on-region): Use that variable as interactive
8582 value of ERROR-BUFFER argument.
8583
8584 1999-01-17 Sam Steingold <sds@goems.com>
8585
8586 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
8587
8588 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8589
8590 * progmodes/compile.el (compilation-goto-locus): If already in the
8591 compilation buffer's window, keep it in that window.
8592 (compile-mouse-goto-error): Add Doc. Don't play with windows.
8593 (compile-goto-error): Don't play with windows.
8594
8595 * textmodes/tex-mode.el (latex-run-command): Doc fix.
8596 (tex-command): Doc fix.
8597 (tex-compilation-parse-errors): Doc fix.
8598 (tex-generate-zap-file-name): Don't start the name with -.
8599 (tex-expand-files): Works now also with strings ending with ":".
8600
8601 1999-01-17 Ian T Zimmerman <itz@transbay.net>
8602
8603 Patch failed to install:
8604 * gametree.el: Document scoring functionality.
8605 (gametree-score-regexp): Add optional plus sign.
8606 (gametree-score-opener): Replace `:' with `=' as the former
8607 conflicts with gametree-half-ply-regexp.
8608 (gametree-transpose-following-leaves): Add.
8609 (gametree-insert-new-leaf): Make modifying commands barf in read
8610 only buffers.
8611 (gametree-break-line-here): Add a call to
8612 `gametree-transpose-following-leaves'. This maintains the
8613 necessary invariant that on each level all leaf children precede
8614 all nonleaf children. This has always been implied, but left to
8615 the user, and, unfortunately, undocumented.
8616
8617 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk>
8618
8619 * wid-edit.el (plist, alist): New widget types.
8620
8621 1999-01-17 Dave Love <fx@gnu.org>
8622
8623 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
8624 fix scope of condition-case therein.
8625
8626 1999-01-17 Andrew Innes <andrewi@gnu.org>
8627
8628 * dos-w32.el: (find-buffer-file-type-coding-system): Use
8629 default-buffer-file-coding-system when file doesn't exist (and
8630 isn't covered by a special case) instead of forcing undecided-dos
8631 against the user's wishes.
8632
8633 * dos-w32.el (direct-print-region-helper): New function based on
8634 direct-print-region-function; sends data to specified printer port
8635 without further translation. Recognize and handle specially the
8636 standard `print' and `nprint' programs, as well as `lpr' and
8637 similar programs. Only write directly to the printer port if no
8638 print program is specified. Work around a bug in Windows 9x
8639 affecting Win32 version of Emacs by invoking command.com to write
8640 to the printer port instead of writing directly.
8641 (direct-print-region-function): Use direct-print-region-helper to
8642 do most of the work.
8643 (direct-ps-print-region-function): New function; analogue of
8644 direct-print-region-function for ps-print.
8645 (ps-lpr-command): Comment out setq; leave as example usage.
8646 (ps-lpr-switches): Ditto.
8647
8648 * lpr.el: (printer-name): Update docstring about usage on MS-DOS
8649 and MS-Windows.
8650 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
8651 DOS and Windows platforms, to indicate direct printing. Update
8652 the docstring accordingly.
8653
8654 * ps-print.el: (ps-printer-name): Update docstring about usage on
8655 MS-DOS and MS-Windows.
8656 (ps-lpr-command): Update docstring as for lpr-command.
8657 (ps-print-region-function): New variable.
8658 (ps-do-despool): Use it.
8659 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
8660 DOS/Windows.
8661
8662 * subr.el (subst-char-in-string): New function.
8663
8664 1999-01-17 Eli Zaretskii <eliz@gnu.org>
8665
8666 * international/codepage.el (cp852-decode-table): Fill a nil entry.
8667
8668 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
8669 (bdf-find-font-info): New function, looks for the first readable
8670 file from a list of alternatives.
8671 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
8672 instead of bdf-get-font-info.
8673 (bdf-generate-glyphs): If font-name is a cons cell, pass its car
8674 to ps-mule-generate-bitmap-glyph.
8675
8676 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
8677 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can
8678 now be a list of alternative names.
8679 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
8680 (ps-mule-prepare-font): Likewise.
8681
8682 * international/codepage.el (cp855-decode-table,
8683 cp850-decode-table): Fill some nil entries.
8684
8685 1999-01-16 Dave Love <fx@gnu.org>
8686
8687 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
8688 last change.
8689
8690 1999-01-15 Dave Love <fx@gnu.org>
8691
8692 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
8693 and change regexp for command names.
8694 (help-xref-go-back, function-called-at-point, symbol-file)
8695 (where-is): Doc fixes.
8696 (help-xref-go-back): Remove interactive spec.
8697 (describe-function-1): Fix message for alias. Buttomize alias
8698 name.
8699
8700 * simple.el (join-line): New alias.
8701
8702 1999-01-15 Johan Vromans <jvromans@squirrel.nl>
8703
8704 * forms.el: (forms--show-record): Convert integers to string
8705 expicitly since concat will no longer accept integers.
8706 (forms-print): Use local `total-nb-records' since
8707 `forms--total-records' will be inaccessible after buffer switching.
8708
8709 1998-01-14 Felix Lee <flee@cygnus.com>
8710
8711 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
8712
8713 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu>
8714
8715 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
8716
8717 1999-01-14 Eli Zaretskii <eliz@gnu.org>
8718
8719 * international/codepage.el (cp850-decode-table): Fix previous change.
8720
8721 1999-01-14 Simon Marshall <simon@gnu.org>
8722
8723 * shell.el (shell-dirtrack-verbose): New custom variable.
8724 (shell-dirstack-message): Use it.
8725
8726 1999-01-14 Kenichi Handa <handa@etl.go.jp>
8727
8728 * international/mule-conf.el: Coding system alias `dos' for
8729 `undecided-dos', `mac' for `undecided-mac'.
8730
8731 * international/mule-cmds.el (describe-language-environment):
8732 Don't alter input-method-alist.
8733
8734 1999-01-13 Eli Zaretskii <eliz@gnu.org>
8735
8736 * international/codepage.el (cp850-decode-table): Replace nil
8737 entries with codes of similary looking glyphs. (Suggested by
8738 Jason Rumney <jasonr@altavista.net>.)
8739
8740 1999-01-13 Dave Love <fx@gnu.org>
8741
8742 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
8743
8744 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
8745
8746 1999-01-12 Karl Heuer <kwzh@gnu.org>
8747
8748 * files.el (auto-save-hook): Defvar this.
8749
8750 1999-01-12 Alex Schroeder <asc@bsiag.com>
8751
8752 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
8753 faces, eliminating the need to load font-lock before loading sql.
8754 (sql-mode-oracle-font-lock-keywords): Likewise.
8755 (sql-mode-postgres-font-lock-keywords): Likewise.
8756
8757 1999-01-11 Dave Love <fx@gnu.org>
8758
8759 * cus-start.el: Add inhibit-eol-conversion.
8760
8761 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
8762 the values round.
8763
8764 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu>
8765
8766 * help.el (help-mode-finish): Renamed from help-mode-maybe.
8767 Don't switch to Help mode here.
8768 (temp-buffer-setup-hook): Use help-mode-finish.
8769 (help-mode-setup): New function.
8770 (temp-buffer-setup-hook): Use help-mode-setup.
8771
8772 * progmodes/sql.el: New file.
8773
8774 * files.el (auto-mode-alist): Add sql-mode.
8775
8776 * faces.el (list-faces-display): Improve the formatting
8777 by computing the maximum length required for any face-name.
8778
8779 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8780
8781 * progmodes/compile.el (compilation-shell-minor-mode): New function.
8782
8783 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu>
8784
8785 * term.el (term_send_home): Change the string to
8786 be the same as the one emitted by xterm and consistent with the
8787 ones emitted by prior and next.
8788 (term_send_end): Likewise.
8789
8790 1999-01-10 Dave Love <fx@gnu.org>
8791
8792 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
8793 bindings.
8794
8795 1999-01-10 Eli Zaretskii <eliz@gnu.org>
8796
8797 * international/codepage.el (codepage-setup): Doc fix.
8798 (cp-decoding-vector-for-codepage): Likewise.
8799
8800 1999-01-10 Markus Rost <rost@gnu.org>
8801
8802 * cus-edit.el (custom-save-delete): First scan the custom-file.
8803
8804 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu>
8805
8806 * international/iso-transl.el: Define a "function name" for
8807 each translation that isn't ASCII. Use these function names
8808 in iso-transl-char-map.
8809
8810 1999-01-08 Kenichi Handa <handa@etl.go.jp>
8811
8812 * international/mule-util.el (decompose-region): Do decomposition
8813 on temporary unibyte buffer.
8814
8815 * international/mule.el (make-char): Doc-string modified.
8816
8817 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu>
8818
8819 * simple.el (comment-region): Delete spaces only if we
8820 deleted a comment starter.
8821
8822 1999-01-07 Dave Love <fx@gnu.org>
8823
8824 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
8825
8826 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
8827 like eval-defun does.
8828
8829 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
8830
8831 * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
8832 constructions. Doc fixes.
8833 (generic-create-generic-function): Use defalias, not fset.
8834
8835 * find-func.el: More doc fixes.
8836
8837 1999-01-06 Stephen Eglen <stephen@gnu.org>
8838
8839 * files.el (save-buffers-kill-emacs): Show the list of current
8840 processes before prompting to kill them and exit.
8841
8842 1999-01-06 Dave Love <fx@gnu.org>
8843
8844 * emacs-lisp/find-func.el: Doc fixes.
8845 (find-function-regexp): Extend for define-generic-mode,
8846 define-derived-mode, easy-mmode-define-minor-mode.
8847
8848 1999-01-06 Dave Love <fx@gnu.org>
8849
8850 * progmodes/fortran.el (fortran-window-create): Account for scroll
8851 bar width.
8852
8853 * browse-url.el: Require (noerror) w3-auto when compiling.
8854 (browse-url-maybe-new-window): Make it a macro and revert last
8855 change to callers.
8856 (browse-url-w3): Require w3 for w3-fetch-other-window.
8857
8858 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8859
8860 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
8861 argument.
8862
8863 1999-01-06 Simon Marshall <simon@gnu.org>
8864
8865 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix.
8866
8867 * font-lock.el (font-lock-default-fontify-buffer): When using
8868 with-temp-message, use nil rather than current-message.
8869
8870 * lazy-lock.el (lazy-lock-unstall):
8871 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
8872 rather than current-message.
8873
8874 * fast-lock.el (fast-lock-save-cache-1):
8875 (fast-lock-cache-data): When using with-temp-message, use nil rather
8876 than current-message.
8877
8878 1999-01-06 Eli Zaretskii <eliz@gnu.org>
8879
8880 * international/codepage.el (cp-coding-system-for-codepage-1): Add
8881 the valid-codes property.
8882
8883 * international/mule-cmds.el (prefer-coding-system): Call
8884 set-coding-priority, so that the internal array of priorities is
8885 also updated.
8886
8887 * international/mule-util.el:
8888 (coding-system-change-eol-conversion,
8889 coding-system-change-text-conversion): Don't define here.
8890
8891 * international/mule-cmds.el: Define them here. Remove the
8892 autoload cookies.
8893
8894 1999-01-06 Andreas Schwab <schwab@gnu.org>
8895
8896 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
8897 if it was enabled before.
8898
8899 * view.el (View-revert-buffer-scroll-page-forward): Bind
8900 view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
8901
8902 * files.el (recover-session): Preserve point when inserting
8903 explanation.
8904
8905 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu>
8906
8907 * cus-edit.el (custom-save-delete): Don't delete whitespace
8908 and comments before the sexp that is replaced.
8909
8910 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8911
8912 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
8913
8914 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de>
8915
8916 * vc.el (vc-dired-hook): Use the original value of
8917 dired-move-to-filename-regexp on lines that have not been
8918 reformatted yet.
8919 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
8920 file lines have already been reformatted.
8921
8922 1999-01-05 Dave Love <fx@gnu.org>
8923
8924 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
8925 buffer-local.
8926
8927 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se>
8928
8929 * progmodes/f90.el: Change of regular expressions for type to
8930 correct highlighting and identation. Some small fixes for
8931 compatibility with XEmacs.
8932
8933 1999-01-05 Stephen Eglen <stephen@gnu.org>
8934
8935 * mspools.el (mspools-vm-system-mail): Provide an alternative
8936 value based on rmail-spool-directory if $MAIL is not defined.
8937
8938 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
8939
8940 * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
8941 (reftex-section-info): Handle negative section levels.
8942 (reftex-view-crossref-extra): New option.
8943 (reftex-view-crossref): Generalized to work in more places.
8944 (reftex-find-citation-regexp-format, reftex-find-reference-format,
8945 reftex-macros-with-labels, reftex-global-search-marker): New variables.
8946 (reftex-view-cite-locations-from-bibtex): New command.
8947 (reftex-view-regexp-match, reftex-global-search,
8948 reftex-global-search-continue): New functions.
8949 (reftex-extract-bib-entries): No error for non-existing BibTeX
8950 file, just a message.
8951 (reftex-extract-bib-entries): Better error handling.
8952 (reftex-select-with-char): Use `*RefTeX Select*' for selection
8953 help and force it on current frame.
8954 (reftex-default-bibliography): New function.
8955 (reftex-access-parse-file): Check consistency after loading a
8956 parse file. When inconsistent, enfore rescan.
8957 (reftex-check-parse-consistency): New function.
8958 (easy-menu-define): Options section drastically shortened.
8959
8960 1999-01-05 Kenichi Handa <handa@etl.go.jp>
8961
8962 * language/thai-util.el (thai-compose-string): New function.
8963
8964 1999-01-04 Inge Frick <inge@nada.kth.se>
8965
8966 * easymenu.el (easy-menu-define): Doc fix.
8967 (easy-menu-create-menu): New keyword :included.
8968 (easy-menu-do-add-item): New keyword :included. SUFFIX may
8969 be an expression, not only a string. Simulate style `button'.
8970 Use easy-menu-define-key-intern instead of easy-menu-define-key.
8971 (easy-menu-define-key-intern): New function.
8972 (easy-menu-add-item): Understand value returned from
8973 easy-menu-item-present-p and easy-menu-remove-item.
8974 (easy-menu-return-item): New function.
8975 (easy-menu-item-present-p, easy-menu-remove-item): Use it.
8976
8977 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu>
8978
8979 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
8980 Use rmail-output-read-rmail-file-name to read the file name.
8981 Always call rmail-output-to-rmail-file noninteractively.
8982 When count > 1, do the loop here.
8983 Handle rmail-delete-after-output here.
8984 (rmail-summary-output): Similar changes.
8985
8986 * mail/rmailout.el: Provide `rmailout'.
8987 (rmail-output-read-rmail-file-name): New function.
8988 (rmail-output-to-rmail-file): Use that.
8989 (rmail-output-read-file-name): New function.
8990 (rmail-output): Use that.
8991
8992 * files.el (find-file-noselect): Let /: suppress wildcard matching.
8993 Error if wildcard matches no files.
8994
8995 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu>
8996
8997 * menu-bar.el (clipboard-yank): Doc fix.
8998
8999 * info.el (Info-insert-dir): Chase symlinks for file-attributes.
9000
9001 1998-12-31 Markus Rost <rost@delysid.gnu.org>
9002
9003 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
9004
9005 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk>
9006
9007 * rmail.el (rmail-encode-string): Make sure mask value is
9008 positive; (emacs-pid) returns a negative number on Windows 9x
9009 which causes odd behaviour.
9010
9011 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org>
9012
9013 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
9014 and about w32-* variables unless on Windows/NT.
9015
9016 1998-12-31 Boris Goldowsky <boris@alum.mit.edu>
9017
9018 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
9019 if buffer is modified; ask about all modified buffers.
9020
9021 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu>
9022
9023 * simple.el (what-cursor-position): Fix previous change.
9024
9025 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu>
9026
9027 * mail/sendmail.el (mail-mode): Eliminate ambiguous match
9028 from paragraph-start.
9029
9030 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org>
9031
9032 * international/mule-cmds.el (prefer-coding-system): If the
9033 argument requires specific EOL conversion type, make the default
9034 coding systems use that.
9035
9036 1998-12-30 Drew Csillag <drew_csillag@geocities.com>
9037
9038 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
9039 Use shell-command-on-region.
9040 (m4-start-m4, m4-end-m4): Functions deleted.
9041
9042 1998-12-30 Michael Ernst <mernst@alum.mit.edu>
9043
9044 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
9045
9046 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9047
9048 * browse-url.el (browse-url-mail): Give argument SEND-ACTION
9049 to compose-mail in the correct places and as a list.
9050
9051 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp>
9052
9053 * page-ext.el: Added mouse-selection feature for pages directory buffer.
9054 (pages-directory-map): Bind mouse-2
9055 (pages-copy-header-and-position): Put text property.
9056 (pages-directory-goto-with-mouse): New function.
9057
9058 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org>
9059
9060 * international/codepage.el (cp-make-coding-systems-for-codepage):
9061 Doc fix.
9062 (cp-coding-system-for-codepage-1): Likewise.
9063
9064 1998-12-29 Kenichi Handa <handa@etl.go.jp>
9065
9066 * language/thai-util.el (thai-post-read-conversion): Handle Thai
9067 composition sequence correctly here instead of calling
9068 thai-compose-region.
9069
9070 * textmodes/fill.el (fill-region-as-paragraph): While deleting a
9071 newline in multibyte buffer, if previous or next character is a
9072 composite char, check the first component of the composite char.
9073
9074 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org>
9075
9076 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
9077 and track-mouse.
9078
9079 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9080
9081 * mail/sendmail.el (mail-yank-original): Remove text properties
9082 after insertion.
9083 (mail-yank-region): Barf if no mark is set in the message
9084 being replied to.
9085
9086 * help.el (function-called-at-point): First look for function at point.
9087
9088 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu>
9089
9090 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
9091
9092 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9093
9094 * simple.el (what-cursor-position): Print character encoding also.
9095
9096 1998-12-26 Dave Love <fx@gnu.org>
9097
9098 * textmodes/flyspell.el: If local-maps work, don't put
9099 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
9100 in flyspell-mouse-map (only).
9101 (flyspell-use-local-map): New variable.
9102 Use a different mouse-2 binding in that case,
9103 and don't add to minor-mode-map-alist.
9104 (make-flyspell-overlay, flyspell-correct-word):
9105 Test flyspell-use-local-map.
9106
9107 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9108
9109 * files.el (file-expand-wildcards): Handle wildcards in directory name.
9110 Be careful about whether to return a relative file name,
9111 and if so, relative to what directory.
9112
9113 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
9114
9115 * emacs-lisp/easymenu.el (easy-menu-get-map):
9116 Change global map only if this menu exists in the global map already,
9117 and not in the local map.
9118 (easy-menu-do-add-item): Fix error message.
9119
9120 * foldout.el (foldout-inhibit-key-bindings):
9121 Avoid concatenating onto outline-minor-mode-prefix.
9122 Make a new keymap for that prefix, if it does not already have one.
9123
9124 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu>
9125
9126 * cperl-mode.el:
9127 Can use linear algorithm for indentation if Emacs supports it.
9128 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp.
9129 (cperl-after-block-p): Likewise.
9130 (cperl-after-block-and-statement-beg): Likewise.
9131 (cperl-after-block-p): After END/BEGIN we are a block.
9132 (cperl-after-expr-p): Skip labels when checking
9133 (cperl-indent-region): Make a marker for END - text added/removed.
9134 Disable hooks during the call (how to call them later?).
9135 Now indents 820-line-long function in 6.5 sec (including
9136 syntaxification) the first time (when buffer has few
9137 properties), 7.1 sec the second time.
9138 (cperl-indent-region): Do not indent whitespace lines
9139 (cperl-style-alist)
9140 Include `cperl-merge-trailing-else' where the value is clear.
9141 (cperl-styles-entries): Likewise.
9142 (cperl-problems): Improvements to docs.
9143 (cperl-tips): Likewise.
9144 (cperl-non-problems): Likewise.
9145 (cperl-mode): Make lazy syntaxification possible.
9146 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
9147 `font-lock-unfontify-region-function' was set to a wrong function.
9148
9149 (cperl-find-pods-heres): Safe a position in buffer where it is safe to
9150 restart syntaxification. Changed so that -d ?foo? is a RE. Do
9151 not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
9152 but 1<<6 was considered as HERE-doc.
9153 <file/glob> made into a string.
9154 Postpone addition of faces after syntactic step.
9155 Recognition of <FH> was wrong.
9156 Highlight `gem' in s///gem as a keyword. `qr' recognized.
9157 Knows that split// is null-RE.
9158 Highlights separators in 3-parts expressions as labels.
9159 <> was considered as a glob.
9160 Would err if the last line is `=head1'.
9161 $a-1 ? foo : bar; was a considered a regexp.
9162 `<< (' was considered a start of HERE-doc.
9163 mark qq[]-etc sections as syntax-type=string
9164 Was not processing sub protos after a comment ine.
9165 Was treating $a++ <= 5 as a glob.
9166 Tolerate unfinished REx at end-of-buffer.
9167 `unwind-protect' was left commented.
9168 / and ? after : start a REx.
9169
9170 (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
9171 Better default, customizes to `message' too, off in text-mode.
9172
9173 (cperl-array-face): Renamed from `font-lock-emphasized-face',
9174 `defface'd.
9175 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
9176 `defface'd.
9177 (cperl-emacs-can-parse): New state variable.
9178 (cperl-indent-line): Corrected to use global state.
9179 (cperl-calculate-indent): Likewise.
9180 (cperl-fix-line-spacing): Likewise (not used yet).
9181 (cperl-calculate-indent): Did not consider `,' as
9182 continuation mark for statements.
9183 (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
9184 Remove another parse-data optimization at toplevel: would
9185 indent correctly.
9186 Correct for labels when calculating indentation of continuations.
9187 Docstring updated.
9188 (cperl-choose-color): Converted to a function (to be
9189 compilable in text-mode).
9190 (cperl-dark-background): Disable without window-system.
9191 Do `defface' only if window-system.
9192 (cperl-fix-line-spacing): Sped up to bail out early.
9193 (x-color-defined-p): Was not compiling on XEmacs
9194 Was defmacro'ed with a tick. Remove another def.
9195 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
9196 (cperl-unwind-to-safe): New function.
9197 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
9198 (cperl-fontify-syntaxically): Unwinds start and end to go out of
9199 long strings (not very successful).
9200 (cperl-forward-re): Highlight the trailing / in s/foo// as string.
9201 Highlight the starting // in s//foo/ as function-name.
9202 Emit a meaningful error instead of a cryptic one for an
9203 uncomplete REx near end-of-buffer.
9204
9205 (cperl-electric-keyword): `qr' recognized.
9206 (cperl-electric-else): Likewise
9207 (cperl-to-comment-or-eol): Likewise
9208 (cperl-make-regexp-x): Likewise
9209 (cperl-init-faces): Likewise, and `lock' (as overridable?).
9210 Corrected to use new macros;
9211 `if' for copying `reference-face' to `constant-face' was backward.
9212 remove init `font-lock-other-emphasized-face',
9213 `font-lock-emphasized-face', `font-lock-keyword-face'.
9214 Interpolate `cperl-invalid-face'.
9215 (cperl-make-regexp-x): Misprint in a message.
9216 (cperl-syntaxify-unwind): New configuration variable
9217 (cperl-fontify-m-as-s): New configuration variable
9218 (cperl-electric-pod): Check for after-expr was performed
9219 inside of POD too.
9220 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
9221 (cperl-clobber-mode-lists): New configuration variable.
9222 (cperl-not-bad-style-regexp): Updated.
9223 Init: `cperl-is-face' was busted.
9224 (cperl-make-face): New macros.
9225 (cperl-force-face): New macros.
9226 (font-lock-other-type-face): Done via `defface' too.
9227 (cperl-nonoverridable-face): New face. Renamed from
9228 `font-lock-other-type-face'.
9229 (cperl-init-faces-weak): Use `cperl-force-face'.
9230 (cperl-comment-indent): Commenting __END__ was not working.
9231 (cperl-indent-for-comment): Likewise.
9232 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'.
9233 When removing old TAGS info was not relativizing filename.
9234 (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
9235 Another try to work around XEmacs problems. Better progress messages.
9236 (toplevel): Require custom unprotected => failure on 19.28.
9237 (cperl-xemacs-p): Defined when compile too
9238 (cperl-find-tags): Was writing line/pos in a wrong order,
9239 pos off by 1 and not at beg-of-line.
9240 (cperl-etags-snarf-tag): New macro
9241 (cperl-etags-goto-tag-location): New macro
9242 (cperl-version): New variable. New menu entry
9243 random docstrings: References to "future" 20.3 removed.
9244 Menu was described as `CPerl' instead of `Perl'
9245 (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
9246 (cperl-toggle-construct-fix): Was toggling to t instead of 1.
9247 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face'
9248 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
9249 `font-lock-reference-face', `font-lock-keyword-face'.
9250 Use `eval-after-load'.
9251 Remove not-CPerl-related faces.
9252 (cperl-tips-faces): New variable and an entry into Mini-docs.
9253 (cperl-indent-exp): Was not processing else-blocks.
9254 (cperl-get-state): NOP line removed.
9255 (cperl-ps-print): New function and menu entry.
9256 (cperl-ps-print-face-properties): New configuration variable.
9257 (cperl-invalid-face): New configuration variable.
9258 (perl-font-lock-keywords): Highlight trailing whitespace
9259 (cperl-contract-levels): Documentation corrected.
9260 (cperl-contract-level): Likewise.
9261 (cperl-ps-extend-face-list): New macro.
9262 (cperl-invalid-face): Change to ''underline.
9263
9264 1998-12-25 Markus Rost <rost@delysid.gnu.org>
9265
9266 * mail/rmailout.el (rmail-output): Abbreviate name of default-file
9267 for read-file-name.
9268 (rmail-output-to-rmail-file): Likewise.
9269
9270 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
9271
9272 * emacs-lisp/easymenu.el (easy-menu-get-map):
9273 If MENU is nil, use global menu-bar map.
9274 (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
9275 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
9276
9277 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9278
9279 * ps-mule.el (ps-mule-begin-job): Programming uniformization.
9280
9281 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9282
9283 * ps-print.el (ps-print-version): New version number (4.1.3).
9284
9285 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org>
9286
9287 * international/mule-cmds.el: Use make-sparse-keymap instead of
9288 define-prefix-key when defining MULE menu items.
9289
9290 * info.el (Info-node-at-bob-matching): New function.
9291 (Info-find-node, Info-build-node-completions): Call it.
9292
9293 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org>
9294
9295 * help.el (describe-function-1): Say "keymap", not "Lisp macro",
9296 when this is an autoloaded keymap.
9297
9298 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org>
9299
9300 * international/codepage.el (cp-coding-system-for-codepage-1):
9301 Create separate encoders and decoders, for DOS and Unix. Make the
9302 usual family of 3 coding systems, so that automatic detection of
9303 EOL type works.
9304 (cp-make-coding-systems-for-codepage): Don't intern DOS- and
9305 Unix-specific symbols here, and don't call
9306 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi
9307 Handa <handa@etl.go.jp>.)
9308
9309 * dos-vars.el (dos-codepage-setup-hook): New defcustom.
9310
9311 * term/internal.el (IT-character-translations): New variable, an
9312 alist used to display characters for which there's no glyphs in
9313 the current codepage.
9314 (IT-display-table-setup): New function, sets up the DOS terminal
9315 for a given codepage.
9316 (dos-codepage-setup): New function, sets up the MULE environment
9317 for the current value of dos-codepage.
9318 (top-level if): In the multibyte mode, turn on
9319 unibyte-display-via-language-environment. In the unibyte mode,
9320 set up the special syntax tables to map lower- to upper case and
9321 back.
9322
9323 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org>
9324
9325 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
9326 (speedbar-frame-plist) Remove useless comments.
9327 (speedbar-frame-mode) Do not specify height if it is in the param list.
9328 Use default y position w/out changing it.
9329 If default x position is a list, keep, calculate the non-list X
9330 value when devining an initial position.
9331 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
9332 (speedbar-tag-group-name-minimum-length): New variable.
9333 (speedbar-frame-parameter): New compatibility function.
9334 (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
9335 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
9336 groups to keep things in the right order, and to help with some
9337 naming conventions.
9338 (speedbar-create-tag-hierarchy): Enable buffer local version of
9339 `speedbar-tag-hierarchy-method' in the buffer we are tagging.
9340 (speedbar-line-path) Make DEPTH param optional. Devine it if absent.
9341 the case, derive it from the cursor location in speedbar.
9342
9343 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org>
9344
9345 * international/mule-cmds.el (set-language-environment): On MS-DOS
9346 terminals, install DOS-specific nonascii-translation-table if the
9347 language info doesn't specify one. Pass the default eol-type to
9348 set-language-environment-coding-systems.
9349 (set-default-coding-systems): Copy the eol-type property for the
9350 new default values of {buffer-file,process}-coding-system from the
9351 old defaults.
9352 (set-language-environment-coding-systems): Accept an optional
9353 argument EOL-TYPE, and set the eol-type property of the default
9354 coding systems accordingly.
9355 (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
9356 (set-keyboard-coding-system): Likewise.
9357 (set-default-coding-systems): Don't set
9358 default-terminal-coding-system on MS-DOS to anything but nil.
9359 (prefer-coding-system): Describe in the doc string that
9360 default-terminal-coding-system is not changed on MS-DOS.
9361 (set-language-environment): For MS-DOS, set standard syntax table
9362 and display table for all characters with code above 127.
9363 (standard-display-european-internal): For MS-DOS, pass all
9364 characters with code above 127 directly to the terminal, and don't
9365 remap characters 160 and 146 in the unibyte case.
9366
9367 * international/codepage.el: New file.
9368
9369 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9370
9371 * diary-lib.el (diary-float): Fix end-of-year error and typos in
9372 comments.
9373
9374 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
9375
9376 * map-ynp.el (map-y-or-n-p): Ignore input methods.
9377
9378 * subr.el (read-passwd): Likewise.
9379
9380 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org>
9381
9382 * info.el (Info-find-node): Add 1 to the position read from the
9383 tag table. Don't fail if the node delimiter ^_ is the first
9384 character in the file.
9385 (Info-insert-dir): Don't fail when the node delimiter ^_ is the
9386 first character in the file.
9387 (Info-read-subfile): Likewise.
9388 (Info-select-node): Likewise.
9389 (Info-build-node-completions): Likewise.
9390
9391 1998-12-16 Richard Stallman <rms@gnu.org>
9392
9393 * term/x-win.el (x-cut-buffer-or-selection-value):
9394 If clipboard is enabled, try it before PRIMARY selection.
9395
9396 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9397
9398 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
9399 insert c-cedilla and C-cedilla respectively, like in latin-1.
9400
9401 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org>
9402
9403 * language/hebrew.el: Don't use sublists in the flags argument
9404 passed to make-coding-system.
9405
9406 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9407
9408 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
9409 list of character sets found by find-charset-region.
9410
9411 * ps-mule.el: Always require ps-print. Move some function
9412 definitions for Emacs 20.2 and the earlier to ps-print.el.
9413 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
9414
9415 * ps-print.el: Define several functions for Emacs 20.2 and the
9416 earlier version.
9417 (ps-printer-name): Check if printer-name is bound.
9418
9419 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9420
9421 * ps-mule.el: Programming uniformization and little code improvement.
9422 (ps-mule-prepare-font): Programming uniformization.
9423 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
9424 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
9425
9426 * ps-bdf.el: Programming uniformization and little code improvement.
9427 (bdf-search-and-read): New fun.
9428 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
9429 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
9430 (bdf-info-relative-compose, bdf-info-baseline-offset)
9431 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
9432 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
9433 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
9434 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
9435 improvement.
9436
9437 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9438
9439 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
9440 and mule related code extraction. Autoload ps-mule funs.
9441
9442 * ps-mule.el: Doc fix. Require ps-print only when compiled.
9443 (ps-mule-prologue-generated): New fun.
9444 (ps-mule-plot-string): Add autoload cookie.
9445 (ps-mule-begin-job): Call ps-mule-prologue-generated.
9446
9447 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9448
9449 * ps-bdf.el: Require ps-mule instead of ps-print.
9450 (bdf-directory-list): Add autoload cookie.
9451
9452 * ps-mule.el: New file. Mule related code extracted from
9453 ps-print.el. Require ps-print, provide ps-mule.
9454 (ps-multibyte-buffer): Add autoload cookie.
9455 (ps-mule-prepare-ascii-font): New fun.
9456 (ps-mule-set-ascii-font): New fun.
9457 (ps-mule-skip-same-charset): Fun deleted.
9458 (ps-mule-plot-string): Set ps-mule-current-charset.
9459 (ps-mule-initialize): Add autload cookie. Don't set
9460 ps-mule-font-info-database here.
9461 (ps-mule-begin-job): Renamed from ps-mule-begin. Update
9462 ps-mule-font-info-database and ps-control-or-escape-regexp.
9463 (ps-mule-begin-page): New fun.
9464
9465 * ps-print.el: Mule related code moved to ps-mule.el.
9466 (ps-begin-job): While setting ps-control-or-escape-regexp, don't
9467 check ps-mule-charset-list.
9468 (ps-begin-page): Don't set ps-mule-current-charset, instead call
9469 ps-mule-begin-page.
9470 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
9471 (ps-plot-region): Don't set ps-mule-current-charset, instead call
9472 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset,
9473 instead skip same charsets by itself.
9474 (ps-generate): Call ps-mule-initialize of needs-begin-file is
9475 non-nil. Call ps-mule-begin-job.
9476
9477 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9478
9479 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf
9480 instead of bdf.
9481
9482 * ps-print.el (ps-mule-font-info-database): Doc-string modified.
9483 (ps-mule-external-libraries): New element FEATURE.
9484 (ps-mule-init-external-library): Ajusted for the above change.
9485 (ps-mule-generate-font): Likewise.
9486 (ps-mule-generate-glyphs): Likewise.
9487 (ps-mule-prepare-font): Likewise.
9488 (ps-mule-initialize): Likewise.
9489 (ps-begin-file): Superfluous tailing parenthesis deleted.
9490
9491 1998-12-15 Kenichi Handa <handa@etl.go.jp>
9492
9493 * international/fontset.el (x-decompose-font-name): If PATTERN
9494 doesn't have any wild cards, return a vector made from a name that
9495 is found by x-resolve-font-name found. Comments added.
9496
9497 * international/mule-cmds.el (find-coding-systems-for-charsets):
9498 Handle the case of unknown charset.
9499 (find-multibyte-characters): If invalid multibyte characters are
9500 found, return the corresponding strings instead of character
9501 codes.
9502 (find-multibyte-characters): Adjusted for the above change.
9503 (select-safe-coding-system): For a unibyte buffer, always returns
9504 DEFAULT-CODING-SYSTEM.
9505 (get-charset-property): Fix previous change. Make it a function.
9506 (put-charset-property): Make it a function.
9507
9508 * international/mule.el (make-coding-system): Set mime-charset
9509 property of *-with-esc coding system to nil.
9510
9511 * international/quail.el (quail-point-in-conversion-region): New
9512 function.
9513 (quail-conversion-backward-delete-char): When a key sequence is
9514 being translated, call quail-delete-last-char.
9515
9516 * language/devan-util.el
9517 (devanagari-reorder-glyphs-for-decomposition): Fix the way to
9518 handle devanagari-decomposition-rules.
9519
9520 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org>
9521
9522 * textmodes/texinfo.el (texinfo-tex-buffer): Bind
9523 tex-start-options-string to empty string.
9524 (texinfo-tex-region): Use texinfo-tex-trailer as documented.
9525
9526 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org>
9527
9528 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
9529 5xx responses are already handled properly).
9530
9531 1998-12-13 Richard Stallman <rms@gnu.org>
9532
9533 * progmodes/compile.el (compilation-error-regexp-alist): Insist
9534 on a non-digit in the file name.
9535
9536 * simple.el (comment-region): Handle comment-padding
9537 separately for insertion and for deletion, in the right way for each.
9538
9539 1998-12-13 Felix Lee <flee@cygnus.com>
9540
9541 * progmodes/compile.el (compilation-error-regexp-alist): Fix
9542 regexp to match "ChangeLog:1:1998-12-09 ..."
9543
9544 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org>
9545
9546 * cus-start.el (dos-unsupported-char-glyph): Add.
9547
9548 1998-12-11 Dave Love <fx@gnu.org>
9549
9550 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
9551 forward-sexp in condition-case.
9552
9553 * emacs-lisp/find-func.el (find-function-search-for-symbol):
9554 Remove unnecessary test on `library' for explicit file name.
9555 Widen scope of save-match-data.
9556
9557 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org>
9558
9559 * international/mule.el (load-with-code-conversion): If the loaded
9560 file was inserted with no-conversion or raw-text coding system,
9561 make the buffer unibyte.
9562
9563 1998-12-09 Richard Stallman <rms@gnu.org>
9564
9565 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9566 Get rid of nested loops.
9567
9568 * mouse.el (mouse-drag-vertical-line):
9569 If WHICH-SIDE is not `right', then scroll bars are on the left.
9570
9571 * loadhist.el (load-history-loaded): defvar moved to help.el.
9572
9573 * help.el (symbol-file-load-history-loaded): Variable renamed,
9574 and defvar moved from loadhist.el.
9575 (symbol-file): Renamed from describe-function-find-file.
9576 Load fns-VERSION.el here.
9577 (describe-variable, describe-function-1): Use symbol-file.
9578
9579 * textmodes/tex-mode.el (tex-generate-zap-file-name):
9580 Don't start the name with #.
9581
9582 * ispell.el: Take out the eval-when's.
9583
9584 1998-12-09 Peter Breton <pbreton@ne.mediaone.net>
9585
9586 * dirtrack.el (dirtrack-directory-change-hook): New hook.
9587 (dirtrack): Run it. Make debug message more verbose.
9588
9589 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
9590
9591 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
9592 name of the abbrev table, and provide support for XEmacs.
9593 (octave-xemacs-p): New variable.
9594
9595 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
9596
9597 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
9598 exit, when mail-interactive is nil.
9599
9600 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
9601
9602 * files.el (after-find-file): Message fix.
9603
9604 1998-12-09 Ken Stevens <stevens@kdstevens.com>
9605
9606 * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
9607
9608 1998-12-09 Geoff Voelker <voelker@cs.washington.edu>
9609
9610 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
9611 filenames using backslashes.
9612
9613 1998-12-09 Dave Love <fx@gnu.org>
9614
9615 * browse-url.el (browse-url-mail): Call compose-mail-other-window
9616 with correct number of args.
9617 (browse-url-maybe-new-window): New arg. Callers changed.
9618
9619 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
9620 comment.
9621
9622 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
9623
9624 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
9625
9626 1998-12-08 Markus Rost <rost@delysid.gnu.org>
9627
9628 * vc.el (vc-rcs-release): Fix Type.
9629 (vc-sccs-release): Fix Type.
9630 (vc-cvs-release): Fix Type.
9631
9632 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
9633 arg work right.
9634
9635 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
9636 output of last undeleted message.
9637
9638 1998-12-07 Geoff Voelker <voelker@cs.washington.edu>
9639
9640 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9641 (buffer-undo-list) [windows-nt]: Use different relative path.
9642
9643 1998-12-07 Simon Marshall <simon@gnu.org>
9644
9645 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
9646
9647 1998-12-05 Markus Rost <rost@delysid.gnu.org>
9648
9649 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
9650
9651 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
9652
9653 1998-12-04 Markus Rost <rost@delysid.gnu.org>
9654
9655 * info.el (Info-menu): Don't return error if point is between menu
9656 header and first menu item.
9657
9658 1998-12-04 Dave Love <fx@gnu.org>
9659
9660 * help.el (describe-function-1): Fix description for alias.
9661
9662 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org>
9663
9664 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
9665 specifications from summary line.
9666
9667 * rect.el (delete-whitespace-rectangle): Mark for autoload.
9668 (close-rectangle): Define alias only once in loaddefs.el.
9669
9670 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org>
9671
9672 * term/internal.el: Remove code which sets up a special syntax
9673 table for non-ASCII characters.
9674
9675 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org>
9676
9677 * dos-w32.el (direct-print-region-function): Try to ensure that
9678 printer-name is expanded to a file name on a local drive;
9679 sometimes printing a file loaded from a network volume fails.
9680 (direct-print-region-function): Add a function to
9681 write-region-annotate-functions to append a formfeed character to
9682 the region being printed, if the region doesn't end with a
9683 formfeed already. This avoids creating a second print job
9684 containing a blank page when print spooling is enabled on Windows.
9685
9686 1998-12-02 Dave Love <fx@gnu.org>
9687
9688 * help.el (help-make-xrefs): Use `info', not the non-autoloaded
9689 `Info-goto-node'.
9690
9691 1998-12-02 Richard Stallman <rms@gnu.org>
9692
9693 * help.el (temp-buffer-resize-mode): Doc fix.
9694
9695 * cus-edit.el (custom-save-delete): Save point before
9696 reading a sexp, rather than backing up.
9697
9698 * international/iso-transl.el: Fix previous change.
9699
9700 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
9701
9702 * vc.el (vc-dired-window-configuration, vc-ediff-windows,
9703 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
9704 Added defvars to suppress compilation warnings.
9705
9706 1998-11-30 Ken Stevens <k.stevens@ieee.org>
9707
9708 * ispell.el: Improved and fixed customize for variables:
9709 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
9710 ispell-dictionary-alist, ispell-skip-sgml.
9711 Improved and fixed comments in variables and messages for
9712 functions: ispell-help-in-bufferp, ispell-local-dictionary,
9713 ispell-menu-map, ispell-checking-message, ispell-parser,
9714 ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
9715 ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
9716 ispell-comments-and-strings, ispell-continue, ispell-complete-word,
9717 ispell-message-text-end, ispell-add-per-file-word-list.
9718 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
9719 system is now required for all languages. Casechars improved for
9720 castellano, castellano8, and norsk dictionaries. Dictionary
9721 norsk7-tex added. Dictionary polish added.
9722 (ispell-dictionary-alist): Redefined at load-time to support
9723 dictionary changes.
9724 (ispell-menu-map): Redefined at load-time to support menu changes.
9725 (ispell-check-version): New alias for `check-ispell-version'.
9726 (ispell-parse-output): Fixed matching for ispell error messages.
9727 Correctly returns spelling suggestions in order generated by ispell
9728 process.
9729 (check-ispell-version): Ensure `case-fold-search' doesn't get
9730 redefined.
9731 (ispell-complete-word): Ensure `case-fold-search' doesn't get
9732 redefined. Fix bug that didn't respect case of word being completed.
9733 (ispell-init-process): Set process coding system to be compatible
9734 with emacs processes and the ispell process.
9735 (ispell-kill-ispell): Ensures ispell process has terminated before
9736 starting new process. This can otherwise confuse process filters
9737 and hang the ispell process.
9738 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
9739 skipping support for sgml.
9740 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r
9741 which could cause `ispell-complete-word' to hang.
9742 (ispell-message): Improved message reference matching. Ensure
9743 `case-fold-search' doesn't get redefined.
9744 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
9745 get redefined. Fixed bug in returning to nroff mode from tex mode.
9746 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
9747 get redefined.
9748
9749 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu>
9750
9751 * textmodes/flyspell.el (flyspell-check-word-p):
9752 Don't delay inside a kbd macro.
9753
9754 * subr.el (make-local-hook): Return the hook variable.
9755
9756 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9757
9758 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
9759 Use a timer instead of post-command-hook.
9760 (hscroll-timer): New variable.
9761
9762 1998-11-30 Dave Love <fx@gnu.org>
9763
9764 * help.el (help-xref-button): Do nothing if text already has the
9765 help-xref property.
9766 (describe-variable): Revert previous change to hyperlink to source.
9767
9768 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
9769
9770 * bindings.el (features): Add `base64' to this list.
9771
9772 * loadhist.el (symbol-file): Doc fix.
9773
9774 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9775
9776 * files.el (hack-one-local-variable): Cope with non-file buffers.
9777
9778 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu>
9779
9780 * help.el (describe-mode): Put major mode first.
9781
9782 * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
9783 to support special-display and same-window features.
9784
9785 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu>
9786
9787 * simple.el (transpose-subr, transpose-subr-1): Rename variables
9788 bound in one function and used in the other.
9789 (transpose-subr-start1, transpose-subr-start2): Add defvars.
9790 (transpose-subr-end1, transpose-subr-end2): Add defvars.
9791
9792 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu>
9793
9794 * autoinsert.el (auto-insert-alist): Use user-mail-address.
9795
9796 1998-11-26 Kenichi Handa <handa@etl.go.jp>
9797
9798 * international/ccl.el (ccl-dump-translate-character-const-tbl):
9799 Give format correct control string.
9800
9801 * international/mule.el (define-translation-table): Fix bug of
9802 setting incorrect translation-table-id. If the first element of
9803 ARGS is a translation table, just register it.
9804
9805 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
9806 property.
9807
9808 1998-11-24 Michael Ernst <mernst@alum.mit.edu>
9809
9810 * thingatpt.el (thing-at-point-url-at-point): Don't use current
9811 syntax table to determine what is whitespace.
9812
9813 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu>
9814
9815 * frame.el (frame-parameter): Doc fix.
9816
9817 * textmodes/tex-mode.el (tex-feed-input): New function.
9818 (tex-define-common-keys): Add binding for C-c C-m.
9819
9820 1998-11-23 Dave Love <fx@gnu.org>
9821
9822 * progmodes/fortran.el: Various minor doc fixes.
9823 (fortran-font-lock-keywords-1): Add `d' to comment-chars.
9824 (fortran-with-subprogram-narrowing): New macro.
9825 (fortran-check-for-matching-do): Use it.
9826 (fortran-end-do): Use fortran-check-end-prog-re.
9827 (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
9828 (fortran-calculate-indent, fortran-calculate-indent): Likewise.
9829
9830 1998-11-23 Simon Marshall <simon@gnu.org>
9831
9832 * font-lock.el (font-lock-defaults): Doc fix.
9833 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
9834 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
9835
9836 * lazy-lock.el (lazy-lock-unstall):
9837 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
9838
9839 * fast-lock.el (fast-lock-save-cache-1):
9840 (fast-lock-cache-data): Rewritten to use with-temp-message.
9841
9842 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org>
9843
9844 * mail/rmail.el (rmail-set-message-counters-counter): Detect
9845 messages that have been added with DOS line endings and convert
9846 the line endings for such messages.
9847
9848 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
9849
9850 * help.el: Add resizing of temporary buffers.
9851 (temp-buffer-resize-mode): New command and variable.
9852 (temp-buffer-max-height): New variable.
9853 (resize-temp-buffer-window): New function.
9854
9855 * window.el (window-buffer-height): New function, split from
9856 shrink-window-if-larger-than-buffer.
9857 (shrink-window-if-larger-than-buffer): Use window-buffer-height.
9858
9859 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu>
9860
9861 * frame.el (initial-frame-alist): Add defcustom.
9862
9863 * shell.el (shell-prompt-pattern): Add defcustom.
9864
9865 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9866
9867 * message.el (message-ignored-supersedes-headers): Remove
9868 NNTP-Posting-Date.
9869
9870 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu>
9871
9872 * help.el (describe-mode): Don't avoid loop indirecting thru
9873 value of INDICATOR.
9874
9875 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu>
9876
9877 * help.el (describe-variable): Allow any variable with a defcustom,
9878 even if it is not a user variable.
9879
9880 * mail/rmail.el (mail-unsent-separator): Additional alternative.
9881
9882 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org>
9883
9884 * gnus/nntp.el (nntp-request-group): Allow for failures when
9885 requesting a new group.
9886
9887 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu>
9888
9889 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
9890
9891 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9892
9893 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
9894
9895 1998-11-19 Simon Marshall <simon@gnu.org>
9896
9897 * subr.el (with-temp-message): New macro.
9898
9899 * emacs-lisp/lisp-mode.el (with-temp-message):
9900 Add lisp-indent-function property.
9901
9902 1998-11-18 Dave Love <fx@gnu.org>
9903
9904 * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
9905
9906 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu>
9907
9908 * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
9909 This is not obsolete.
9910
9911 1998-11-18 Kenichi Handa <handa@etl.go.jp>
9912
9913 * textmodes/picture.el: Make a new map by make-keymap.
9914 (picture-desired-column): New variable.
9915 (picture-update-desired-column): New function.
9916 (picture-beginning-of-line): Set picture-desired-column to 0.
9917 (picture-end-of-line): Set picture-desired-column to the current
9918 column.
9919 (picture-forward-column): Pay attention to multi-column character.
9920 (picture-backward-column): Likewise.
9921 (picture-move-down): Likewise.
9922 (picture-move-up): Likewise.
9923 (picture-movement-nw): With prefix arg, move twice columns.
9924 (picture-movement-ne): Likewise.
9925 (picture-movement-sw): Likewise.
9926 (picture-movement-se): Likewise.
9927 (picture-set-motion): Handle two-column movements.
9928 (picture-move): Call picture-move-down or picture-forward-column
9929 only when necessary.
9930 (picture-insert): Pay attention to picture-desired-column.
9931 (picture-self-insert): Likewise.
9932 (picture-clear-column): Pay attention to multi-column character.
9933 (picture-mode): Modify doc-string for two-column movement.
9934
9935 * rect.el (move-to-column-force): New function.
9936 (operate-on-rectangle): If coerce-tabs is non-nil, call
9937 move-to-column-force instead of move-to-column.
9938 (insert-rectangle): Call move-to-column-force instead of
9939 move-to-column.
9940 (open-rectangle-line): If begextra is not zero, call
9941 move-to-column-force.
9942
9943
9944 1998-11-16 Dave Love <fx@gnu.org>
9945
9946 * textmodes/sgml-mode.el Require skeleton when compiling.
9947 (sgml-font-lock-keywords-1): Accept single-letter tags.
9948 (v2): Defvar free variable.
9949
9950 1998-11-16 Sam Steingold <sds@goems.com>
9951
9952 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
9953 macro, not ELisp one.
9954
9955 1998-11-16 Kenichi Handa <handa@etl.go.jp>
9956
9957 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
9958 characters to symbol.
9959
9960 * language/japan-util.el (japanese-zenkaku-region): New optional
9961 arg KATAKANA-ONLY.
9962
9963 1998-11-16 Kenichi Handa <handa@etl.go.jp>
9964
9965 * international/mule.el
9966 (after-insert-file-set-buffer-file-coding-system): If the buffer
9967 is changed to unibyte, return inserted bytes.
9968
9969 * tar-mode.el (tar-header-block-tokenize): Decode codes of file
9970 and link names if necessary.
9971 (tar-header-block-summarize): Handle the case that file or link
9972 names are multibyte.
9973 (tar-summarize-buffer): At first set the current buffer unibyte,
9974 then if there are multibyte file names, change it to multibyte.
9975 (tar-mode): Get char position from tar-header-offset.
9976 (tar-extract): Avoid multibyte<->unibyte conversion in
9977 insert-buffer-subsring by setting both buffers unibyte
9978 temporarily.
9979 (tar-copy): Set the buffer unibyte while doing a work. Write
9980 without code conversion.
9981 (tar-expunge): Set the buffer unibyte while doing a work.
9982 (tar-alter-one-field): Likewise.
9983 (tar-clear-modification-flags): Compare byte position with
9984 tar-header-offset.
9985 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
9986 insert-buffer-subsring by setting both buffers unibyte
9987 temporarily. Pay attention to multibyteness while updating the
9988 descriptor-line.
9989 (tar-mode-write-file): Write without code conversion.
9990
9991 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
9992
9993 * nngateway.el: Require cl.
9994
9995 1998-11-15 Dave Love <fx@gnu.org>
9996
9997 * progmodes/fortran.el: Fix previous change:
9998 (fortran-end-prog-re1): Changed.
9999 (fortran-check-end-prog-re): New function.
10000 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
10001
10002 1998-11-13 Tom Breton <tob@world.std.com>
10003
10004 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
10005 GNU Emacs.
10006
10007 1998-11-13 Carsten Dominik <cd@delysid.gnu.org>
10008
10009 * textmodes/reftex.el: (reftex-finding-files): Group documentation
10010 fixed.
10011 (reftex-toc-toggle-file-boundary,
10012 reftex-toc-toggle-labels,
10013 reftex-toc-toggle-context,reftex-find-start-point): New functions.
10014 (reftex-toc-include-labels, reftex-toc-include-context,
10015 reftex-toc-include-file-boundaries,
10016 reftex-toc-keep-other-windows): New options.
10017 (reftex-use-text-after-label-as-context): Option removed.
10018 (reftex-extract-bib-entries): Protect use in non-latex
10019 buffers.
10020 (reftex-toc-visit-location): Renamed from
10021 `reftex-toc-visit-line'.
10022 (reftex-latin1-to-ascii): Works now with and without Mule.
10023 (reftex-truncate): Removed special stuff for Emacs 20.2.
10024 (reftex-get-offset): Made more general.
10025 (reftex-show-label-location): Renamed from
10026 `reftex-select-label-callback'.
10027 (reftex-pop-to-label): Function removed (using
10028 `reftex-show-label-location' instead.
10029 (reftex-insert-docstruct): Renamed from
10030 `reftex-make-and-insert-label-list'. Function args changed.
10031 (reftex-toc): Now uses `reftex-insert-docstruct' and
10032 `reftex-find-start-point'.
10033 (reftex-select-item): Use `reftex-find-start-point'.
10034 (reftex-toc-visit-line): Can display labels and file
10035 boundaries.
10036 (reftex-TeX-master-file): `(TeX-master-file)' protected.
10037
10038 1998-11-12 Sam Steingold <sds@goems.com>
10039
10040 * browse-url.el (browse-url): Handle the case when
10041 `browse-url-browser-function' is a lambda list.
10042
10043 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org>
10044
10045 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
10046 version string.
10047 * loadhist.el (symbol-file): Likewise
10048
10049 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM>
10050
10051 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
10052
10053 1998-11-11 Sam Steingold <sds@goems.com>
10054
10055 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
10056 `run-lisp' instead of signalling an error.
10057
10058 1998-11-11 Karl Heuer <kwzh@gnu.org>
10059
10060 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
10061
10062 1998-11-11 Richard Stallman <rms@gnu.org>
10063
10064 * vc-hooks.el (vc-toggle-read-only): Doc fix.
10065
10066 1998-11-11 Per Starback <starback@update.uu.se>
10067
10068 * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
10069 renamed svenska8 to svenska, and fixed and extended CASECHARS
10070 for it.
10071
10072 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org>
10073
10074 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
10075 handling if setpagedevice is not available.
10076 (ps-begin-file): Fix typo.
10077
10078 1998-11-11 Kenichi Handa <handa@etl.go.jp>
10079
10080 * international/mule-util.el (compose-chars-component): Signal
10081 error if CH is a rule-based composition character.
10082 (compose-chars): Signal error if an already compsed character is
10083 going to be composed by rule-base.
10084
10085 * term/x-win.el: If a resolved ASCII font name doesn't conform to
10086 full XLFD, don't try to get information of WEIGHT and SLANT from
10087 that font name.
10088
10089 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
10090
10091 * dos-w32.el (set-default-process-coding-system): Use function on
10092 before-init-hook to set default-process-coding-system based on
10093 enable-multibyte-characters.
10094
10095 * term/w32-win.el ([language-change]): For now ignore
10096 keyboard language-change events.
10097
10098 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org>
10099
10100 * ediff-util.el (ediff-make-temp-file): Run the prefix through
10101 convert-standard-file-name, but leave the results of
10102 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2
10103 characters if the original name already exists, or has a special
10104 handler.
10105
10106 1998-11-10 Karl Heuer <kwzh@gnu.org>
10107
10108 * international/iso-insert.el: Delete autoload cookies.
10109
10110 * international/iso-transl.el: Add autoload cookies.
10111
10112 1998-11-10 Richard Stallman <rms@gnu.org>
10113
10114 * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
10115 (ispell-process-line): Don't treat multibyte
10116
10117 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk>
10118
10119 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
10120 setpagedevice to specify the page size if setpagedevice is
10121 available. This is necessary to select the correct paper tray on
10122 Level 2 printers with multiple paper sizes available.
10123
10124 (ps-begin-file): Cope with font names that contain spaces, and
10125 call BeginDoc in a BeginSetup/EndSetup block.
10126
10127 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org>
10128
10129 * loadup.el (buffer-undo-list): Run fns-VERSION.el through
10130 convert-standard-filename.
10131
10132 * loadhist.el (symbol-file): Run fns-VERSION.el through
10133 convert-standard-filename.
10134
10135 1998-11-06 Richard Stallman <rms@gnu.org>
10136
10137 * textmodes/texinfmt.el (texinfo-format-scan):
10138 Detect the case of two @-commands in a row; process just the first.
10139 (texinfo-append-refill): If line has a @c, insert the @refill
10140 before it.
10141 (texinfo-format-refill): Return with point where the @refill was.
10142
10143 * files.el (hack-local-variables): Test local-enable-local-variables.
10144 (hack-local-variables-prop-line): Likewise.
10145 (set-auto-mode): Don't test local-enable-local-variables here.
10146 (enable-local-variables): Doc fix.
10147 (local-enable-local-variables): Doc fix.
10148 (normal-mode): Doc fix.
10149
10150 1998-11-06 Karl Heuer <kwzh@gnu.org>
10151
10152 * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
10153
10154 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM>
10155
10156 * simple.el (line-number-mode): Doc fix.
10157
10158 1998-11-06 Kenichi Handa <handa@etl.go.jp>
10159
10160 * international/fontset.el (create-fontset-from-fontset-spec):
10161 Give correct arg to `error'.
10162
10163 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org>
10164
10165 * textmodes/sgml-mode.el (html-mode): Doc fix.
10166 (sgml-name-8bit-mode): Fix missing format character in message string.
10167
10168 1998-11-05 Karl Heuer <kwzh@gnu.org>
10169
10170 * mail/sendmail.el (sendmail-send-it): Check for failure.
10171
10172 1998-11-05 Richard Stallman <rms@gnu.org>
10173
10174 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
10175
10176 * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
10177 (close-rectangle): Define as alias.
10178
10179 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu>
10180
10181 * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
10182
10183 1998-11-05 Dave Love <fx@gnu.org>
10184
10185 * help.el (describe-variable): Don't quote link to source.
10186
10187 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu>
10188
10189 * gud.el (gud-common-init): Use pop-to-buffer.
10190 (same-window-regexps): Add an element that matches all gud buffers.
10191
10192 1998-11-04 Jason Rumney <jasonr@altavista.net>
10193
10194 * term/w32-win.el (x-get-selection-value): Alias to
10195 x-cut-buffer-or-selection-value.
10196 (w32-standard-fontset-spec): New variable.
10197 (w32-create-initial-fontsets, mouse-set-font): Check whether
10198 new-fontset is available.
10199 (w32-use-w32-font-dialog): Enable use of set-variable.
10200
10201 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
10202
10203 * vc.el (with-vc-file, edit-vc-file): New macros.
10204
10205 1998-11-04 Kenichi Handa <handa@etl.go.jp>
10206
10207 * international/quail.el (quail-show-guidance-buf): Call
10208 set-minibuffer-window to set minibuffer window of the current
10209 frame correctly.
10210
10211 1998-11-03 Theodore Jump <tjump@tertius.com>
10212
10213 * term/w32-win.el: Require fontset.
10214
10215 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org>
10216
10217 * faces.el (set-face-font): Call resolve-fontset-name on w32.
10218 (set-face-font-auto): Ditto.
10219
10220 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
10221
10222 * mouse.el (mouse-drag-region): Fix typo.
10223
10224 1998-11-02 Dave Love <fx@gnu.org>
10225
10226 * progmodes/fortran.el Fix for fontification of strings lost somehow:
10227 (fortran-fontify-string): New function.
10228 (fortran-font-lock-keywords-1): Use it.
10229
10230 1998-11-02 Markus Rost <rost@delysid.gnu.org>
10231
10232 * comint.el (comint-file-name-quote-list): Doc fix.
10233
10234 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
10235
10236 * loadup.el (buffer-undo-list): Write fns-VERSION.el into
10237 build directory, not source directory.
10238
10239 * mouse.el (mouse-drag-region): Fake up a mouse-motion event
10240 if we did not get one for the final move.
10241
10242 1998-11-01 Dave Love <fx@gnu.org>
10243
10244 * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
10245 Don't funcall browse-url-browser-function.
10246
10247 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
10248 Don't funcall browse-url-browser-function.
10249
10250 * fortran.el (fortran-end-prog-re1): Fix the regexp.
10251
10252 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
10253
10254 * files.el (revert-buffer): Doc fix.
10255
10256 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
10257
10258 * textmodes/tex-mode.el (tex-start-options-string):
10259 Quote the backslashes with more backslashes.
10260
10261 1998-10-31 Dave Love <fx@gnu.org>
10262
10263 * webjump.el (webjump-sample-sites): Fix Lisp archive site.
10264 (webjump): Don't funcall browse-url-browser-function.
10265
10266 1998-10-30 Kenichi Handa <handa@etl.go.jp>
10267
10268 * international/quail.el (quail-start-translation): Handle
10269 switching of the frame in read-key-sequence.
10270 (quail-start-conversion): Likewise.
10271 (quail-show-guidance-buf): Detach quail-guidance-buf from any
10272 windows before setting an appropriate window for it.
10273 (quail-hide-guidance-buf): Use window-minibuffer-p. Set
10274 quail-guidance-win to nil.
10275 (quail-update-guidance): If quail-guidance-buf is not in the
10276 selected frame, call quail-show-guidance-buf again.
10277
10278 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no>
10279
10280 * progmodes/pascal.el (pascal-mode):
10281 `blink-matching-paren-dont-ignore-comments' set to t.
10282
10283 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10284
10285 * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
10286
10287 1998-10-30 Dave Love <fx@gnu.org>
10288
10289 * vc.el (vc-backend-merge-news): Check for "P" output.
10290
10291 * help.el (describe-variable): Hyperlink the definition.
10292
10293 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
10294
10295 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
10296 (sh-set-shell): Likewise.
10297
10298 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
10299
10300 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
10301 (edebug-on-error): Fix customize type to match that of
10302 debug-on-error.
10303
10304 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
10305
10306 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
10307 report-emacs-bug-address instead of undefined bug-gnu-emacs.
10308
10309 * international/mule-cmds.el (select-message-coding-system): Doc
10310 fix.
10311
10312 * international/mule-diag.el (describe-coding-system): Describe
10313 all flags.
10314
10315 * mail/sendmail.el (sendmail-coding-system,
10316 default-sendmail-coding-system): Doc fix.
10317
10318 * simple.el (shell-command-on-region): Doc fix.
10319
10320 * loadup.el: Write fns-*.el in current directory instead of
10321 data-directory since no installation directory exists yet. Mark
10322 buffer unmodified afterwards.
10323
10324 * loadhist.el (symbol-file): Load fns-*.el from exec-directory
10325 instead of data-directory since it is architecture dependent.
10326 (load-history-loaded): Update doc string.
10327
10328 1998-10-29 Geoff Voelker <voelker@cs.washington.edu>
10329
10330 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
10331 path as a default directory when canonicalizing names.
10332
10333 * w32-fns.el: Remove a dangling reference to a directory on the
10334 build machine.
10335
10336 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu>
10337
10338 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
10339 namespace related keywords such as `class', `body', `private',
10340 `variable', `namespace eval', etc.
10341 (tcl-imenu-generic-expression): Handle itcl body and class definitions.
10342 (tcl-mode): Added ":" as a word constituent to the syntax-alist of
10343 imenu and font-lock so that searches for \sw would find words
10344 containing colons.
10345
10346 * progmodes/etags.el (initialize-new-tags-table):
10347 Do not alter find-tag-marker-ring and tags-location-ring.
10348
10349 1998-10-27 Geoff Voelker <voelker@cs.washington.edu>
10350
10351 * term/w32-win.el: Require fontset.
10352 (w32-init-fontsets): New function (code from x-win.el).
10353
10354 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10355
10356 * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
10357 calendar-and-diary-frame-parameters): Add title parameter.
10358
10359 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
10360
10361 * completion.el (dynamic-completion-mode): New function to enable
10362 the mode. (Just loading the file now does not change anything.)
10363
10364 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10365
10366 * ps-print.el: User option for multibyte buffer handling and doc fix.
10367 (ps-multibyte-buffer): New user option.
10368 (ps-setup): Print new user option.
10369 (ps-print-quote): New fun.
10370 (ps-color-p, ps-mule-font-info-database-latin): New var.
10371 (ps-default-color, ps-mule-font-info-database)
10372 (ps-mule-font-info-database-ps-bdf): Adjust initialization.
10373 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
10374 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
10375 Little code improvement.
10376 (ps-mule-initialize): Initialize ps-mule-font-info-database.
10377 (ps-print-prologue-header, ps-font-family, ps-font-size)
10378 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
10379 (ps-build-face-reference, ps-mule-font-info-database-bdf)
10380 (ps-mule-external-libraries, ps-mule-init-external-library)
10381 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
10382 Doc fix.
10383 (ps-print-version): New version number (4.1.1) and doc fix.
10384 (ps-print-prologue-header): New user option.
10385 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
10386 Conditional compilation for GNU Emacs and emacsens.
10387 (ps-generate-postscript-with-faces): Skip invisible text better.
10388 (ps-setup): Print new user option.
10389 (ps-print-preprint): Check if input file name exists and is unwritable.
10390 (ps-begin-file): Adjust PostScript prologue header for duplex printers
10391 and insert user PostScript prologue header comments.
10392 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
10393 New funs.
10394 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
10395 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
10396 PostScript programming normalization.
10397 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
10398 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
10399 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
10400 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
10401 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
10402 Programming style normalization.
10403
10404 1998-10-26 Kenichi Handa <handa@etl.go.jp>
10405
10406 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
10407 version, check the value of mule-version.
10408
10409 * international/mule-util.el (compose-region): Insert then delete
10410 to preserve markers.
10411 (decompose-region): Use search-forward for efficiency.
10412
10413 * language/chinese.el (pre-write-encode-hz): Cancel previous
10414 change, use generate-new-buffer instead of get-buffer-create.
10415 * language/devan-util.el
10416 (in-is13194-devanagari-pre-write-conversion): Likewise.
10417 * language/thai-util.el (thai-pre-write-conversion): Likewise.
10418 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10419 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10420
10421 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
10422
10423 * mail/rmailsum.el (rmail-message-subject-p):
10424 Handle message whose header has not been reformatted.
10425
10426 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
10427
10428 1998-10-25 Jason Rumney <jasonr@altavista.net>
10429
10430 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
10431 New variables.
10432 (mouse-set-font): Use font menus instead of dialog according to
10433 w32-use-w32-font-dialog.
10434
10435 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10436
10437 * calendar/calendar.el (calendar-day-name-array): Add doc string
10438 correctly!
10439 (calendar-month-name-array): Add doc string correctly!
10440
10441 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu>
10442
10443 * net-utils.el (whois-get-tld): Rewrite not to use `do'.
10444
10445 1998-10-21 Markus Rost <rost@delysid.gnu.org>
10446
10447 * lisp/info.el (Info-next-menu-item): Stay on top of node.
10448
10449 * mail/rmailout.el (rmail-output): Insert newline only if necessary.
10450
10451 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
10452
10453 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
10454
10455 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org>
10456
10457 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
10458
10459 1998-10-21 Karl Heuer <kwzh@gnu.org>
10460
10461 * emacs-lisp/profile.el (profile-timer-program): Var deleted.
10462 (profile-timer-process, profile-temp-result-, profile-time): Likewise.
10463 (profile-filter, profile-reset-timer): Functions deleted.
10464 (profile-check-zero-init-times, profile-get-time): Likewise.
10465 (profile-find-function, profile-quit): Likewise.
10466 (profile-distinct, profile-call-stack, profile-last-time): New vars.
10467 (profile-time-list, profile-init-list): Doc fix.
10468 (profile-functions): Simplify.
10469 (profile-print): Use float. Make output include space separators.
10470 (profile-add-time): New helper function.
10471 (profile-function-prolog): Renamed from profile-start-function.
10472 Handle profile-distinct.
10473 (profile-function-epilog): Renamed from profile-update-function.
10474 Handle profile-distinct.
10475 (profile-a-function): If the function to be profiled is an
10476 autoload form, load it. If it's lazy-loaded, fetch it.
10477 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
10478 (profile-restore-fun): Arg FUN is now a function symbol, as was
10479 documented, rather than a one-element list.
10480 (profile-finish): Call profile-restore-fun properly.
10481
10482 1998-10-21 Kenichi Handa <handa@etl.go.jp>
10483
10484 * international/characters.el: Setup charset property
10485 nospace-between-words.
10486
10487 * international/mule-cmds.el (get-charset-property): If CHARSET is
10488 composition, return nil.
10489 (put-charset-property): If CHARSET is composition, do nothing.
10490
10491 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
10492 * language/devan-util.el
10493 (in-is13194-devanagari-pre-write-conversion): Likewise.
10494 * language/thai-util.el (thai-pre-write-conversion): Likewise.
10495 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10496 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10497
10498 * textmodes/fill.el (sentence-end-without-period): New variable.
10499 (canonically-space-region): Pay attention to
10500 sentence-end-without-period.
10501 (fill-find-break-point): The first argument CHARSET deleted.
10502 Caller changed.
10503 (fill-region-as-paragraph): Pay attention to charset property
10504 nospace-between-words and text property nospace-between-words.
10505
10506 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
10507
10508 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
10509 an unrecognized shell.
10510
10511 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org>
10512
10513 * desktop.el (desktop-save): Include minor modes symbolically.
10514 (desktop-create-buffer): Turn on all minor modes in `mim'.
10515
10516 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
10517
10518 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
10519 (sh-font-lock-keywords): Handle rpm and rpm2.
10520 (sh-ancestor-alist): Handle rpm.
10521
10522 * files.el (auto-mode-alist): Recognize .rpm files.
10523 Also .spec and .mspec files.
10524
10525 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org>
10526
10527 * faces.el (frame-set-background-mode): Enable the function for
10528 MSDOS frames.
10529
10530 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10531
10532 * calendar/calendar.el (calendar-day-name-array): Add doc string.
10533 (calendar-month-name-array): Add doc string.
10534
10535 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu>
10536
10537 * simple.el (kill-ring-max): Increased to 60.
10538
10539 1998-10-17 Kenichi Handa <handa@etl.go.jp>
10540
10541 * international/characters.el: Setup auto-fill-chars.
10542
10543 * international/kinsoku.el (kinsoku): Check the variable
10544 enable-kinsoku.
10545
10546 * simple.el (do-auto-fill): Don't check kinsoku-enable here.
10547 Don't call kinsoku directly, intead call fill-find-break-point.
10548
10549 * textmodes/fill.el: Setup `fill-find-break-point-function'
10550 property to character sets which require `kinsoku' processing for
10551 filling.
10552 (fill-find-break-point): New function.
10553 (fill-region-as-paragraph): Don't check kinsoku-enable here.
10554 Don't call kinsoku directly, intead call fill-find-break-point.
10555
10556 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu>
10557
10558 * faces.el (modify-face-read-string): Return (nil) for "none".
10559 (modify-face): Don't get error if (nil) is the argument.
10560 (face-try-color-list): Don't check whether nil is a valid color.
10561
10562 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu>
10563
10564 * emacs-lisp/bytecomp.el (byte-recompile-directory):
10565 Print message about each directory, even in batch mode.
10566
10567 * gnus/nntp.el: Require `cl' before using nnoo-declare.
10568
10569 * ps-print.el (ps-mule-chars-in-string): No need to use sref.
10570 (ps-mule-string-char): No need to use sref.
10571 (ps-mule-next-index): No need to use sref.
10572
10573 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
10574
10575 * files.el (revert-buffer-internal-hook): Add defvar.
10576
10577 * arc-mode.el (archive-mode): Locally set file-precious-flag.
10578
10579 * tar-mode.el (tar-mode): Locally set file-precious-flag.
10580
10581 1998-10-16 Markus Rost <rost@delysid.gnu.org>
10582
10583 * international/mule-cmds.el (default-input-method): Fix custom type.
10584
10585 * net-utils.el (whois-server-list): Fix customization type.
10586
10587 * shell.el (shell-input-autoexpand): Fix customization group.
10588
10589 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu>
10590
10591 * repeat.el (repeat): Handle keyboard macros properly.
10592 Handle new prefix arg after self-insert command.
10593
10594 * repeat.el: Don't include cl even at compile time.
10595 (repeat): Avoid using `loop'.
10596
10597 * simple.el (shell-command-on-region): Doc fix.
10598 (next-history-element): Special error message if no default.
10599
10600 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu>
10601
10602 * ps-print.el (ps-print-buffer): Doc fix.
10603 (ps-despool): Likewise.
10604
10605 * arc-mode.el (arc-mode): Provide arc-mode.
10606
10607 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
10608
10609 * ps-print.el (ps-print-buffer): Doc fix.
10610
10611 1998-10-14 Dave Love <fx@gnu.org>
10612
10613 * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
10614 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
10615 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
10616
10617 * progmodes/fortran.el (fortran-mode-map): Change "Join
10618 Continuation Line" to "Join Line".
10619 (fortran-font-lock-keywords-1): Add "cycle", "exit".
10620
10621 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
10622
10623 * progmodes/fortran.el (fortran-join-line): Use
10624 `delete-indentation' instead of issuing an error message if not on
10625 a continuation line. Provide for joining several lines using
10626 prefix arg.
10627
10628 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org>
10629
10630 * term/pc-win.el (msdos-color-values): New variable.
10631 (x-color-values): New function, emulates its namesake from
10632 src/xfns.c.
10633 (msdos-bg-mode): Add all dark colors to those which return
10634 "dark".
10635
10636 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
10637
10638 * replace.el (keep-lines, flush-lines, how-many):
10639 Don't ignore case if arg has upper case letters.
10640
10641 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch>
10642
10643 * progmodes/vhdl-mode.el
10644 (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
10645 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
10646 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
10647 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
10648 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
10649 (vhdl-when): Fix indentation problem.
10650 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
10651 (vhdl-get-port, vhdl-get-generic): Bug fix in template.
10652 (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
10653
10654 1998-10-13 Geoff Voelker <voelker@cs.washington.edu>
10655
10656 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
10657 (ls-lisp-insert-directory): Renamed from insert-directory.
10658 (insert-directory): New function.
10659
10660 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
10661
10662 * simple.el (completion-fixup-function): Variable deleted.
10663 (completion-setup-function): Delete code for completion-fixup-function.
10664 * emacs-lisp/lisp.el (lisp-complete-symbol):
10665 Don't bind completion-fixup-function.
10666
10667 * files.el (find-file-wildcards): New option.
10668 (find-file-noselect): Handle wild cards, if enabled.
10669 (file-expand-wildcards): New function.
10670
10671 * simple.el (set-fill-column): Doc fix.
10672
10673 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10674
10675 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
10676
10677 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org>
10678
10679 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
10680 Move declaration before first use.
10681 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
10682 hif-math, hif-factor): Rename token to hif-token and token-list to
10683 hif-token-list.
10684 (hif-token, hif-token-list): Declare them.
10685 (hif-find-ifdef-block): Return cons of top and bottom point
10686 instead of setting dynamically bound variables.
10687 (hide-ifdef-block, show-ifdef-block): Use return value of
10688 hif-find-ifdef-block.
10689
10690 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
10691
10692 * subr.el (read-passwd): Use clear-this-command-keys.
10693
10694 * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
10695
10696 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
10697 and ...-for-write.
10698
10699 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk>
10700
10701 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
10702 responses to GROUP command, since this may be called from a timer
10703 with quit inhibited.
10704
10705 1998-10-12 Kenichi Handa <handa@etl.go.jp>
10706
10707 * international/ccl.el (ccl-compile-if): If there's no false-cmds,
10708 set unconditional-jump to nil.
10709 (ccl-compile-read-multibyte-character): Return nil.
10710 (ccl-compile-write-multibyte-character): Likewise.
10711 (ccl-compile-translate-character): Likewise
10712 (ccl-compile-map-multiple): Likewise.
10713 (ccl-compile-map-single): Likewise.
10714
10715 * international/kinsoku.el: Add coding tag.
10716 (kinsoku-bol): Remove superfluous TAB in a string.
10717
10718 * international/mule-cmds.el (find-coding-systems-for-charsets):
10719 Delete `composition' (if any) from CHARSETS.
10720
10721 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
10722
10723 * international/mule-cmds.el (setup-specified-language-environment):
10724 Add apropos-inhibit property.
10725 (describe-specified-language-support): Likewise.
10726
10727 1998-10-11 Kenichi HANDA <handa@etl.go.jp>
10728
10729 * international/mule.el (make-coding-system): Create -with-esc
10730 variant coding system.
10731
10732 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
10733
10734 * progmodes/etags.el (tags-loop-revert-buffers): New variable.
10735 (next-file): Optionally offer to revert a file's buffer,
10736 if it has an existing buffer but the file has changed.
10737
10738 * info.el (Info-insert-dir): Detect and report problems
10739 in input files, such as "No Top node". Return with point
10740 at the beginning of the text.
10741 (Info-find-node): Reinsert the code to handle files
10742 with no tags table; it was deleted by mistake.
10743
10744 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
10745
10746 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
10747 texinfo-find-higher-level-node repeatedly find the same node.
10748 (texinfo-find-higher-level-node): Doc fix.
10749
10750 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
10751
10752 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
10753 (smtpmail-address-buffer): Add defvar.
10754 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
10755
10756 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
10757
10758 * ffap.el (ffap-machine-p-local): Fix editing error.
10759
10760 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu>
10761
10762 * faces.el (frame-set-background-mode):
10763 Don't do anythung for text-only or MSDOS frame.
10764
10765 1998-10-08 Kenichi Handa <handa@etl.go.jp>
10766
10767 * international/quail.el (quail-defrule): New optional arg APPEND.
10768 (quail-defrule-internal): Fix bug of handling the argument APPEND.
10769
10770 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu>
10771
10772 * gnus/pop3.el (pop3-open-server):
10773 Set process-coding-system-alist around open-network-stream.
10774
10775 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu>
10776
10777 * files.el (save-buffer): Doc fix.
10778
10779 1998-10-07 Karl Heuer <kwzh@gnu.org>
10780
10781 * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
10782 return DEF unchanged, not nil. Simplify.
10783
10784 1998-10-06 Geoff Voelker <voelker@cs.washington.edu>
10785
10786 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
10787
10788 1998-10-06 Peter Breton <pbreton@ne.mediaone.net>
10789
10790 * generic.el (generic-mode-with-type): Added hooks for generic-modes.
10791
10792 * net-utils.el (ftp, nslookup): Require comint.
10793 (network-service-connection): Likewise.
10794 (whois-server-name): Defaults to whois.arin.net
10795 (whois-server-list, whois-server-tld, whois-guess-server): New var.
10796 (whois): Tries to guess the appropriate top-level domain server.
10797 (whois-get-tld): New function.
10798
10799 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
10800 (dirtrack-debug-toggle): Added this function.
10801
10802 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10803
10804 * files.el (find-file-noselect): Switch to the correct buffer
10805 before checking find-file-literally, and allow non-nil non-t
10806 rawfile params.
10807
10808 1998-10-06 Karl Heuer <kwzh@gnu.org>
10809
10810 * midnight.el (clean-buffer-list): Add autoload cookie.
10811
10812 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
10813 no-autosave.
10814 * tar-mode.el (tar-mode-revert): Likewise.
10815 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
10816 from ediff-arrange-autosave-in-merge-jobs. Callers changed.
10817 * gnus/message.el (message-auto-save-directory): Renamed from
10818 message-autosave-directory. All references changed.
10819
10820 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
10821
10822 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
10823 string. Expose mime stuff while searching.
10824
10825 1998-10-06 Richard Stallman <rms@gnu.org>
10826
10827 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
10828
10829 * replace.el (perform-replace): Position point properly
10830 before and after the recursive edit of C-r.
10831
10832 * progmodes/etags.el (tags-reset-tags-tables): Properly
10833 find the markers in the old rings that are being discarded.
10834
10835 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10836
10837 * apropos.el (apropos-print): Control invalid characters.
10838
10839 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
10840 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
10841 confusing customize.
10842
10843 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org>
10844
10845 * generic-x.el (bat-generic-mode): Fix regexps for keywords and
10846 built-in commands. Add more built-in commands and fix face names.
10847
10848 1998-10-05 Simon Marshall <simon@gnu.org>
10849
10850 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
10851
10852 1998-10-04 Eric Ludlam <zappo@gnu.org>
10853
10854 * speedbar.el (speedbar-initial-expansion-list-name): Remove
10855 customization since it is not useful in this case.
10856 (speedbar-frame-mode): Check if cfx or cfy is a list, and make
10857 sure it gets evalled to a number. Also verify that set-frame-name
10858 fn exists before calling it.
10859
10860 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
10861 Protect a `forward-sexp' call which could fail, and improved regex
10862 for ie, and eg abbreviations.
10863
10864 1998-10-02 Noah Friedman <friedman@splode.com>
10865
10866 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
10867 send-string.
10868 (rlogin-send-Ctrl-D): Here also.
10869 (rlogin-send-Ctrl-Z): Here also.
10870 (rlogin-send-Ctrl-backslash): Here also.
10871
10872 1998-10-02 Dave Love <fx@gnu.org>
10873
10874 * outline.el (hide-region-body): Bind
10875 outline-view-change-hook to nil while making repeated calls to
10876 outline-flag-region. Run it once at the end.
10877 (hide-other, hide-sublevels, show-children): Likewise.
10878
10879 * info-look.el: Remove duplicate scheme-mode entry.
10880 (info-lookup-make-completions): When looking for entries, check
10881 that `item' isn't null or "Menu".
10882
10883 1998-10-01 Karl Heuer <kwzh@gnu.org>
10884
10885 * net-utils.el: Don't require ffap.
10886 (net-utils-machine-at-point, net-utils-url-at-point): New functions.
10887 (ping, nslookup-host, finger, network-connection-to-service): Use them.
10888
10889 1998-09-30 Richard Stallman <rms@gnu.org>
10890
10891 * ispell.el (check-ispell-version): No need to bind default-major-mode.
10892
10893 * imenu.el (imenu--generic-function): Sort each submenu by position.
10894 (imenu--sort-by-position): New function.
10895
10896 * cus-edit.el (Custom-mode-menu): Fix info node name.
10897 (customize group): Fix info node name.
10898
10899 * mail/mailalias.el (build-mail-aliases): Don't allow
10900 a newline in the alias name. Don't define an alias
10901 if the definition would be empty.
10902
10903 * which-func.el (which-func-mode-global): Make :set function
10904 more reliable.
10905
10906 * custom.el (custom-set-variables): Load the requests first,
10907 then check the symbol's `set' function.
10908
10909 * ffap.el: Doc fixes.
10910
10911 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10912
10913 * gnus.el: (gnus-valid-select-methods): Fix type.
10914 * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
10915 * gnus-score.el (gnus-orphan-score): Fix type.
10916 (gnus-score-default-header, gnus-score-default-type): Fix type.
10917 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
10918 (gnus-saved-headers): Fix type.
10919
10920 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
10921 Avoid nil value of `two-lines-citation-part'.
10922
10923 1998-09-30 Roman Belenov <roman@nstl.nnov.ru>
10924
10925 * which-func.el (which-function): Handle case when
10926 (car imenu--index-alist) is nil.
10927
10928 1998-09-29 Dave Love <fx@gnu.org>
10929
10930 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
10931 bzip2 args.
10932
10933 1998-09-29 Simon Marshall <simon@gnu.org>
10934
10935 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
10936 comint-exec-hook.
10937
10938 1998-09-29 Stephen Eglen <stephen@gnu.org>
10939
10940 * info-look.el: Add support for Octave.
10941
10942 1998-09-28 Carsten Dominik <cd@delysid.gnu.org>
10943
10944 * textmodes/reftex.el (reftex-finding-files): New customize group.
10945 (reftex-texpath-environment-variables,
10946 reftex-use-external-file-finders, reftex-external-file-finders,
10947 reftex-search-unrecursed-path-first): New options.
10948 (reftex-process-string, reftex-find-file-externally): New
10949 functions.
10950 (reftex-access-search-path): Execute shell commands to find the
10951 search path.
10952 (reftex-toggle-auto-view-crossref): When turning on, make sure
10953 `reftex-auto-view-crossref' becomes non-nil.
10954 (reftex-abbrev-regexp): Constant removed.
10955 (reftex-convert-string): Abbrev regexp calculated locally.
10956
10957 1998-09-28 Dave Love <fx@gnu.org>
10958
10959 * progmodes/fortran.el: Don't call regexp-opt when deriving
10960 font-lock patterns with keywords that aren't all literal.
10961
10962 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
10963
10964 * octave-inf.el (inferior-octave-prompt): Also match prompts of
10965 the form `octave.bin:1>' which come from using precopiled binary
10966 versions.
10967
10968 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu>
10969
10970 * help.el (help-for-help): Use %THIS-KEY%.
10971 (help-quit): Add doc.
10972
10973 * help-macro.el (make-help-screen): Keep HELP-TEXT
10974 in a separate function definition, not in the help command FNAME.
10975 Replace %THIS-KEY% with the key sequence that ran FNAME.
10976
10977 1998-09-25 Richard Stallman <rms@gnu.org>
10978
10979 * textmodes/texinfo.el (texinfo-show-structure):
10980 Bind inhibit-read-only.
10981
10982 * isearch.el (isearch-search-and-update): Properly
10983 handle upper case letters in the reverse-search special case.
10984
10985 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10986
10987 * gnus.el: Extend the list of autoloaded functions.
10988
10989 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
10990 buffer before creating help group. (from Gnus v5.6.43, fix by
10991 1998-08-20 Per Starback <starback@update.uu.se>)
10992
10993 * gnus-util.el (gnus-output-to-rmail): Adjust to
10994 `rmail-output-to-rmail-file'.
10995
10996 1998-09-25 Karl Heuer <kwzh@gnu.org>
10997
10998 * hexl.el (hexl-mode-map): More of previous change.
10999
11000 * textmodes/tex-mode.el (tex-run-command): Doc fix.
11001 (tex-start-tex): Don't use tex-start-options-string in star case.
11002 Quote file name in star case as well as in non-star.
11003 Add blank and quoting of option string here.
11004 (tex-start-options-string): Not here.
11005
11006 1998-09-23 Karl Heuer <kwzh@gnu.org>
11007
11008 * term.el (term-delimiter-argument-list): Doc fix.
11009 (term-emulate-terminal): Escape literal semicolon.
11010 * progmodes/asm-mode.el (asm-mode): Doc fix.
11011 (asm-comment-char): Escape literal semicolon.
11012 * emulation/viper-cmd.el (viper-movement-commands): Likewise.
11013
11014 1998-09-23 Richard Stallman <rms@gnu.org>
11015
11016 * hexl.el (hexl-mode-map): Don't override all ESC bindings,
11017 only those that normally modify the buffer.
11018
11019 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
11020 over again.
11021
11022 1998-09-23 E. Jay Berkenbilt <ejb@ql.org>
11023
11024 * ispell.el (check-ispell-version): Ensure same buffer is current
11025 when let-binding of case-fold-search ends.
11026
11027 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11028
11029 * ps-print.el: Skip invisible overlay.
11030 Test for set-buffer-multibyte rather than using mule-version.
11031 (ps-print-version): New version number (4.1) and doc fix.
11032 (ps-generate-postscript-with-faces): Skip invisible overlay.
11033
11034 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu>
11035
11036 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
11037
11038 1998-09-22 Kenichi Handa <handa@etl.go.jp>
11039
11040 * international/quail.el (quail-update-guidance): Check for the
11041 return value of (quail-guidance) fixed.
11042 (quail-update-translation): Bind quail-current-str locally when it
11043 calls quail-update-guidance.
11044 (quail-update-translation): If input-method-exit-on-first-char is
11045 non-nil, terminate translation only when the current input method
11046 is simple.
11047
11048 1998-09-22 Paul Eggert <eggert@twinsun.com>
11049
11050 * startup.el (locale-translation-file-name): Prefer X-related names
11051 to the name used by GNU/Linux sans X. Set to nil if no file found.
11052 (command-line): Use locale-translation-file-name if it is not nil,
11053 instead of testing for its existence again.
11054 regexp-quote the ctype before using it in a regexp.
11055 Allow a colon to appear after the ctype in the aliases file,
11056 as is done in X11R6.4.
11057
11058 1998-09-21 Richard Stallman <rms@gnu.org>
11059
11060 * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
11061
11062 * calendar/appt.el (appt-interval): Variable deleted.
11063 (appt-check): For minutes in between appt-display-interval times,
11064 do check, but don't display anything except an updated mode line.
11065 Count against appt-display-interval based on minutes since
11066 first display of this appointment, not based on time of day.
11067 If appt-display-mode-line, force mode line redisplay
11068 whenever appt-mode-string has changed.
11069 (appt-add, appt-delete): Add autoload cookies.
11070 (appt-check): Catch errors from calling `diary'.
11071 (appt-max-time): Renamed from max-time.
11072 (appt-now-displayed, appt-display-count): New variables.
11073 (appt-timer): Don't create one if we already have one.
11074
11075 * textmodes/tex-mode.el (tex-compilation-parse-errors):
11076 More general code to use the source buffer instead of the zap file.
11077
11078 * hilit-chg.el (highlight-compare-with-file): Renamed from
11079 compare-with-file.
11080
11081 * loadhist.el (load-history-loaded): New variable.
11082 (symbol-file): Load etc/fns-VERSION.el if that has not been done.
11083
11084 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
11085
11086 * emacs-lisp/find-func.el (find-function-search-for-symbol):
11087 Fix error messages.
11088
11089 1998-09-21 Markus Armbruster <armbru@pond.sub.org>
11090
11091 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
11092 Emacs frame.
11093
11094 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11095
11096 * mail/rmail.el (rmail-decode-babyl-format): Recognize both
11097 `undecided' and `undecided-unix'.
11098
11099 1998-09-21 Dave Love <fx@gnu.org>
11100
11101 * help.el (help-make-xrefs): Fix typo affecting Info references.
11102
11103 * subr.el (remove-hook): Check list values to avoid errors.
11104
11105 1998-09-18 Noah Friedman <friedman@splode.com>
11106
11107 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
11108 store string in eldoc-last-message without consing a new string.
11109 Rearrange logic from nested if's into cond's.
11110 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
11111 Do not print message; just return string.
11112 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
11113 Do not print message; just return string.
11114 Cache that string in eldoc-last-data.
11115 (eldoc-last-data): Make into a vector.
11116 (eldoc-get-fnsym-args-string): Use new data form of structure.
11117 (eldoc-get-var-docstring): Here also.
11118 (eldoc-last-data-store): New function.
11119 (eldoc-get-fnsym-args-string): Use it.
11120 (eldoc-get-var-docstring): Here also.
11121 (eldoc-docstring-first-line): Minimize interim string consing.
11122 Call substitute-command-keys on the result.
11123 (eldoc-print-var-docstrings, eldoc-print-docstring,
11124 eldoc-docstring-message): Functions removed.
11125 (eldoc-docstring-format-sym-doc): New function, functionality
11126 ripped out of eldoc-docstring-message.
11127 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
11128
11129 1998-09-18 Kenichi Handa <handa@etl.go.jp>
11130
11131 * international/mule.el (make-coding-system): Doc-string modified.
11132
11133 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org>
11134
11135 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
11136
11137 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
11138 customize type.
11139
11140 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
11141 type.
11142
11143 * progmodes/compile.el (compilation-error-screen-columns): New
11144 variable.
11145 (compilation-next-error-locus): Use it to decide whether to use
11146 forward-char or move-to-column.
11147
11148 * mail/rmail.el (rmail-movemail-program): Fix customize type.
11149
11150 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
11151 feedmail-fiddle-plex-user-list,
11152 feedmail-spray-address-fiddle-plex-list,
11153 feedmail-prompt-before-queue-user-alist,
11154 feedmail-prompt-before-queue-help-supplement,
11155 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
11156 feedmail-queue-alternative-mail-header-separator): Fix customize
11157 type.
11158
11159 * startup.el (site-run-file): Fix customize type.
11160
11161 * speedbar.el (speedbar-initial-expansion-list-name): Fix
11162 customize type.
11163
11164 * shell.el (shell-input-autoexpand): Fix customize type.
11165
11166 * ps-print.el (ps-font-info-database): Add missing dots in value.
11167 Improve layout of customize type.
11168
11169 * net-utils.el (traceroute-program-options, ping-program-options,
11170 ipconfig-program-options, netstat-program-options,
11171 arp-program-options, route-program-options,
11172 nslookup-program-options, ftp-program-options): Fix customize
11173 type.
11174
11175 * midnight.el (clean-buffer-list-kill-regexps,
11176 clean-buffer-list-kill-buffer-names,
11177 clean-buffer-list-kill-never-buffer-names,
11178 clean-buffer-list-kill-never-regexps): Fix customize type.
11179
11180 * man.el (Man-init-defvars): Avoid trailing nil on
11181 Man-filter-list.
11182
11183 * lpr.el (printer-name): Fix customize type.
11184
11185 1998-09-16 Kenichi Handa <handa@etl.go.jp>
11186
11187 * international/mule-cmds.el (reset-language-environment): Call
11188 update-coding-systems-internal.
11189
11190 * international/mule-conf.el: Call update-coding-systems-internal
11191 at the tail.
11192
11193 1998-09-14 Dave Love <fx@gnu.org>
11194
11195 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't
11196 use the menu-enable properties, pending doing it correctly and
11197 acceptably fast.
11198
11199 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
11200
11201 1998-09-13 Dave Love <d.love@dl.ac.uk>
11202
11203 * progmodes/hideshow.el (hs-grok-mode-type): Check
11204 comment-{start,end} non-nil as well as bound. Report an error if
11205 we can't grok the mode.
11206
11207 1998-09-13 Richard Stallman <rms@gnu.org>
11208
11209 * simple.el (blink-matching-open): Don't log paren matching
11210 messages in *Messages*.
11211
11212 1998-09-12 Richard Stallman <rms@gnu.org>
11213
11214 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
11215 Set point-before-scroll at end even if there was an error.
11216
11217 * ange-ftp.el (ange-ftp-insert-file-contents):
11218 Use binary mode for dumb-unix hosts as for unix hosts.
11219 (ange-ftp-copy-file-internal): Likewise.
11220
11221 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
11222
11223 * emacs-lisp/pp.el: Doc fixes.
11224
11225 * wid-edit.el (widget-menu-max-shortcuts): New variable.
11226 (widget-choose): Don't use single-char shortcuts if # items
11227 exceeds that many. Use minibuffer instead.
11228
11229 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11230
11231 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
11232
11233 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org>
11234
11235 * speedbar.el (speedbar-frame-mode): Do not set frame position if
11236 in terminal mode.
11237
11238 1998-09-10 Noah Friedman <friedman@splode.com>
11239
11240 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
11241 defcustom declaration. It's wreaking too much havoc with XEmacs
11242 and older versions of Emacs, which share this code.
11243
11244 * type-break.el (type-break-mode): Here also.
11245
11246 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
11247 `t' to add-hook also to modify the new local value.
11248
11249 1998-09-10 Dave Love <fx@gnu.org>
11250
11251 * vc.el (vc-insert-headers): Doc fix.
11252
11253 1998-09-10 Richard Stallman <rms@gnu.org>
11254
11255 * textmodes/flyspell.el (flyspell-mode-on): Make the
11256 ispell-... variables permanent locals.
11257 (flyspell-mode-off): Add autoload cookie.
11258
11259 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
11260 do use binary mode, just as for `unix'.
11261 (ange-ftp-host-type): If HOST is nil, return `unix'.
11262
11263 * dired.el (dired-mark-files-containing-regexp):
11264 Don't scan directories. Ignore non-readable files.
11265
11266 * progmodes/compile.el (compilation-error-regexp-alist):
11267 Fix previous change: allow . and _ in command name.
11268
11269 * dired.el (dired-mark-files-containing-regexp): Fix previous change.
11270
11271 * uncompress.el (uncompress-while-visiting):
11272 Use just the car of what find-operation-coding-system returns.
11273
11274 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
11275
11276 * shell.el (shell-file-name-quote-list): Add # to the value.
11277
11278 1998-09-10 E. Jay Berkenbilt <ejb@ql.org>
11279
11280 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
11281 to make killing of ispell process work even if
11282 kill-all-local-variables has been run.
11283
11284 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11285
11286 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
11287 loop when sexp entry ends at end of file with no newline.
11288
11289 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11290
11291 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
11292 (Custom-reset-standard): Fix menu inconsistency.
11293
11294 * mail/feedmail.el (feedmail-from-line): Allow t.
11295 (feedmail-message-id-suffix): Allow nil.
11296
11297 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
11298 Simplify. Make prefix arg work right.
11299
11300 1998-09-09 Dave Love <fx@gnu.org>
11301
11302 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
11303
11304 * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
11305
11306 1998-09-08 Dave Love <fx@gnu.org>
11307
11308 * add-log.el (change-log-font-lock-keywords): Do parenthesized
11309 stuff only after file names or at start of line. Allow parens
11310 around e-mail, as well as angles.
11311
11312 * gnus/nnweb.el (require): Wrap requirement of w3 and url in
11313 ignore-errors too, eval'd when compile. Require w3 stuff at load
11314 time for nicer failure if it's not available.
11315
11316 1998-09-07 Geoff Voelker <voelker@cs.washington.edu>
11317
11318 * comint.el (comint-arguments): Ignore backslashes when using
11319 w32 shells that expect backslashes as the directory separator.
11320
11321 1998-09-04 Kenichi Handa <handa@etl.go.jp>
11322
11323 * international/fontset.el (resolved-ascii-font): New variable.
11324 (x-complement-fontset-spec): By side effect, set
11325 `resolved-ascii-font' to the resolved name of ASCII font."
11326 (create-fontset-from-fontset-spec): Don't get a value for
11327 resolved-ascii-font from the list full-fontlist. It is set by
11328 x-complement-fontset-spec now.
11329
11330 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
11331 version, check the value of mule-version.
11332
11333 1998-09-07 Carsten Dominik <cd@delysid.gnu.org>
11334
11335 * textmodes/reftex.el (reftex-view-crossref): Split up into
11336 several functions. No longer moves to find a macro.
11337 (reftex-view-cr-cite, reftex-view-cr-ref,
11338 reftex-end-of-bib-entry): New functions.
11339 (reftex-auto-view-crossref): New value `window' allowed.
11340 (reftex-view-crossref-when-idle): Process new `window' option in
11341 (reftex-translate-to-ascii-function): New default.
11342 (reftex-label-illegal-re): Default changed, removed Latin1.
11343 (reftex-latin1-to-ascii): New function.
11344 (reftex-what-environment): Check for section regexp before use.
11345 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
11346 absolute path names.
11347 (reftex-TeX-master-file): Changed sequence of file checks.
11348 (reftex-do-citation): bibview cache only with RefTeX mode on.
11349
11350 1998-09-06 Richard Stallman <rms@gnu.org>
11351
11352 * progmodes/compile.el (compilation-error-regexp-alist):
11353 In first pattern (GNU utilities and other things),
11354 allow a space after the optional program name at the beginning.
11355
11356 * mail/mail-hist.el (mail-hist-current-header-contents):
11357 Fix previous change: use mail-header-end.
11358
11359 1998-09-06 Bill Richter <richter@math.nwu.edu>
11360
11361 * international/ccl.el: Doc fixes.
11362 * international/encoded-kb.el: Doc fixes.
11363 * international/fontset.el: Doc fixes.
11364 * international/kinsoku.el: Doc fixes.
11365 * international/kkc.el: Doc fixes.
11366 * international/mule-cmds.el: Doc fixes.
11367 * international/mule-conf.el: Doc fixes.
11368 * international/mule-util.el: Doc fixes.
11369 * international/mule.el: Doc fixes.
11370
11371 1998-09-05 Eric Ludlam <zappo@gnu.org>
11372
11373 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
11374 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
11375 (checkdoc-this-string-valid-engine): Permit ? as terminating
11376 punctuation for first line sentence breaking.
11377 (checkdoc-this-string-valid): When converting a comment into a doc
11378 string, make sure " chars are \".
11379 (checkdoc-sentencespace-region-engine): Only do double space check
11380 if based on the variable `sentence-end-double-space'
11381 (checkdoc-this-string-valid-engine): ? ends valid sentence.
11382 (checkdoc-proper-noun-region-engine): Exclude items in URLs
11383
11384 1998-09-04 Richard Stallman <rms@gnu.org>
11385
11386 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11387 Recognize define-skeleton as a function definer.
11388
11389 * cus-edit.el (customize-option): Refuse to customize
11390 a variable that has no defcustom. But if variable is autoloaded,
11391 first try to load the library that defines it.
11392
11393 * international/iso-insert.el: Use `string' before calling `insert'
11394 so that in multibyte buffers we insert multibyte chars.
11395
11396 * dired.el (dired-mark-files-containing-regexp):
11397 Don't use find-file; instead, insert the file in a temp buffer.
11398
11399 * textmodes/tex-mode.el (tex-start-options-string): New option.
11400 (tex-start-tex): Use that variable.
11401
11402 * mail/rmail.el (rmail-primary-inbox-list): Make the initial
11403 value in the `repeat' alternative a list.
11404
11405 * textmodes/fill.el (fill-individual-paragraphs): Before deleting
11406 the inserted newline, verify that one was really inserted.
11407
11408 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
11409 remains on or remains off.
11410 (flyspell-multi-language-p): Default changed to nil.
11411
11412 * progmodes/ada-mode.el (ada-search-ignore-string-comment):
11413 In "found in comment" case, don't beginning-of-line after forward-line.
11414
11415 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
11416 If the function definition is not a lambda, return original FORM
11417 with no error.
11418
11419 1998-09-04 Peter Breton <pbreton@ne.mediaone.net>
11420
11421 * net-utils.el (netstat-program-options): Changed from nil to "-a"
11422 so that by default netstat shows all network connections.
11423
11424 1998-09-04 Bob Weiner <weiner@altrasoft.com>
11425
11426 * international/quail.el: Doc fixes.
11427
11428 * info.el (info): Don't add parens if FILE already has them.
11429
11430 1998-09-04 Geoff Voelker <voelker@cs.washington.edu>
11431
11432 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
11433 on extension lines.
11434
11435 1998-09-03 Geoff Voelker <voelker@cs.washington.edu>
11436
11437 * w32-fns.el (w32-shell-dos-semantics): New function.
11438
11439 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu>
11440
11441 * international/quail.el (quail-choose-completion-string): Store
11442 completion `choice' in `quail-current-str'; don't insert it.
11443
11444 1998-09-02 Kenichi Handa <handa@etl.go.jp>
11445
11446 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH
11447 argument to ps-mule-generate-bitmap-font.
11448
11449 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
11450 entry and change Latin-1 entry in the default value.
11451 (ps-mule-font-info-database-ps-bdf): New variable.
11452 (ccl-encode-ethio-unicode): Bug of CCL code fixed.
11453 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
11454 registerd in FONT-SPEC.
11455 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
11456 charcter width of bitmap fonts.
11457 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
11458 procedure NF.
11459 (ps-begin-file): Output PostScript code for setting
11460 SpaceWidthRatio.
11461 (ps-plot-region): Use line-beginning-position to get a position of
11462 the beginning of the current line.
11463
11464 * international/mule-cmds.el (register-input-method): Doc-string
11465 modified.
11466
11467 1998-09-01 Dave Love <fx@gnu.org>
11468
11469 * international/mule-cmds.el (current-language-environment): Fix
11470 setter function.
11471
11472 1998-09-01 Simon Marshall <simon@gnu.org>
11473
11474 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
11475 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
11476 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
11477 names with font-lock-type-face. Fontify type specs, etc., with
11478 font-lock-keyword-face.
11479
11480 1998-08-31 Kenichi Handa <handa@etl.go.jp>
11481
11482 * international/fontset.el (x-complement-fontset-spec): If ASCII
11483 font is specified in FONTLIST, don't substitute it for the
11484 resolved name.
11485
11486 1998-08-31 Paul Eggert <eggert@twinsun.com>
11487
11488 * international/mule.el (charset-description): Doc fix.
11489
11490 * language/chinese.el, language/cyrillic.el, language/czech.el,
11491 language/devanagari.el, language/ethiopic.el,
11492 language/european.el, language/hebrew.el, language/indian.el,
11493 language/japanese.el, language/korean.el, language/lao.el,
11494 language/slovak.el, language/thai.el, language/tibetan.el,
11495 language/vietnamese.el:
11496 Add coding: local variable, to avoid bootstrapping problem
11497 if you need to recompile all the Lisp files using interpreted code.
11498
11499 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11500
11501 * cal-china.el (chinese-year-cache): Change range of years from
11502 1989-2000 to 1990-2010.
11503
11504 1998-08-29 Dave Love <d.love@dl.ac.uk>
11505
11506 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
11507 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
11508
11509 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11510
11511 * ps-print.el (ps-print-control-characters): Doc-string modified.
11512 (ps-output-string-prim): Comment format changed.
11513 (ps-do-despool): Indentation of source code changed.
11514
11515 1998-08-28 Kenichi Handa <handa@etl.go.jp>
11516
11517 * subr.el (sref): Make it an alias of aref. Make the
11518 byte-compiler warn that it is obsolete.
11519 (char-bytes): Make the byte-compiler warn that it is obsolete.
11520
11521 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
11522 Calculate the total bytes using position-bytes instead of
11523 char-bytes.
11524
11525 1998-08-27 Karl Heuer <kwzh@gnu.org>
11526
11527 * snmp-mode.el: New file.
11528 * files.el (auto-mode-alist): Add snmp-mode patterns.
11529
11530 1998-08-27 Karl Eichwalder <ke@suse.de>
11531
11532 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
11533
11534 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11535
11536 * calendar/diary-lib.el (diary-block): Doc fix..
11537 * calendar/calendar.el (diary-list-include-blanks): Doc fix..
11538
11539 1998-08-27 Richard Stallman <rms@gnu.org>
11540
11541 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
11542 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
11543 Clear appt-mode-string if we don't put something in it.
11544
11545 1998-08-27 Dave Love <fx@gnu.org>
11546
11547 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
11548 dired-local-variables-file for dired-x.
11549
11550 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
11551 for compressed library files too.
11552
11553 1998-08-26 Kenichi Handa <handa@etl.go.jp>
11554
11555 * language/european.el ("Latin-1"): Modify `documentation' key value.
11556 ("Latin-2"): Likewise.
11557
11558 1998-08-26 Karl Heuer <kwzh@gnu.org>
11559
11560 * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
11561
11562 1998-08-26 Albert L. Ting <alt@artisan.com>
11563
11564 * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
11565 (mail-hist-current-header-contents): Use mail-text-start.
11566
11567 1998-08-26 Richard Stallman <rms@gnu.org>
11568
11569 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
11570 (customize-changed-options-previous-release): New variable.
11571 (customize-changed-options): Use that variable as default arg.
11572
11573 1998-08-26 Karl Eichwalder <ke@suse.de>
11574
11575 * midnight.el: Require `timer' not only when compiling.
11576
11577 1998-08-26 Per Starback <starback@update.uu.se>
11578
11579 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
11580 buffer before creating help group.
11581
11582 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11583
11584 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
11585 coding-system-for-write before saving.
11586
11587 1998-08-26 Kevin Rodgers <kevinr@ihs.com>
11588
11589 * isearch.el (isearch-forward): Doc fix.
11590
11591 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org>
11592
11593 * emacs-lisp/find-func.el: Fix :version tags to have a string
11594 value, not a float.
11595
11596 * cus-dep.el: Fix typo in output.
11597
11598 1998-08-25 Dave Love <fx@gnu.org>
11599
11600 * repeat.el (repeat): Doc fix.
11601 [From rms:]
11602 (repeat-previous-repeated-command): New variable.
11603 (repeat): Check for real-last-command being null or repeat. Set
11604 repeat-previous-repeated-command.
11605
11606 * browse-url.el (browse-url-netscape): Fix format for hex escapes.
11607
11608 1998-08-25 Kenichi Handa <handa@etl.go.jp>
11609
11610 * gnus/message.el (message-send-mail-with-sendmail): Bind
11611 coding-system-for-write by the return value of
11612 select-message-coding-system.
11613 (message-send-mail-with-qmail): Likewise.
11614
11615 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org>
11616
11617 * emacs-lisp/autoload.el: Fix doc-string-elt property on
11618 define-derived-mode.
11619
11620 * files.el (file-name-invalid-regexp):
11621 Fix regex for ms-dos without long file names.
11622
11623 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11624
11625 * ps-print.el: Multi-byte buffer handling.
11626 (ps-print-version): New version number (4.0) and doc fix.
11627 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
11628 compilation for GNU Emacs and emacsens.
11629 (ps-generate-postscript-with-faces): Force invisible text to be
11630 visible.
11631 (dos-ps-printer): New var to avoid compilation gripes.
11632
11633 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11634
11635 * ps-print.el (ps-mule-plot-string): Pay attention to the case
11636 that no more characters can't be printed in the current line.
11637
11638 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11639
11640 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
11641 greater than TO.
11642
11643 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11644
11645 * ps-print.el: Add codes to make ps-print.el work also on Emacs
11646 20.2 and the earlier version.
11647 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
11648 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
11649 (ps-mule-find-wrappoint): Likewise.
11650 (ps-mule-generate-font): Change `X' to `x' in format
11651 control-string.
11652 (ps-generate): Call ps-mule-begin before calling ps-begin-job.
11653 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
11654 `restore' form procedures `BC' and `EC'.
11655
11656 1998-08-24 Kenichi Handa <handa@etl.go.jp>
11657
11658 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
11659 is an executable procedure. Make LineThickness, Xshadow, and
11660 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc.
11661 (ps-mule-font-info-database, ps-mule-font-info-database-ps,
11662 ps-mule-font-info-database-bdf): New vars.
11663 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
11664 (ccl-encode-ethio-unicode): New CCL program.
11665 (ps-mule-encode-ethiopic): New fun.
11666 (ps-mule-current-charset): New var.
11667 (ps-mule-get-font-spec, ps-mule-font-spec-src,
11668 ps-mule-font-spec-name, ps-mule-font-spec-encoding,
11669 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
11670 (ps-mule-external-libraries): New var.
11671 (ps-mule-init-external-library): New fun.
11672 (ps-mule-font-cache): New var.
11673 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
11674 (ps-last-font): New var.
11675 (ps-mule-prepare-font): New fun.
11676 (ps-mule-charset-list): New var.
11677 (ps-mule-prologue-generated, ps-mule-prologue): New vars.
11678 (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
11679 ps-mule-plot-string): New funs.
11680 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
11681 New vars.
11682 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
11683 ps-mule-prepare-cmpchar-font): New funs.
11684 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
11685 vars.
11686 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
11687 ps-mule-generate-bitmap-glyph): New funs.
11688 (ps-mule-initialize, ps-mule-begin): New funs.
11689 (ps-output-string-prim): Insert string as unibyte.
11690 (ps-output-prologue): New fun.
11691 (ps-flush-output): Handle the case of 'prologue.
11692 (ps-begin-file): Call ps-mule-initialize.
11693 (ps-begin-job): Set ps-control-or-escape-regexp differently if
11694 printing multibyte characters.
11695 (ps-begin-page): Set ps-mule-current-charset to 'ascii.
11696 (ps-basic-plot-string): Handle the case of printing ASCII
11697 characters by external libraries (e.g. BDF).
11698 (ps-set-font): Set ps-last-font.
11699 (ps-plot-region): Handle multibyte characters, use
11700 ps-mule-plot-string for them.
11701 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin.
11702
11703 * bdf.el: New file.
11704
11705 1998-08-23 Kenichi HANDA <handa@etl.go.jp>
11706
11707 * international/mule-cmds.el (select-message-coding-system): New
11708 function.
11709 (set-language-environment-coding-systems): Set
11710 default-sendmail-coding-system.
11711
11712 * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
11713 (default-sendmail-coding-system): New variable.
11714 (sendmail-send-it): Encode the message by a coding system
11715 select-message-coding-system returns.
11716
11717 1998-08-23 Eric Ludlam <zappo@gnu.org>
11718
11719 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
11720 (speedbar-mode): Set buffer to read only.
11721 (speedbar-temp-buffer-show-function): For emacs don't call hook
11722 with arguments.
11723 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
11724
11725 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu>
11726
11727 * speedbar.el (speedbar-key-map): Fix typo.
11728
11729 See ChangeLog.7 for earlier changes.