]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
ff475af26b28d94a613de533dd20ce6e998943de
[gnu-emacs] / lisp / ChangeLog
1 2000-07-24 Gerd Moellmann <gerd@gnu.org>
2
3 * textmodes/flyspell.el: Update to author's version 1.5d.
4
5 * progmodes/hideshow.el: Update copyright notice.
6
7 * vcursor.el: Set maintainer to FSF, since author cannot
8 be reached.
9
10 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
11
12 * info.el (Info-goto-emacs-key-command-node): Leave a space after
13 the prompt.
14
15 * mouse.el (popup-menu): Run the keymap through indirect-function,
16 in case it was defined with define-prefix-key. If the menu is a
17 list of keymaps, look up the binding of user's choice in each one
18 of the keymaps.
19 (mouse-popup-menubar): If the global and local menu-bar keymaps
20 don't have a prompt string, create one and insert it into the
21 keymap. Don't barf if current-local-map returns nil.
22
23 2000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
24
25 * dired.el (dired-sort-R-check): Added to allow recursive listing
26 to be undone.
27 (dired-sort-other): Use it.
28
29 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
30
31 * Release of cc-mode 5.27
32
33 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
34
35 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
36 c-beginning-of-statement-1 that caused a bad case of recursion
37 which could consume a lot of CPU in large classes in languages
38 that have in-expression classes (i.e. Java and Pike).
39
40 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
41 statements before top level constructs (i.e. case 6 is moved
42 before case 5 and is now case 4) to catch in-expression
43 classes in top level expressions correctly.
44
45 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
46
47 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
48 objc-method-intro. Case 4 removed and case 5I added.
49
50 * cc-langs.el (c-append-paragraph-start): New variable used by
51 c-common-init to get paragraph-start correct.
52 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
53 initialize paragraph-start to make it correct both with and
54 without the javadoc special case.
55
56 * cc-mode.el (java-mode): Use c-append-paragraph-start to
57 initialize paragraph-start for javadoc markup.
58
59 * cc-vars.el (c-style-variables-are-local-p): Incompatible
60 change by defaulting this to t. It's motivated by the
61 confusing behavior that otherwise arise from the style system
62 when editing both java and non-java files at the same time
63 (see the comments about style setting in c-common-init).
64
65 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
66
67 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
68 similar to the one in c-fill-paragraph to check the fill
69 prefix from the adaptive fill function for sanity.
70
71 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
72
73 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
74 defun block.
75
76 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
77
78 * cc-mode.texi Documented the change of cpp-macro.
79
80 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
81
82 * cc-align.el (c-lineup-multi-inher): Handle lines with
83 leading comma nicely. Extended to handle member initializers
84 too.
85
86 * cc-engine.el: (c-beginning-of-inheritance-list,
87 c-guess-basic-syntax): Fixed recognition of inheritance lists
88 when the lines begins with a comma.
89
90 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
91
92 * cc-vars.el (c-offsets-alist): Changed default for
93 member-init-cont to c-lineup-multi-inher since it now handles
94 member initializers and indents better for leading commas.
95
96 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
97
98 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
99 handling that caused class open lines to be recognized as
100 statement-conts in some cases.
101
102 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
103 guessed by the adaptive fill function unless point is on the
104 first line of a block comment.
105
106 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
107 when the buffer ends with a macro continuation char.
108
109 * cc-engine.el (c-guess-basic-syntax): Added support for
110 function definitions as statements in Pike. The first
111 statement in a lambda block is now labeled defun-block-intro
112 instead of statement-block-intro.
113
114 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
115 so that the class surrounding point is selected, not the one
116 innermost in the state.
117
118 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
119 recognition of switch labels having hanging multiline
120 statements.
121
122 * cc-engine.el (c-beginning-of-member-init-list): Broke out
123 some code in c-guess-basic-syntax to a separate function.
124 * cc-engine.el (c-just-after-func-arglist-p): Fixed
125 recognition of member inits with multiple line arglists.
126 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
127 member-init-cont when the commas are in funny places.
128
129 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
130
131 * cc-defs.el (c-auto-newline): Removed this macro since it's
132 not used anymore.
133
134 * cc-engine.el (c-looking-at-bos): New helper function.
135 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
136 inexpr and toplevel classes apart in Pike.
137
138 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
139 of case 9A.
140
141 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
142 constant, since "class" can introduce an in-expression class
143 in Pike nowadays.
144
145 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
146
147 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
148 indentation on cpp-macro lines.
149
150 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
151 a syntax modifier like comment-intro, to make it possible to
152 get syntactic indentation for preprocessor directives. It's
153 incompatible wrt to lineup functions on cpp-macro, but it has
154 no observable effect in the 99.9% common case where cpp-macro
155 is set to -1000.
156
157 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
158
159 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
160 member-init-cont when the preceding arglist is several lines.
161
162 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
163
164 * cc-styles.el (c-style-alist): The basic offset for the BSD
165 style corrected to 8.
166
167 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
168
169 * cc-styles.el (c-style-alist): Adjusted the indentation of
170 brace list openers in the gnu style.
171
172 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
173
174 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
175
176 * cc-cmds.el (c-electric-brace, c-electric-slash,
177 c-electric-star, c-electric-semi&comma, c-electric-colon,
178 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
179 when c-syntactic-indentation is nil.
180
181 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
182 we were left at comments preceding the first statement when
183 reaching the beginning of the buffer.
184
185 * cc-vars.el (c-syntactic-indentation): New variable to turn
186 off all syntactic indentation.
187
188 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
189
190 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
191 between the text and the block comment ender when it hangs,
192 depending on how many there are before the fill.
193
194 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
195
196 * cc-engine.el (c-beginning-of-closest-statement): New helper
197 function to go back to the closest preceding statement start,
198 which could be inside a conditional statement.
199 * cc-engine.el (c-guess-basic-syntax): Use
200 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
201
202 * cc-engine.el (c-guess-basic-syntax): Better handling of
203 arglist-intro, arglist-cont-nonempty and arglist-close when
204 the arglist is nested inside parens. Cases 7A, 7C and 7F
205 changed.
206
207 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
208 up-to-date with javadoc 1.2.
209
210 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
211
212 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
213 multiline Pike type decls.
214
215 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
216
217 * cc-cmds.el (c-indent-new-comment-line): Always break
218 multiline comments in multiline mode, regardless of
219 comment-multi-line.
220
221 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
222
223 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
224 fully::qualified::names in C++ member init lists. Preamble in
225 case 5D changed.
226
227 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
228
229 * cc-langs.el (c-common-init): Handling of obsolete variables
230 moved to c-initialize-cc-mode. More compatible style override
231 when using global style variables.
232 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
233 variables moved here.
234
235 * cc-mode.texi: Documented the special behavior of
236 c-special-indent-hook as a style variable. Don't talk about
237 doing (c-make-styles-buffer-local t) in a mode hook, since
238 that's already too late to work right.
239
240 * cc-styles.el (c-make-styles-buffer-local): Flag style
241 variable localness in c-style-variables-are-local-p to make
242 the compatibility measure in c-common-init work well.
243
244 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
245 longer contain set-from-style.
246 * cc-styles.el (c-initialize-builtin-style): Don't check for
247 set-from-style on c-special-indent-hook.
248 * cc-styles.el (c-copy-tree): Obsolete. The standard function
249 copy-alist is sufficient now.
250
251 * cc-styles.el (c-set-style, c-set-style-1,
252 c-get-style-variables): Fixes to variable initialization so
253 that duplicate entries in styles have the same effect
254 regardless of DONT-OVERRIDE.
255
256 * cc-styles.el (c-set-style-2): Fixed bug where the
257 initialization of inheriting styles failed when the
258 dont-override flag is set.
259
260 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
261 on this.
262
263 2000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
264
265 * cc-defs.el (c-forward-comment): Removed the workaround
266 introduced in 5.38 since it had worse side-effects. If a line
267 contains the string "//\"", it regarded the // as a comment
268 start since the \ temporarily doesn't have escape syntax.
269
270 2000-07-17 Emmanuel Briot <briot@act-europe.fr>
271
272 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
273 ada-xref.el before ada-prj.el, so that the Project menu is created
274 when ada-prj tries to add to it.
275 (ada-activate-keys-for-case): Suppress the characters that are not
276 part of the Ada syntax. Better compatibility with else-mode
277 (ada-adjust-case-interactive): When auto-casing is not active,
278 correctly insert newlines (used to insert only ^M). Prevent the
279 syntax table from being changed in case of an error
280 (or '_' becomes part of a word and some commands are confused).
281 Do nothing if ada-auto-case is nil.
282 (ada-after-keyword-p): Ignore keywords that are also attributes
283 (ada-batch-reformat): Update usage comment
284 (ada-call-from-contextual-menu): New function
285 (ada-case-read-exceptions): Reinitialize the casing exception list
286 first to nil first, so that the casing exception file can be
287 shared.
288 (ada-check-defun-name): Handles "configure" keyword for gnatdist
289 files.
290 (ada-compile-goto-error): Fix regexp used to detect a file:line
291 anywhere in the error message
292 (ada-contextual-menu-last-point): New variable
293 (ada-create-keymap): If the variable delete-key-deletes-forward is
294 t on XEmacs, it means that DEL should delete one character
295 forward.
296 (ada-create-menu): Use :included instead of :visible for XEmacs.
297 New submenu "Options".
298 (ada-end-stmt-re): Correctly indent "select ... then abort"
299 statements.
300 (ada-fill-comment-paragraph): Correctly delete all leading '--'
301 even if they don't match ada-fill-comment-prefix Fix handling of
302 paragraphs on the first or last line of a file.
303 (ada-format-paramlist): Fix handling of default parameter values.
304 (ada-get-body-name): New function.
305 (ada-get-current-indent): Optimized by searchling directly for an
306 existing generic part or a statement outside of it. Handle
307 ada-indent-align-comments when indenting comments Replaced some
308 regexps by testing directly the next character. This results in a
309 huge speedup on some files. New indentation scheme for renames
310 statements. Stop looking for the 'while' or 'for' associated with
311 a 'loop' at the first semicolon encountered. A "return" can also
312 match an anonymous access subprogram declaration.
313 (ada-get-indent-noindent): Ignore strings and comments when
314 looking for the keywords "record" and "private".
315 (ada-goto-matching-decl-start): When matching "if", make sure we
316 are not in fact seeing "end if". Ignore "when" statements except
317 when initial keyword was "begin". Fix handling of nested
318 procedures. Add a recursive call to this function to skip over
319 other 'end' statmts. Fix indentation for "when .. => begin"
320 (ada-in-open-paren-p): Fix indentation for complex boolean
321 expressions, where 'and then', 'or else' and parenthesis
322 statements are mixed up.
323 (ada-in-paramlist-p): Skip comments while searching for the
324 beginning Fix handling of operator declarations.
325 (ada-indent-align-comments): New variable
326 (ada-indent-current): Change the syntax table only in the
327 protected section, so that we are sure it is restored correctly.
328 (ada-indent-on-previous-lines): Use ada-use-indent and
329 ada-with-indent Correctly indent "select ... then"
330 (ada-indent-region): Slight speedup.
331 (ada-indent-renames): New variable.
332 (ada-last-which-function-subprog, ada-last-which-function-line):
333 New variables
334 (ada-looking-at-semi-private): Correctly indent the 'private'
335 keyword when it is the first word in a package declaration.
336 (ada-loose-case-word): Stop searching if at the end of the buffer.
337 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
338 even if point is not initially at the end of the word.
339 (ada-matching-decl-start-re): Add "when".
340 (ada-mode): Add support for abbrev-mode, outline-mode and
341 which-func-mode Override the old find-file.el entry in
342 ff-special-constructs since it is using the obsolete
343 ada-spec-suffix variable
344 (ada-no-auto-case): New function
345 (ada-scan-paramlist): When parsing the argument type, accept
346 spaces (as in "X 'Class", generated by Rational Rose).
347 (ada-other-file-name): No longer loads the other file.
348 (ada-popup-menu): Save and restore the current buffer and cursor
349 position before and after displaying the menu.
350 (ada-search-ignore-complex-boolean): New function.
351 (ada-uncomment-region): Emacs21 already knows how to delete
352 comments not starting in the first column.
353 (ada-use-indent): New variable
354 (ada-which-function): New function.
355 (ada-with-indent): New variable
356 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
357 can be batch-compiled from the command line.
358
359 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
360 Add to the menu when the file is loaded, not in ada-mode-hook.
361 Add -toolbar to the default ddd command Switches moved from
362 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
363 ada-prj-default-comp-opt
364 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
365 Reference Manual to the menu
366 (ada-check-current): rewritten as a call to ada-compile-current
367 (ada-compile): Removed.
368 (ada-compile-application, ada-compile-current, ada-check-current):
369 Set the compilation-search-path so that compile.el automatically
370 finds the sources in src_dir. Automatic scrollong of the
371 compilation buffer. C-uC-cC-c asks for confirmation before
372 compiling
373 (ada-compile-current): New parameter, prj-field
374 (ada-complete-identifier): Load the .ali file before doing
375 processing
376 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
377 conform to gnatmake's behavior.
378 (ada-find-file-in-dir): New function
379 (ada-find-references): Set the environment variables for gnatfind
380 (ada-find-src-file-in-dir): New function.
381 (ada-first-non-nil): Removed
382 (ada-gdb-application): Add support for jdb, the java debugger.
383 (ada-get-ada-file-name): Load the original-file first if not done
384 yet.
385 (ada-get-all-references): Handles the new ali syntax (parent types
386 are found between <>).
387 (ada-initialize-runtime-library): New function
388 (ada-mode-hook): Always load a project file when a file is opened,
389 so that the casing exceptions are correctly read.
390 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
391 (ada-parse-prj-file): Use find-file-noselect instead of find-file
392 to open the project file, since the latter does not work with
393 speedbar Get default values before loading the prj file, or the
394 default executable file name is wrong. Use the absolute value of
395 src_dir to initialize ada-search-directories and
396 compilation-search-path,... Add the standard runtime library to
397 the search path for find-file.
398 (ada-prj-default-debugger): Was missing an opening '{'
399 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
400 variables.
401 (ada-prj-default-gnatmake-opt): New variable
402 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
403 buffers, the project file is the default one Save the windows
404 configuration before displaying the menu.
405 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
406 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
407 ...) regexp-quote identifiers names to support operators +,
408 -,... in regexps.
409 (ada-remote): New function.
410 (ada-run-application): Erase the output buffer before starting the
411 run Support remote execution of the application. Use
412 call-process, or the arguments are incorrectly parsed
413 (ada-set-default-project-file): Reread the content of the active
414 project file, not the one from the current buffer When a project
415 file is set as the default project, all directories are
416 automatically associated with it.
417 (ada-set-environment): New function
418 (ada-treat-cmd-string): New special variable ${current}
419 (ada-treat-cmd-string): Revised. The substitution is now done for
420 any ${...} substring
421 (ada-xref-current): If no body was found, compiles the spec
422 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
423 compiler to get rid of command line length limitations.
424 (ada-xref-get-project-field): New function
425 (ada-xref-project-files): New variable
426 (ada-xref-runtime-library-specs-path)
427 (ada-xref-runtime-library-ali-path): New variables
428 (ada-xref-set-default-prj-values): Default run command now does a
429 cd to the build directory. New field: main_unit Provide a default
430 file name even if the current buffer has no prj file.
431
432 * ada-prj.el:
433 Rewritten to show a tabbed-dialog.
434 (ada-prj-add-ada-menu): Remove the map and name parameters.
435 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
436 New function
437 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
438 (ada-prj-load-from-file): New function
439 (ada-prj-save): Always save fields that depend on the current buffer
440 (ada-prj-show-value): New function
441
442 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
443 Ada mode. This will allow us to display the Ada menu in any buffer
444 we want (for project items).
445 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
446 number of spaces in the header.
447
448 2000-07-24 Dave Love <fx@gnu.org>
449
450 * ediff-init.el (ediff-region-help-echo): Bind face-help.
451
452 2000-07-23 Noah Friedman <friedman@splode.com>
453
454 * type-break.el (type-break): perform autosave.
455 Suggested by Stephen Gildea <gildea@intouchsys.com>.
456 (type-break-do-query): Cancel query schedule while performing
457 actual query, to avoid possibility of a second query being made
458 while first one is already in progress.
459 (type-break-time-stamp-format): New variable.
460 (type-break-time-stamp): New function.
461 (type-break-time-warning): Use it.
462 (type-break-keystroke-warning): Use it.
463 (type-break-noninteractive-query): Use it.
464
465 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
466 cookie.
467 Use add-minor-mode to set minor-mode-alist, if available.
468 (eldoc-echo-area-use-multiline-p): New user option.
469 (eldoc-echo-area-multiline-supported-p): New variable.
470 (eldoc-docstring-format-sym-doc): Use them.
471 (eldoc-mode): If not using idle timers, append to local post and
472 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
473 (eldoc-display-message-no-interference-p): Don't interfere with
474 edebug.
475 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
476 (eldoc-function-arglist): New function.
477 (eldoc-function-argstring): Use it.
478
479 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
480 auto save directory exists before calling directory-files.
481
482 2000-07-23 Dave Love <fx@gnu.org>
483
484 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
485 ^o, ^u.
486
487 2000-07-21 Dave Love <fx@gnu.org>
488
489 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
490 now passed to the function. It now works properly.
491
492 * smerge-mode.el (smerge-mode-menu): Fill it out.
493
494 2000-07-20 Gerd Moellmann <gerd@gnu.org>
495
496 * info-look.el (info-lookup): If *info* is shown in another frame
497 on the same display, select that frame, instead of switching to
498 the Info buffer in another window of the selected frame.
499
500 * simple.el (universal-argument-map): Bind numeric keypad keys
501 kp-0 to kp-9 and kp-subtract.
502 (digit-argument): Handle these keys.
503
504 2000-07-20 Dave Love <fx@gnu.org>
505
506 * net/goto-addr.el (goto-address-fontify): Don't bother with
507 buffer-modified and read-only stuff -- irrelevant with overlays.
508 Put an extra property on the overlays and use it to clean up in
509 case goto-address is re-run.
510
511 2000-07-19 Richard M. Stallman <rms@gnu.org>
512
513 * timer.el (run-with-idle-timer): Doc fix.
514
515 * mail/mail-utils.el (mail-strip-quoted-names):
516 Handle case where <...> appears inside "...".
517 Use replace-match to edit the string more simply.
518 (rmail-dont-reply-to): Cope with an unmatched ".
519
520 2000-07-19 Dave Love <fx@gnu.org>
521
522 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
523 implementation.
524
525 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
526 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
527 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
528
529 2000-07-19 Gerd Moellmann <gerd@gnu.org>
530
531 * textmodes/refer.el: Correct maintainer's email address.
532
533 * progmodes/hideif.el: Correct author's email address.
534 Fix typo in comment.
535
536 * xml.el: New file.
537
538 * mail/mailheader.el: Correct author's mail address.
539
540 * gnus/parse-time.el: Correct author's mail address.
541
542 2000-07-19 Colin Walters <walters@cis.ohio-state.edu>
543
544 * comint.el (comint-highlight-input, comint-highlight-face):
545 New user options.
546 (comint-input-ring-file-name): Change custom type.
547 (comint-mode-map): Bind mouse-2.
548 (comint-insert-clicked-input): New function.
549 (comint-send-input): Handle input highlighting.
550
551 2000-07-18 Stefan Monnier <monnier@cs.yale.edu>
552
553 * mouse.el (popup-menu): New function.
554 (mouse-major-mode-menu): Use it.
555
556 2000-07-18 Dave Love <fx@gnu.org>
557
558 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
559 improvements.
560
561 2000-07-18 Gerd Moellmann <gerd@gnu.org>
562
563 * faces.el (face-font-selection-order)
564 (face-font-family-alternatives): Add custom type.
565
566 2000-07-18 Dave Love <fx@gnu.org>
567
568 * cus-edit.el (custom-variable-reset-saved)
569 (custom-variable-reset-standard): Remove unused bindings.
570
571 * rect.el (open-rectangle-line): Remove unused let.
572
573 * hl-line.el (hl-line-highlight): Check hl-line-mode.
574
575 2000-07-18 Gerd Moellmann <gerd@gnu.org>
576
577 * cdl.el: Fix `Maintainer' keyword.
578
579 * play/pong.el: Add author's email address.
580
581 2000-07-17 Sam Steingold <sds@gnu.org>
582
583 * files.el (insert-directory): Call `split-string' instead of
584 re-implementing it.
585
586 2000-07-18 Gerd Moellmann <gerd@gnu.org>
587
588 * mail/vms-pmail.el: Change maintainer to FSF.
589
590 * net/goto-addr.el: Change maintainer to FSF.
591
592 * recentf.el: Update from author.
593
594 * info.el (Info-title-face-alist): Removed.
595
596 2000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
597
598 * eshell/eshell.el (eshell): Replace links to eshell.info with
599 links to eshell, to avoid problems on systems where the manual is
600 installed as `eshell'.
601 * eshell/esh-cmd.el (eshell-cmd): Ditto.
602 * eshell/em-smart.el (eshell-smart): Ditto.
603 * eshell/em-banner.el (eshell-banner): Ditto.
604 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
605
606 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
607 same-file check in the MS-DOS version (it does support inodes).
608
609 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
610
611 * eshell/eshell.el (eshell-directory-name):
612 Run default directory name through convert-standard-filename.
613
614 2000-07-18 Kenichi Handa <handa@etl.go.jp>
615
616 * international/mule-cmds.el (select-safe-coding-system):
617 Fix typo in the comment.
618
619 * language/european.el (compound-text):
620 Force katakana-jisx0201 to be designated to G1.
621
622 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
623 Don't translate some national variant characters of latin-jisx0201.
624 (x-ctext): Force katakana-jisx0201 to be designated to G1.
625
626 * international/kkc.el (kkc-after-update-conversion-functions):
627 New variable.
628 (kkc-update-conversion): Run functions in it at the tail.
629
630 2000-07-16 John Wiegley <johnw@gnu.org>
631
632 * lisp/align.el (align-newline-and-indent):
633 Adding new function. for auto-aligning blocks of code on RET.
634 (align-region): Fixed badly formatted minibuffer message.
635
636 2000-07-17 Kenichi Handa <handa@etl.go.jp>
637
638 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
639 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
640 the conversion list at first if appropriate.
641 (kkc-next): Don't update kkc-next-count here.
642 (kkc-prev): Don't update kkc-prev-count here.
643 (kkc-show-conversion-list-update): Fix setting up of conversion
644 list message.
645
646 2000-07-16 Stefan Monnier <monnier@cs.yale.edu>
647
648 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
649
650 2000-07-16 Dave Love <fx@gnu.org>
651
652 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
653 function to be more specific.
654
655 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
656 non-string help-echo.
657 (widget-types-convert-widget): Defsubst it.
658 (widget-echo-help): Try to cope with a help-echo function of two
659 possible sorts.
660
661 2000-07-15 Jason Rumney <jasonr@gnu.org>
662
663 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
664 Declare as obsolete.
665
666 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
667
668 2000-07-14 Gerd Moellmann <gerd@gnu.org>
669
670 * hilit-chg.el: Fix typo.
671
672 2000-07-14 Dave Love <fx@gnu.org>
673
674 * info.el (Info-mode-menu): Fix use of :help, :enable.
675
676 2000-07-14 Stefan Monnier <monnier@cs.yale.edu>
677
678 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
679
680 2000-07-13 Dave Love <fx@gnu.org>
681
682 * emacs-lisp/easymenu.el: Doc fixes.
683 (easy-menu-remove): Defalias to ignore.
684
685 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
686 Call throw correctly.
687
688 2000-07-13 Gerd Moellmann <gerd@gnu.org>
689
690 * faces.el (frame-background-mode): Doc fix.
691
692 * simple.el (eval-expression-print-length): Change custom type to
693 allow entering nil as value.
694
695 2000-07-13 Dave Love <fx@gnu.org>
696
697 * progmodes/fortran.el (fortran-imenu-generic-expression):
698 Change definition layout.
699 (fortran-mode-menu): Reinstate customize entries.
700
701 * cus-edit.el (custom-group-menu-create, customize-menu-create):
702 Use :filter, per old XEmacs code.
703
704 2000-07-12 Gerd Moellmann <gerd@gnu.org>
705
706 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
707 event when deciding what to send to the terminal.
708
709 2000-07-12 Dave Love <fx@gnu.org>
710
711 * cus-start.el: Add optional version as 4th element of specs and
712 use it for several things new in v21. Remove load-path. Fix type
713 of line-number-display-limit.
714
715 2000-07-11 Dave Love <fx@gnu.org>
716
717 * progmodes/fortran.el: Don't require easymenu.
718 Use repeat counts in various regexps.
719 (fortran-mode-syntax-table): Defvar directly.
720 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
721 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
722 Use defvar, not defconst.
723 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
724 (fortran-mode): Set fortran-comment-line-start-skip,
725 fortran-comment-line-start-skip, dabbrev-case-fold-search.
726 (fortran-comment-indent): Use defsubst.
727 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
728 Use fortran-comment-indent, not fortran-comment-indent-function.
729 (fortran-comment-region, fortran-electric-line-number): Simplify.
730 (fortran-auto-fill): New function.
731 (fortran-do-auto-fill): Deleted.
732 (fortran-find-comment-start-skip):
733 Check for non-null comment-start-skip.
734 (fortran-auto-fill-mode, fortran-fill-statement):
735 Use fortran-auto-fill.
736 (fortran-fill): Use fortran-auto-fill. Check for null
737 comment-start-skip. Simplify final clause and use end-of-line finally.
738
739 * widget.el (widget-plist-member): New alias.
740
741 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
742
743 * eshell/esh-module.el (toplevel): Reference
744 byte-compile-current-file only if it is bound.
745
746 2000-07-10 Gerd Moellmann <gerd@gnu.org>
747
748 * dired.el: Don't require `dired-aux'.
749
750 2000-07-10 Miles Bader <miles@lsi.nec.co.jp>
751
752 * dired-aux.el (dired-show-file-type): New function.
753 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
754 (dired-show-file-type): Add autoload.
755
756 2000-07-10 Kenichi Handa <handa@etl.go.jp>
757
758 * international/mule-diag.el (describe-font): Adjusted for the
759 change of fontset-info.
760 (print-fontset): Likewise.
761
762 2000-07-09 Stefan Monnier <monnier@cs.yale.edu>
763
764 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
765
766 2000-07-07 Gerd Moellmann <gerd@gnu.org>
767
768 * bindings.el: Bind `[delete]' to delete-char.
769
770 * dired.el (dired-find-alternate-file): New function.
771 (dired-mode-map): Bind `a' to dired-find-alternate-file.
772 (toplevel): Require dired-aux when compiling.
773 (dired-buffers): Move defvar within file to avoid compiler warning.
774
775 * info.el (Info-last-search): Variable removed.
776 (Info-search-history): New variable.
777 (Info-search): New Info-search-history.
778
779 * battery.el, info-look.el: Change author's mail address.
780
781 2000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
782
783 * mail/rmail.el (rmail-clear-headers): Don't throw an error
784 if rmail-ignored-headers is nil.
785 (rmail-retry-failure): Bind rmail-ignored-headers and
786 rmail-displayed-headers to nil.
787
788 2000-07-06 Gerd Moellmann <gerd@gnu.org>
789
790 * lpr.el (lpr-page-header-switches): Add `-h' switch.
791 (print-region-1): Don't hard code `-h' here.
792
793 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
794
795 2000-07-01 Francesco Potorti` <pot@gnu.org>
796
797 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
798 exim can use "your message" instead of "the message".
799
800 2000-07-06 Stefan Monnier <monnier@cs.yale.edu>
801
802 * facemenu.el: Docstrings fixes.
803 (facemenu-get-face): Don't use internal-find-face.
804 (facemenu-iterate): Rename arg to match the docstring.
805
806 * newcomment.el (uncomment-region): Be more careful when skipping
807 backwards over `=' not to bump into BOBP.
808
809 2000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
810
811 * ediff-diff.el (ediff-wordify): Use syntax table.
812 * ediff-init.el (ediff-has-face-support-p): Use
813 ediff-color-display-p.
814 (ediff-color-display-p): Use display-color-p, changed to defun
815 from defsubst.
816 Got rid of special cases for NeXT and OS/2.
817 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
818 face.
819
820 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
821
822 * emacs-lisp/lucid.el: Require CL.
823 (copy-tree, remprop): Remove, it's provided by CL.
824 (map-keymap): Define in terms of cl-map-keymap.
825 (extent-property, set-extent-end-glyph): New functions.
826
827 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
828
829 2000-07-05 Gerd Moellmann <gerd@gnu.org>
830
831 * Makefile.in (DONTCOMPILE): Add comment that the name may
832 not be changed without changing the make-dist script.
833
834 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
835 (cl-mapc): Use mapc instead of cl-old-mapc.
836
837 2000-07-05 Andrew Innes <andrewi@gnu.org>
838
839 * makefile.nt: Add support for `bootstrap' and related targets.
840
841 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
842
843 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
844 (easy-menu-do-define): Use `menu-item' format.
845 Handle case where easy-menu-create-menu returns a symbol.
846 Manually call the potential top-level filter in the function binding.
847 (easy-menu-filter-return): New arg NAME.
848 Convert to a keymap if MENU is an XEmacs menu.
849 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
850 (easy-menu-converted-items-table, easy-menu-convert-item):
851 New var and fun to memoize easy-menu-convert-item-1.
852 (easy-menu-do-add-item): Use it.
853 (easy-menu-create-menu): Use easy-menu-convert-item.
854 Wrap easy-menu-filter-return around any :filter specification.
855 Don't convert the menu if a filter was specified.
856 Tell easy-menu-make-symbol not to check for MENU being an expression.
857 (easy-menu-make-symbol): New arg NOEXP.
858
859 2000-07-05 Gerd Moellmann <gerd@gnu.org>
860
861 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
862 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
863 (eval-defun): If called with prefix arg, instrument code for
864 Edebug.
865
866 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
867 similar to that of eval-defun.
868
869 2000-07-04 Dave Love <fx@gnu.org>
870
871 * hl-line.el (hl-line-overlay): Make it permanent-local.
872
873 * calendar/todo-mode.el: Replaced with a working version, based on
874 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
875
876 2000-07-03 Miles Bader <miles@lsi.nec.co.jp>
877
878 * paths.el (prune-directory-list): New function.
879 (Info-default-directory-list): Rewritten to more methodically
880 enumerate a big list of possible info directories (based on the
881 list used by the standalone info reader).
882
883 * info.el (info-initialize): Use prune-directory-list to remove
884 non-existent directories from Info-directory-list.
885
886 * paths.el (Info-default-directory-list): Try a list of possible
887 info-directories instead of a single one. Add the possible
888 info directory "/usr/share/info".
889
890 * woman.el (woman-man.conf-path): Explicitly include the debian
891 man-db config file "/etc/manpath.config".
892 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
893 are present in `manpath.config'.
894 (woman-manpath): Include "/usr/share/man".
895
896 2000-07-03 Gerd Moellmann <gerd@gnu.org>
897
898 * frame.el (blink-cursor-mode): Don't hide cursor initially.
899
900 * startup.el (command-line): Initialize blink-cursor based
901 on window-system.
902
903 * frame.el (blink-cursor): Default to nil if not running under
904 a window-system.
905
906 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
907 (face-x-resources): Remove duplicate entry for :font.
908
909 * textmodes/refer.el (refer-find-entry-internal): Use some-window
910 instead of cycling through windows with next-window.
911
912 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
913 of cycling through windows with next-window.
914
915 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
916 of cycling through windows with next-window.
917
918 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
919 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
920 instead of cycling through windows with next-window.
921
922 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
923 instead of cycling through windows with next-window.
924
925 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
926 of cycling through windows with next-window.
927
928 * terminal.el (te-process-output): Use walk-windows instead of
929 cycling through windows with next-window.
930
931 * server.el (server-switch-buffer): Use some-window instead of
932 cycling through windows with next-window.
933
934 * window.el (some-window): New function.
935 (walk-windows): Remove reference to walk-windows-start.
936
937 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
938
939 2000-07-03 Richard Stallman <rms@gnu.org>
940
941 * window.el (walk-windows): Guarantee termination by keeping a list
942 of all the windows already handled.
943
944 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
945
946 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
947 window-system.
948
949 * man.el (Man-notify-when-ready): Don't use window-system. If
950 Man-notify-method is newframe, and the display is not
951 multi-frame, select the frame created for the man page.
952 (Man-init-defvars): Doc fix.
953
954 2000-06-28 Gerd Moellmann <gerd@gnu.org>
955
956 * faces.el (region): Change background color for light background.
957
958 * ediff-wind.el (ediff-setup-control-frame): Remove :box
959 attribute from mode-line face of Ediff control frame.
960
961 * replace.el (query-replace-map): Bind `e' like `E'.
962
963 2000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
964
965 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
966 Change name to "Select All".
967
968 * dos-fns.el (convert-standard-filename): Fix last change.
969
970 2000-06-27 Gerd Moellmann <gerd@gnu.org>
971
972 * help.el (describe-variable): Don't insert a second `'s' in front
973 of the string `value is shown below'. Since the syntax-table is
974 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
975 an existing `'s', so that this won't be deleted.
976
977 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
978 * pcmpl-unix.el: New files.
979
980 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
981
982 * wid-edit.el (widget-member): Use the new plist-member.
983
984 2000-06-26 Gerd Moellmann <gerd@gnu.org>
985
986 * replace.el (perform-replace): Undo change of 2000-04-04.
987 Instead, move backward 1 character at the end of the loop when
988 necessary.
989
990 * faces.el (fringe): Change face for different backgrounds.
991
992 * eshell/esh-module.el (toplevel): Load defgroup's differently;
993 patch from John.
994
995 * eshell/*.el: Change spelling of the Free Software Foundation.
996
997 * eshell/esh-toggle.el: Removed.
998
999 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
1000
1001 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
1002 interactively.
1003
1004 2000-06-26 Alex Schroeder <alex@gnu.org>
1005
1006 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
1007 `define-key'; instead of checking `(emacs-version)' check for
1008 `set-keymap-parent' and `set-keymap-name' directly. Add entries
1009 for `;' and `o' which might be electric.
1010
1011 (sql-electric-stuff): New user option.
1012 (sql-magic-go): New function which uses `sql-electric-stuff'.
1013 (sql-magic-semicolon): New function which uses
1014 `sql-electric-stuff'.
1015
1016 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
1017 is not fboundp.
1018
1019 (sql-oracle-options): New variable.
1020 (sql-oracle): Use it.
1021
1022 (sql-imenu-generic-expression): Doc change.
1023 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
1024 is used.
1025
1026 (sql-informix): Added command line parameter "-" to force
1027 sql-informix-program to use stdout.
1028
1029 2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
1030
1031 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
1032 (cp864-decode-table): Doc fix.
1033 (cp720-decode-table): New variable, supports the Arabic OEM
1034 codepage used by Windows.
1035 (cp737-decode-table): New, Greek OEM codepage used by Windows.
1036
1037 2000-06-23 Dave Love <fx@gnu.org>
1038
1039 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
1040 (font-lock-fontify-anchored-keywords): Use
1041 line-beginning-position.
1042 (global-font-lock-mode): Use mapc.
1043
1044 2000-06-23 Stefan Monnier <monnier@cs.yale.edu>
1045
1046 * eshell/esh-module.el: Require CL when compiling.
1047
1048 2000-06-23 Gerd Moellmann <gerd@gnu.org>
1049
1050 * comint.el (comint-substitute-in-file-name): Call replace-match
1051 with second and third arg t.
1052
1053 * cus-edit.el (custom-button-face, custom-button-pressed-face):
1054 Specify foreground color.
1055
1056 * faces.el (tool-bar, mode-line, header-line): Specify foreground
1057 color.
1058
1059 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
1060
1061 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
1062 cddr instead of cdddr.
1063
1064 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
1065 instead of copy-list.
1066
1067 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
1068 of copy-list.
1069
1070 * subdirs.el: Add eshell subdirectory.
1071
1072 * eshell: New subdirectory containing the Eshell package.
1073
1074 * pcomplete.el: New file.
1075
1076 2000-06-23 Paul Eggert <eggert@twinsun.com>
1077
1078 * mail/mailpost.el (post-mail-send-it): Make sure file has
1079 proper permissions from birth.
1080
1081 * files.el (basic-save-buffer-2): When temporarily setting
1082 file modes, set them to current modes plus 0200, not to 0777.
1083
1084 * emerge.el (emerge-make-temp-file): Make sure file has proper
1085 permissions from birth.
1086
1087 2000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
1088
1089 * files.el (make-backup-file-name-1): On DOS/Windows, run the
1090 backup file name through convert-standard-filename.
1091
1092 * dos-fns.el (convert-standard-filename): Convert leading
1093 directories as well. When long file names are supported, convert
1094 characters that are invalid in Windows file names.
1095
1096 2000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1097
1098 * ps-print.el: Fix bug: if ^L is the very first buffer character,
1099 ps-print crashes. New feature: page selection for printing. Create
1100 raw-text-unix coding system for XEmacs. Doc fix.
1101 (ps-print-version): New version number (5.2.3).
1102 (ps-plot-region): Bug fix.
1103 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
1104 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
1105 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
1106 funs.
1107 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
1108 (ps-last-page): New vars.
1109
1110 2000-06-21 Gerd Moellmann <gerd@gnu.org>
1111
1112 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
1113 empty option string.
1114
1115 2000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
1116
1117 * man.el (man): Doc fix.
1118
1119 2000-06-21 Kenichi Handa <handa@etl.go.jp>
1120
1121 * international/mule-cmds.el (set-language-info-alist): Docstring
1122 fixed.
1123
1124 2000-06-20 Gerd Moellmann <gerd@gnu.org>
1125
1126 * version.el (emacs-version): Use ISO date format.
1127
1128 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
1129 instead of `M-backspace'.
1130
1131 * simple.el (turn-off-auto-fill): New function.
1132
1133 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
1134
1135 * jit-lock.el (with-buffer-prepared-for-jit-lock):
1136 Renamed from with-buffer-prepared-for-font-lock and use
1137 inhibit-modification-hooks rather than setting *-change-functions.
1138 Update all functions to use the new name.
1139 (jit-lock-first-unfontify-pos): New semantics (and doc).
1140 (jit-lock-mode): Make non-interactive.
1141 Don't automatically turn on font-lock.
1142 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
1143 Always use jit-lock-after-change.
1144 Remove and restore font-lock-after-change-function.
1145 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
1146 (jit-lock-after-unfontify-buffer): Remove.
1147 (jit-lock-stealth-fontify):
1148 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
1149 (jit-lock-after-change): Set the `fontified' text-prop to nil.
1150
1151 2000-06-20 Sam Steingold <sds@gnu.org>
1152
1153 * emacs-lisp/cl-indent.el (toplevel): Indent
1154 `print-unreadable-object' properly. Untabify.
1155
1156 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
1157
1158 * textmodes/reftex.el (reftex-find-citation-regexp-format):
1159 Support for bibentry.
1160 (reftex-compile-variables): Fixed problem with end of section-re.
1161
1162 * texmodes/reftex-dcr.el (reftex-view-crossref,
1163 reftex-view-crossref-from-bibtex):
1164 Deal with changed `reftex-find-citation-regexp-format'.
1165 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
1166 Replaced `remprop' with `put'.
1167 (reftex-view-crossref, reftex-view-crossref-when-idle):
1168 Support for bibentry.
1169
1170 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
1171 New entry for bibentry package.
1172
1173 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
1174 Regexp also matches "\nobibliography".
1175
1176 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
1177 Call `reftex-ensure-write-access' before doing anything.
1178 (reftex-ensure-write-access): New function.
1179
1180 2000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
1181
1182 * progmodes/idlwave.el: File re-installed (update to version 4.2)
1183
1184 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
1185
1186 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
1187
1188 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
1189
1190
1191 2000-06-20 Dave Love <fx@gnu.org>
1192
1193 * faces.el (frame-background-mode): Use set-default, not set, in
1194 setter.
1195 (frame-update-faces, frame-update-face-colors): Define with
1196 defalias.
1197
1198 * enriched.el (enriched-decode-foreground)
1199 (enriched-decode-background): Don't use internal-find-face.
1200
1201 * apropos.el: Doc fixes.
1202
1203 * cus-edit.el (customize-changed-options): Check arg.
1204 (customize-version-lessp): Don't require decimal point.
1205
1206 * custom.el (defcustom, defgroup): Doc fix.
1207
1208 * newcomment.el (comment) <defgroup>: Add :version.
1209 (comment-multi-line): Doc fix.
1210
1211 * emulation/mlsupport.el (define-hooked-local-abbrev,
1212 define-hooked-global-abbrev): Fix, using define-abbrev.
1213
1214 2000-06-19 Gerd Moellmann <gerd@gnu.org>
1215
1216 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
1217 the whole buffer.
1218
1219 2000-06-19 Dave Love <fx@gnu.org>
1220
1221 * menu-bar.el (menu-bar-options-save): New function.
1222 (menu-bar-options-menu): Use it.
1223 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
1224 Simplify.
1225
1226 2000-06-19 Andreas Schwab <schwab@suse.de>
1227
1228 * progmodes/etags.el (tags-query-replace): Put new parameters
1229 START and END at the end, for backward compatibility.
1230
1231 2000-06-19 Kenichi Handa <handa@etl.go.jp>
1232
1233 * international/codepage.el:
1234 (cp-coding-system-for-codepage-1): Delete special codes for
1235 generating xxx-dos coding system because now a CCL based coding
1236 system can handle EOL conversion by default.
1237
1238 * international/mule.el (make-coding-system): Generate subsidiary
1239 coding systems for EOL handling variants even for a CCL based
1240 coding system.
1241
1242 2000-06-19 Kenichi Handa <handa@etl.go.jp>
1243
1244 * international/isearch-x.el (isearch-minibuffer-input-method)
1245 (isearch-minibuffer-input-method-function): These variables
1246 deleted.
1247 (isearch-with-input-method): Don't use the above variables.
1248 (isearch-process-search-multibyte-characters): Likewise. Call
1249 read-string with the arg INHERIT-INPUT-METHOD t.
1250
1251 2000-06-17 Stefan Monnier <monnier@cs.yale.edu>
1252
1253 * font-lock.el (font-lock-after-fontify-buffer)
1254 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
1255
1256 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
1257 Use consistent make-local-variable style for font-lock-fontified.
1258 (jit-lock-fontify-buffer):
1259 Don't bother checking for font-lock-mode and jit-lock-mode.
1260
1261 * time.el: Remove trailing ^M that prevent CVS-merging.
1262
1263 2000-06-16 Gerd Moellmann <gerd@gnu.org>
1264
1265 * Makefile.in (distclean): New target.
1266
1267 2000-06-16 Stefan Monnier <monnier@cs.yale.edu>
1268
1269 * Makefile.in (srcdir): Define for update-subdirs.
1270
1271 2000-06-16 Gerd Moellmann <gerd@gnu.org>
1272
1273 * find-lisp.el: New file.
1274
1275 2000-06-16 Andrew Innes <andrewi@gnu.org>
1276
1277 * time.el (display-time-mail-function): New variable, to allow
1278 external packages to indicate when new mail is available.
1279 (display-time-update): Use it.
1280
1281 2000-06-16 Kenichi Handa <handa@etl.go.jp>
1282
1283 * international/mule.el (mule-version): Change version name to
1284 SAKAKI. AOI has already been used by Meadow.
1285
1286 * international/quail.el (quail-show-guidance-buf): To find the
1287 bottom window (but minibuffer), pay attention to the height of
1288 minibuffer.
1289
1290 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
1291
1292 * arc-mode.el (archive-mode-map): Use the new menu-item format for
1293 menu-bar menus. Add help strings. Don't remove the Edit menu
1294 from the menu bar, as the menu bar has enough space now.
1295
1296 * Makefile.in (SHELL): Make sure /bin/sh is used.
1297
1298 * woman.el (woman-man-buffer): Fix bold and underlined CJK
1299 characters, which use series of two ^H characters instead of one.
1300
1301 2000-06-15 Gerd Moellmann <gerd@gnu.org>
1302
1303 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
1304 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
1305 functions.
1306 (Info-find-node-2): Try a case-sensitive search first, then
1307 do a case-insensitive search.
1308
1309 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
1310 tutorials.
1311
1312 * complete.el (PC-env-vars-alist): New variable.
1313 (PC-complete-as-file-name): New function.
1314 (partial-completion-mode): Initialize PC-env-vars-alist from
1315 process-environment.
1316 (PC-do-completion): Handle completion of env vars.
1317
1318 * info.el (Info-set-mode-line): Show file name in mode line,
1319 use `*Info*' instead of `Info:'.
1320
1321 * startup.el (command-line-1): Change copyright messages to year
1322 2000.
1323
1324 2000-06-15 Dave Love <fx@gnu.org>
1325
1326 * net/goto-addr.el (goto-address-fontify): Use keymap property,
1327 not local-map.
1328
1329 2000-06-15 Kenichi Handa <handa@etl.go.jp>
1330
1331 * international/mule.el (set-buffer-file-coding-system): Almost
1332 rewritten to handle `undecided' as no-op.
1333
1334 2000-06-14 Gerd Moellmann <gerd@gnu.org>
1335
1336 * Makefile.in: New file.
1337
1338 * Makefile: Removed.
1339
1340 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
1341 (goto-address-highlight-keymap): Bind C-c RET.
1342
1343 2000-06-14 Kenichi Handa <handa@etl.go.jp>
1344
1345 * mail/sendmail.el (sendmail-send-it): The temporary buffer
1346 inherits buffer-file-coding-system of the current buffer.
1347
1348 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
1349 0. Give correct argument to set-auto-coding-function.
1350 (tar-expunge): For goto-char, use (point-min), not 0.
1351 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
1352 (tar-subfile-save-buffer): Likewize.
1353
1354 * international/mule.el
1355 (after-insert-file-set-buffer-file-coding-system): Call
1356 set-buffer-file-coding-system with the arg FORCE t.
1357
1358 2000-06-13 Gerd Moellmann <gerd@gnu.org>
1359
1360 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
1361 nil. Contemporary sendmails issue an X-Authentication-Warning if
1362 the sender is set with `-f'.
1363
1364 2000-06-13 Dave Love <fx@gnu.org>
1365
1366 * help.el (describe-function-1): Kluge around cases of functions
1367 fset to subrs whose doc doesn't match their symbol-name.
1368
1369 * image.el (insert-image): Default STRING to a space.
1370
1371 * info.el Doc fixes.
1372 (Info-build-node-completions): Match Ref tags.
1373
1374 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
1375
1376 * frame.el (display-multi-frame-p, display-multi-font-p): New
1377 defaliases for display-graphic-p.
1378
1379 * hl-line.el: Fixed a typo in commentary.
1380
1381 2000-06-13 Kenichi Handa <handa@etl.go.jp>
1382
1383 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
1384 fixed.
1385
1386 2000-06-12 Dave Love <fx@gnu.org>
1387
1388 * image.el (insert-image): Save a little consing.
1389
1390 2000-06-12 Kenichi Handa <handa@etl.go.jp>
1391
1392 * language/tibet-util.el: Convert all tibetan-1-column characters
1393 to the corresponding tibetan characters.
1394 (tibetan-add-components): Delete code for the special treatment of
1395 'a chung.
1396
1397 * language/tibetan.el (tibetan-composable-pattern): Fix previous
1398 change.
1399 (tibetan-vowel-transcription-alist): More rules added.
1400 (tibetan-composite-vowel-alist): New variable.
1401 (tibetan-precomposition-rule-alist): More rules added.
1402
1403 2000-06-12 Stefan Monnier <monnier@cs.yale.edu>
1404
1405 * startup.el (command-line): Only call menu-bar-mode if interactive.
1406
1407 * thingatpt.el (toplevel symbol-properties):
1408 * textmodes/makeinfo.el (makeinfo-compile):
1409 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
1410 * progmodes/hideif.el (hif-compress-define-list)
1411 (hide-ifdef-use-define-alist):
1412 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
1413 (ange-ftp-vms-add-file-entry):
1414 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
1415 * man.el (Man-build-man-command):
1416 * mail/rnewspost.el (news-reply-header-hook):
1417 * info.el (Info-insert-dir):
1418 * emulation/mlconvert.el (backward-word, forward-word, setq):
1419 * emacs-lisp/gulp.el (gulp-send-requests):
1420 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
1421 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
1422 (byte-optimize-apply, end of file):
1423 * emacs-lisp/advice.el (ad-advice-class-completion-table)
1424 (ad-make-freeze-definition):
1425 * startup.el (command-line, command-line-1): Don't quote lambdas.
1426
1427 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
1428 (cvs-cleanup-removed): New function.
1429 (cvs-cleanup-functions): New var.
1430 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
1431 some flexibility in specifying additional entries to auto-cleanup.
1432 (cvs-quickdir): New function.
1433 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
1434 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
1435 (cvs-mode-find-file): Check that we are on a filename or dirname
1436 when invoked through a mouse-click.
1437 (cvs-full-path): Remove.
1438 (cvs-dired-action): Re-introduced.
1439 (cvs-dired-noselect): Use it.
1440 (vc-post-command-functions): use this new hook if available.
1441
1442 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
1443 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
1444 (cvs-filename-map, cvs-dirname-map): Remove.
1445 (cvs-default-action): Remove.
1446 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
1447 if the arg is really a keymap.
1448 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
1449 Don't hardcode the mapping from state (aka type) to face, but check
1450 the var cvs-fi-<type>-face instead.
1451 (cvs-fileinfo-from-entries): New function.
1452
1453 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
1454 Docstring fix.
1455 (cvs-find-file-and-jump): Change default to be safer.
1456 (cvs-mode-diff-map): Define it as a function as well.
1457 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
1458 Bind mouse-2 in this global map rather than with text-properties.
1459
1460 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
1461 file to resolve the ambiguity between C(conflict) and C(need-merge).
1462
1463 2000-06-12 Kenichi Handa <handa@etl.go.jp>
1464
1465 * international/mule.el (set-buffer-file-coding-system): If
1466 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
1467 unconditionally.
1468
1469 2000-06-12 Dave Love <fx@gnu.org>
1470
1471 * wid-edit.el (widget-specify-button): Really suppress the face if
1472 required.
1473
1474 2000-06-11 Gerd Moellmann <gerd@gnu.org>
1475
1476 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
1477
1478 2000-06-11 Stefan Monnier <monnier@cs.yale.edu>
1479
1480 * imenu.el (imenu-generic-expression): Docstring fix.
1481
1482 * composite.el (composition-function-table): Move the `put'
1483 below the autoload cookie so we can load the file before loaddefs.
1484
1485 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
1486
1487 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
1488 Handle easy-mmode-define-global-mode.
1489 For complex macros like define-minor-mode that can generate
1490 several autoload entries, try to autoload entries in the
1491 macroexpanded code.
1492
1493 * emacs-lisp/easy-mmode.el (define-minor-mode):
1494 If KEYMAP is a symbol, just use it.
1495 Use byte-compile-current-file and load-file-name to infer the
1496 proper :require to pass to defcustom.
1497 Wrap the hook var into `progn' so as not to autoload it.
1498 Add a :autoload-end cookie.
1499 Be more careful about the evaluation of KEYMAP.
1500 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
1501 (define-derived-mode): Move define-abbrev-table outside of defvar.
1502
1503 2000-06-10 Stefan Monnier <monnier@cs.yale.edu>
1504
1505 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
1506 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
1507 (backup-compiled-files): Ignore errors during `tar'.
1508 (bootstrap): Make autoloads before elc files.
1509
1510 2000-06-10 Kenichi Handa <handa@etl.go.jp>
1511
1512 * international/mule.el (set-buffer-file-coding-system): If one of
1513 undecided-XXX is specified, change only EOL conversion.
1514
1515 * international/mule-conf.el (unix): New alias for the coding
1516 system undecided-unix.
1517
1518 2000-06-09 Dave Love <fx@gnu.org>
1519
1520 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
1521
1522 * progmodes/executable.el: Byte compile dynamic.
1523 (executable-insert): Change custom type.
1524 (executable-find): Add autoload cookie.
1525 (executable-make-buffer-file-executable-if-script-p): New
1526 function. After Noah Friedman.
1527
1528 * files.el (after-save-hook): Customize, with
1529 executable-make-buffer-file-executable-if-script-p as an option.
1530
1531 2000-06-09 Kenichi Handa <handa@etl.go.jp>
1532
1533 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
1534 "tib24p-mule.bdf" for Tibetan.
1535
1536 * composite.el (decompose-composite-char): Declare it as obsolete.
1537
1538 * man.el (Man-fontify-manpage): Pay attention to underline and
1539 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
1540
1541 2000-06-08 Gerd Moellmann <gerd@gnu.org>
1542
1543 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
1544 Set maintainer to FSF since author isn't reachable.
1545
1546 2000-06-08 Dave Love <fx@gnu.org>
1547
1548 * international/mule-cmds.el (select-safe-coding-system): If
1549 DEFAULT-CODING-SYSTEM is not specified, also check the most
1550 preferred coding-system if buffer-file-coding-system is
1551 `undecided'. From Handa.
1552
1553 2000-06-08 Kenichi Handa <handa@etl.go.jp>
1554
1555 * international/mule.el
1556 (after-insert-file-set-buffer-file-coding-system): If the buffer
1557 size is greater than INSERTED, judget that we are not visiting.
1558
1559 2000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
1560
1561 * whitespace.el (defgroup whitespace): Comment out `:version'.
1562 XEmacs 20.4 has problems defining the group with this present.
1563 We'll have this commented out till get resolve the problem.
1564
1565 2000-06-07 Gerd Moellmann <gerd@gnu.org>
1566
1567 * align.el: Update from author.
1568
1569 2000-06-07 Jari Aalto <jari.aalto@poboxes.com>
1570
1571 * apropos.el (apropos-mode-hook): New user variable.
1572 (apropos-mode): Run apropos-mode-hook.
1573
1574 2000-06-07 David Ponce <david@dponce.com>
1575
1576 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
1577 commands. Require `wid-edit' at run-time.
1578
1579 2000-06-07 David Ponce <david@dponce.com>
1580
1581 * recentf.el: Added some "Commentary".
1582 (recentf-open-more-files, recentf-edit-list): Minor changes to
1583 move the point at the top of the file list. This behaviour is
1584 consistent with the menu one when the list contains a lot of
1585 files.
1586 (recentf-cleanup): Now displays the number of items removed from
1587 the list.
1588 (recentf-relative-filter) New menu filter to show filenames
1589 relative to `default-directory'.
1590
1591 2000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1592
1593 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
1594 with/without giving an error if PostScript printer doesn't have this
1595 kind of page size. Zebra Stripe continues or restarts on next page.
1596 Manual/automatic paper feeding. Switch or not the header.
1597 (ps-print-version): New version number (5.2.2).
1598 (ps-windows-system): Include emx as a Windows system.
1599 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
1600 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
1601 (ps-background-text): Code fix.
1602 (ps-error-handler-message, ps-user-defined-prologue)
1603 (ps-print-prologue-header, ps-printer-name)
1604 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
1605 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
1606 (ps-use-face-background): Customization fix.
1607 (ps-n-up-database): Data fix.
1608 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
1609 (ps-switch-header): New vars.
1610 (ps-xemacs-color-name, ps-face-foreground-name)
1611 (ps-face-background-name, ps-boolean-constant): New funs.
1612
1613 2000-06-07 Dave Love <fx@gnu.org>
1614
1615 * allout.el: New version from Manheimer.
1616
1617 2000-06-07 Kenichi Handa <handa@etl.go.jp>
1618
1619 * textmodes/fill.el (fill-find-break-point): Check the validity of
1620 charset.
1621
1622 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
1623
1624 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
1625 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
1626 Call display-color-p and display-mouse-p instead of looking at
1627 window-system.
1628
1629 2000-06-06 Dave Love <fx@gnu.org>
1630
1631 * image.el (find-image): Doc fix. Return nil if image not found.
1632 (put-image, insert-image): Make STRING arg optional.
1633
1634 2000-06-06 Kenichi Handa <handa@etl.go.jp>
1635
1636 * language/vietnamese.el: Remove eval-when-compile.
1637 (viet-viscii-nonascii-translation-table): Define it as a
1638 translation table made from viet-viscii-decode-table.
1639 (viet-viscii-encode-table): Define it as a translation table made
1640 from the reverse map of above.
1641 (viet-vscii-nonascii-translation-table): Define it as a
1642 translation table made from viet-vscii-decode-table.
1643 (viet-vscii-encode-table): Define it as a translation table made
1644 from the reverse map of above.
1645 (ccl-decode-viscii): Use translate-character.
1646 (ccl-encode-viscii, ccl-encode-viscii-font)
1647 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
1648 Likewize.
1649
1650 * language/cyrillic.el: Remove eval-when-compile.
1651 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
1652 translation table made from cyrillic-koi8-r-decode-table.
1653 (cyrillic-koi8-r-encode-table): Define it as a translation table
1654 made from the reverse map of above.
1655 (ccl-decode-koi8): Use translate-character.
1656 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
1657 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
1658 a translation table made from cyrillic-alternativnyj-decode-table.
1659 (cyrillic-alternativnyj-encode-table): Define it as a translation
1660 table made from the reverse map of above.
1661 (ccl-decode-alternativnyj): Use translate-character.
1662 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
1663 Likewize
1664
1665 * international/mule-diag.el (non-iso-charset-alist): Specify
1666 translation table symbol instead of translation table itself.
1667 (list-block-of-chars): CHARSET may be a translation table symbol.
1668
1669 * international/mule.el (make-coding-system): If CODING-SYSTEM
1670 already exists, override it.
1671
1672 * international/fontset.el: Use family `proportional' for Tibetan
1673 fonts.
1674
1675 * international/ccl.el (ccl-compile-translate-character): Don't
1676 check if Rrr has property translation-table.
1677 (ccl-compile-map-multiple): Modified to avoid compiler warning.
1678
1679 2000-06-05 Gerd Moellmann <gerd@gnu.org>
1680
1681 * info.el: Bind case-fold-search to t when searching in case
1682 a user sets it to nil in a hook.
1683
1684 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
1685
1686 * autoarg.el (autoarg-mode, autoarg-kp-mode):
1687 * hl-line.el (hl-line-mode): Use the new :global key argument.
1688
1689 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
1690 (tar-clip-time-string): Prepend a space.
1691 (tar-grind-file-mode): Construct a string rather than modifying one.
1692 (tar-header-block-summarize): Fix docstring.
1693 Use `format' rather than an error-prone set of copy-loops.
1694
1695 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
1696 (diff-goto-source, diff-unified->context, diff-context->unified)
1697 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
1698 understand the format output by the `-p' argument to diff.
1699
1700 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
1701 (sh-re-done): Use defconst.
1702 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
1703 (sh-help-string-for-variable, sh-guess-basic-offset):
1704 Don't quote lambdas.
1705 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
1706 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
1707
1708 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
1709 (mh-letter-mode): Derive from text-mode.
1710 This implicitly means that it now calls kill-all-local-variables.
1711 Also remove the Emacs-18 compatibility code.
1712
1713 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
1714 Make use of symbol-property doc-string-elt.
1715 Use memq rather than a sequence of eq.
1716 (doc-string-elt): Fix the wrong or missing previously unused values.
1717 (autoload-print-form): New function extracted from
1718 generate-file-autoloads to allow recursion when handling progn
1719 so that defvar's and defun's docstrings are properly printed.
1720 (generate-file-autoloads): Use it.
1721
1722 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
1723 Use find-file-hooks in the minor-mode function.
1724 Be careful not to loop indefinitely in the post-command-hook function.
1725
1726 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
1727
1728 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
1729 tty's.
1730 * ediff-diff.el (ediff-exec-process): Use --binary for fine
1731 differences whenever appropriate.
1732 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
1733 * viper.el (find-file, find-file-other-window): Get viper to do
1734 wildcards.
1735
1736 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
1737
1738 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
1739 (jit-lock-fontify-buffer): New function for JIT refontification.
1740 (jit-lock-mode): Fix docstring.
1741 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
1742 Remove jit-lock-after-change from the _local_ hook.
1743 (jit-lock-function-1): Fix docstring.
1744
1745 * info.el (Info-on-current-buffer): Initialize info.
1746
1747 * newcomment.el (comment-indent): Ignore comment-indent-hook.
1748
1749 * progmodes/tcl.el (tcl-indent-for-comment):
1750 Ignore comment-indent-hook.
1751
1752 * emacs-lisp/easy-mmode.el: Require CL during compilation.
1753 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
1754 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
1755 and improve to use the lighter to guess the capitalization.
1756 (define-minor-mode): Inline code from easy-mmode-define-toggle.
1757 Add keyword arguments to specify global-ness or the custom group.
1758 Add local-map and help-echo properties to the lighter.
1759 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
1760 (easy-mmode-define-global-mode): New macro.
1761
1762 2000-06-02 Dave Love <fx@gnu.org>
1763
1764 * wid-edit.el: byte-compile-dynamic since we typically don't use
1765 all the widgets. Don't require cl or widget. Remove
1766 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
1767 (widget-read-event): Removed. Callers changed to use read-event.
1768 (widget-button-release-event-p): Renamed from
1769 button-release-event-p.
1770 (widget-field-add-space, widget-field-use-before-change):
1771 Uncustomize.
1772 (widget-specify-field): Use keymap property, not local-map.
1773 (widget-specify-button): Obey :suppress-face.
1774 (widget-specify-insert): Use modern backquote syntax.
1775 (widget-image-directory): Renamed from widget-glyph-directory.
1776 (widget-image-enable): Renamed from widget-glyph-enable.
1777 (widget-image-find): Replaces widget-glyph-find.
1778 (widget-button-pressed-face): Move defvar.
1779 (widget-image-insert): Replaces widget-glyph-insert.
1780 (widget-convert): Use keywordp.
1781 (widget-leave-text, widget-children-value-delete): Use mapc.
1782 (widget-keymap): Remove XEmacs stuff.
1783 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
1784 (widget-button-click): Don't set point at the click, but re-centre
1785 if we scroll out of window. Rewritten for images v. glyphs &c.
1786 (widget-tabable-at): Use POS arg, not point.
1787 (widget-beginning-of-line, widget-end-of-line)
1788 (widget-item-value-create, widget-sublist, widget-princ-to-string)
1789 (widget-sexp-prompt-value, widget-echo-help): Simplify.
1790 (widget-default-create): Use widget-image-insert; some rewriting.
1791 (widget-visibility-value-create)
1792 (widget-push-button-value-create, widget-toggle-value-create): Use
1793 widget-image-insert.
1794 (checkbox): Create on and off images dynamically.
1795 (documentation-link): Change :help-echo.
1796 (widget-documentation-link-echo-help): Remove.
1797
1798 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
1799
1800 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
1801
1802 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
1803 (easy-mmode-define-toggle, define-minor-mode): Use it.
1804 (easy-mmode-define-keymap): Docstring fix.
1805 (define-derived-mode): Default PARENT to fundamental-mode.
1806 Add the derived-mode-parent symbol-property.
1807 (easy-mmode-derived-mode-p): New function.
1808
1809 2000-06-02 Dave Love <fx@gnu.org>
1810
1811 * files.el (convert-standard-filename): Doc fix.
1812 (normal-backup-enable-predicate): New function.
1813 (backup-enable-predicate): Use it to replace the lambda form.
1814
1815 * calendar/todo-mode.el: [This needs more work on the outline
1816 stuff.] Doc fixes.
1817 (todo) <defgroup>: Add :version.
1818 (todo-add-category): Don't use pushnew.
1819 (todo-cmd-raise): Fix typo.
1820 (todo-top-priorities): Change temp buffer name.
1821 (todo-category-alist): Avoid redundant lambda.
1822 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
1823 Use outline-next-heading.
1824
1825 * autoarg.el: Rewritten to use define-minor-mode.
1826 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
1827 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
1828
1829 2000-06-02 Kenichi Handa <handa@etl.go.jp>
1830
1831 * isearch.el (isearch-other-meta-char): Fix previous change.
1832
1833 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
1834
1835 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
1836 (log-edit-done): Only add the comment to the ring if it's different
1837 from the last comment entered.
1838
1839 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
1840
1841 2000-06-01 Dave Love <fx@gnu.org>
1842
1843 * hl-line.el: Rewritten using define-minor-mode.
1844
1845 * help.el (describe-function-1): Distinguish special form from
1846 builtin function. Sanity-check presence of arglist for builtins.
1847
1848 2000-06-01 Kenichi Handa <handa@etl.go.jp>
1849
1850 * international/characters.el: Fix syntax/category setting of
1851 Tibetan characters.
1852
1853 * language/tibet-util.el (tibetan-add-components): Fixes for new
1854 encoding of Tibetan characters.
1855 (tibetan-decompose-precomposition-alist): New variable.
1856 (tibetan-decompose-region): Convert precomposed characters to
1857 non-precomposed characters.
1858 (tibetan-decompose-string): Likewise.
1859 (tibetan-composition-function): Fix args to
1860 thibetan-compose-string.
1861
1862 * language/tibetan.el (tibetan-composable-pattern): More
1863 characters included.
1864 (tibetan-consonant-transcription-alist): Rule for "R" added.
1865 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
1866 "+R" added.
1867 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
1868
1869 * language/lao-util.el (lao-composition-function): Fix args to
1870 compose-string.
1871
1872 * language/thai-util.el (thai-composition-function): Fix args to
1873 compose-string.
1874
1875 * isearch.el (isearch-update): Set disable-point-adjustment to t
1876 to prevent the point moving to the end of a composition when a
1877 part of a composition is searched.
1878 (isearch-other-meta-char): If the key invoking this command can be
1879 mapped by function-key-map to a printing char, call
1880 isearch-process-search-char directly.
1881
1882 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
1883
1884 * emacs-lisp/bytecomp.el:
1885 * frame.el:
1886 * international/mule-cmds.el:
1887 * international/mule-util.el:
1888 * international/mule.el:
1889 * mouse.el:
1890 * subr.el:
1891 * faces.el: Update calls to make-obsolete with a WHEN argument.
1892
1893 * byte-run.el (make-obsolete, make-obsolete-variable):
1894 Add an optional WHEN argument and change the format of the
1895 symbol-property information.
1896 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
1897 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
1898 new obsolete-symbol-property format and print WHEN if it is provided.
1899
1900 2000-05-31 Dave Love <fx@gnu.org>
1901
1902 * loadhist.el (loadhist-hook-functions): Remove
1903 before-change-function, after-change-function.
1904 (unload-feature): Deal with symbols which are both bound and
1905 fbound.
1906
1907 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
1908 before-change-function, after-change-function.
1909
1910 * simple.el (newline): Don't bind before-change-function,
1911 after-change-function.
1912
1913 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
1914
1915 * whitespace.el (whitespace-rescan-timer-time): Update interval
1916 set to 600 seconds (10 minutes) instead of 60 seconds since
1917 a large number of whitespace buffers causes emacs to `freeze'
1918 for a considerable amount of time.
1919
1920 * whitespace.el: Updated email address
1921
1922 2000-05-31 Dave Love <fx@gnu.org>
1923
1924 * add-log.el (change-log-font-lock-keywords) <function>: Add
1925 pattern for function of change.
1926 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
1927 acknowledgements patterns.
1928
1929 2000-05-31 Kenichi Handa <handa@etl.go.jp>
1930
1931 * isearch.el (isearch-printing-char): If keyboard coding system is
1932 being used, call isearch-process-search-multibyte-characters.
1933
1934 * international/isearch-x.el: Mostly rewritten.
1935
1936 * international/quail.el (quail-start-conversion): Don't include
1937 unhandled events in the returned events, but set them in
1938 unread-command-events. Exit if all inputs are deleted.
1939
1940 2000-05-30 Jason Rumney <jasonr@gnu.org>
1941
1942 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
1943
1944 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
1945 Reenable code to create initial fontsets.
1946 Use set-fontset-font in place of put-charset-property.
1947
1948 2000-05-30 Gerd Moellmann <gerd@gnu.org>
1949
1950 * progmodes/perl-mode.el (perl-indent-line): When looking for a
1951 label, ensure that the first colon isn't followed by another.
1952
1953 * paths.el (Info-default-directory-list): Doc fix.
1954
1955 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
1956 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
1957 send a query containing USER only, not USER@HOST.
1958
1959 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
1960 and rmail-msgend to compute the restriction at the end, instead of
1961 computing it.
1962
1963 2000-05-29 Gerd Moellmann <gerd@gnu.org>
1964
1965 * dabbrev.el (dabbrev-expand): Don't display messages in the
1966 echo area if the minibuffer window is active.
1967
1968 * jit-lock.el (jit-lock-mode): Add after change function to
1969 local hook.
1970
1971 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
1972
1973 * antlr-mode.el: New commands: hide/unhide actions,
1974 upcase/downcase literals.
1975 (antlr-tiny-action-length): New user option.
1976 (antlr-hide-actions): New command. Suggested by
1977 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
1978 (antlr-mode-map): New binding [C-c C-v].
1979 (antlr-mode-menu): New entries.
1980 (antlr-downcase-literals): New command.
1981 (antlr-upcase-literals): Ditto.
1982
1983 * antlr-mode.el: Minor changes: indendation, mode-name.
1984 (antlr-indent-line): Indent cpp directive at column 0.
1985 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
1986
1987 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
1988 (antlr-font-lock-additional-keywords): Workaround for intentional
1989 bug in XEmacs version of font-lock.
1990 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
1991 be used by a smarter version of `buffers-menu-grouping-function'.
1992
1993 2000-05-29 Gerd Moellmann <gerd@gnu.org>
1994
1995 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
1996 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
1997
1998 2000-05-29 Kenichi Handa <handa@etl.go.jp>
1999
2000 * international/encoded-kb.el
2001 (encoded-kbd-iso2022-designation-map): Pay attention to that
2002 charset-iso-final-char return -1 for eight-bit-control and
2003 eight-bit-graphic.
2004
2005 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
2006
2007 * speedbar.el (speedbar-use-images, speedbar-update-flag)
2008 (speedbar-easymenu-definition-base): Use display-graphic-p where
2009 available, instead of window-system.
2010
2011 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
2012
2013 * international/codepage.el (cp-coding-system-for-codepage-1): Add
2014 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
2015 coding systems.
2016
2017 2000-05-26 Dave Love <fx@gnu.org>
2018
2019 * disp-table.el (standard-display-underline): Don't use
2020 internal-find-face.
2021
2022 * mail/reporter.el: Maintainer change. Doc fixes.
2023 (reporter-version): Deleted.
2024
2025 * emacs-lisp/elp.el: Maintainer change.
2026 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
2027
2028 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
2029
2030 * add-log.el (add-change-log-entry): Merge the current entry with the
2031 previous one if the previous one is empty.
2032
2033 2000-05-26 Dave Love <fx@gnu.org>
2034
2035 * loadhist.el (unload-feature): Fix interactive spec [from
2036 lijnzaad@ebi.ac.uk].
2037
2038 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
2039 subr-arity to check primitives.
2040 (byte-compile-flush-pending, byte-compile-file-form-progn)
2041 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
2042 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
2043 mapcar.
2044
2045 2000-05-26 Kenichi Handa <handa@etl.go.jp>
2046
2047 * international/fontset.el: Set family names of non-latin charsets
2048 in default fontset to "*".
2049
2050 * international/mule-diag.el (print-fontset): Combine family part
2051 and registry part of the fontname by "-*-" instead of "-".
2052
2053 * international/mule-cmds.el (encode-coding-char): Make strings
2054 multibyte before calling encode-coding-string.
2055
2056 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
2057
2058 * derived.el: Fix keywords.
2059 (define-derived-mode): Only define if needed.
2060
2061 * simple.el (fill-comment, comment-column, comment-start)
2062 (comment-start-skip, comment-end, comment-indent-function)
2063 (block-comment-start, block-comment-end, indent-for-comment)
2064 (set-comment-column, kill-comment, comment-padding, comment-region)
2065 (comment-multi-line, indent-new-comment-line): Remove.
2066
2067 * bindings.el (esc-map): Change ; to comment-dwim and use the new
2068 function names for comment operations.
2069
2070 * newcomment.el: Add abundant autoload cookies.
2071 (comment-style): Don't depend on runtime data at compile-time.
2072 (comment-indent-hook): Remove.
2073 (comment-indent): Check if comment-indent-hook is bound.
2074 (comment-region): Docstring fix.
2075
2076 2000-05-25 Dave Love <fx@gnu.org>
2077
2078 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
2079 byte-code-function-p.
2080
2081 * mail/rmailsum.el: Add provide.
2082
2083 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
2084
2085 * smerge-mode.el (smerge-diff-switches): Don't use list* in
2086 defcustom.
2087
2088 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
2089
2090 * ediff-diff.el (ediff-exec-process): delete --binary option from
2091 non-buffer ediff jobs.
2092
2093 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
2094
2095 * hilit-chg.el (highlight-changes-mode): Ask about color or
2096 grayscale support, not about window-system.
2097
2098 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
2099 window-system.
2100 (ffap-highlight): Always default to t.
2101
2102 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
2103 display-popup-menus-p instead of looking at window-system.
2104
2105 * disp-table.el (standard-display-g1, standard-display-graphic):
2106 Only refuse to use string glyphs on X and MS-Windows.
2107
2108 * avoid.el: Remove window-system from commentary, suggest to use
2109 display-*-p instead.
2110
2111 * apropos.el (apropos-print): Use display-mouse-p instead of
2112 window-system.
2113
2114 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
2115
2116 * international/codepage.el (cp-decoding-vector-for-codepage):
2117 Fill up unsupported characters with their own codes. From Kenichi
2118 Handa.
2119
2120 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
2121
2122 * international/mule-diag.el (describe-char-after): Use
2123 display-graphic-p instead of window-system, so that this function
2124 works on MS-DOS.
2125
2126 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
2127
2128 * international/codepage.el (cp-make-coding-systems-for-codepage):
2129 Remove the eight-bit-graphic and eight-bit-control charsets from
2130 the list of charsets which we convert into `?'.
2131
2132 2000-05-25 Kenichi Handa <handa@etl.go.jp>
2133
2134 * international/mule-conf.el: Specify CHARSET-ID explicitely for
2135 private charsets.
2136 (mule-unicode-0100-24ff, japanese-jisx0213-1,
2137 japanese-jisx0213-2): New charsets.
2138
2139 * international/fontset.el: Setup default fontset for new charsets.
2140
2141 2000-05-24 Dave Love <fx@gnu.org>
2142
2143 * info.el (Info-find-node-2): Restructure [following "Vadim
2144 S. Solomin" <sovs@uic.nnov.ru>].
2145
2146 * icomplete.el: Fix header for Finder.
2147
2148 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
2149
2150 * rmailout.el (rmail-output-to-rmail-file): Added optional param
2151 STAY.
2152
2153 * rmail.el (rmail-automatic-folder-directives): New user variable.
2154 (rmail-show-message): Add call to `rmail-auto-file' during
2155 display.
2156 (rmail-auto-file): New function.
2157
2158 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
2159
2160 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
2161 account.
2162 (ediff-test-utility,ediff-diff-mandatory-option)
2163 (ediff-reset-diff-options): Utilities for proper initialization of
2164 ediff-diff-options and ediff-diff3-options on Windows.
2165
2166 * ediff-init.el (ediff-merge-filename-prefix): New customizable
2167 variable.
2168
2169 * ediff-mult.el (ediff-filegroup-action): Use
2170 ediff-merge-filename-prefix.
2171
2172 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
2173
2174 * viper-ex.el (ex-write): Set selective display to nil.
2175
2176 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
2177
2178 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
2179 aliases for hebrew-iso-8bit.
2180
2181 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
2182
2183 * woman.el: New version from Francis J. Wright
2184 <F.J.Wright@Maths.QMW.ac.uk>.
2185 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
2186 names in environment variables regardless of the path separator.
2187 (woman-topic-all-completions-1): Don't call file-name-directory-p
2188 on all files, since woman-file-regexp already filters out any
2189 directories.
2190
2191 2000-05-24 Kenichi Handa <handa@etl.go.jp>
2192
2193 * international/quail.el (quail-start-translation): Don't change
2194 modified-p of the current buffer.
2195 (quail-start-conversion): Likewise.
2196
2197 * international/kkc.el (kkc-region): Don't change modified-p of
2198 the current buffer.
2199
2200 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
2201 conform to RFC1468.
2202 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
2203
2204 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
2205
2206 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
2207 (speedbar-insert-button): Invisible text property fix.
2208 (speedbar-directory-plus): Renamed from speedbar-directory-+
2209 (speedbar-directory-minus): Renamed from speedbar-directory--
2210 (speedbar-page-plus): Renamed from speedbar-file-+
2211 (speedbar-page-minus): Renamed from speedbar-file--
2212 (speedbar-page): Renamed from speedbar-file-
2213 (speedbar-tag): Renamed from speedbar-tag-
2214 (speedbar-tag-plus): Renamed from speedbar-tag-+
2215 (speedbar-tag-minus): Renamed from speedbar-tag--
2216 (speedbar-expand-image-button-alist): Use above renames.
2217
2218 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
2219 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
2220 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
2221 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
2222 * sb-pg.xpm: Renamed from sb-file.xpm
2223 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
2224 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
2225
2226 2000-05-24 Kenichi Handa <handa@etl.go.jp>
2227
2228 * international/quail.el (quail-show-guidance-buf): Set
2229 current-input-method of the guidance buffer to the name of the
2230 curren input method.
2231
2232 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
2233
2234 * progmodes/compile.el (compile-internal): Style typo.
2235
2236 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
2237 quote vars and functions in the docstring.
2238
2239 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
2240
2241 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
2242 Don't quote lambdas.
2243
2244 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
2245
2246 2000-05-23 Gerd Moellmann <gerd@gnu.org>
2247
2248 * startup.el (command-line): Determine source file of compiled
2249 user init file differently. Warn if compiled user init file
2250 is older than its source file.
2251
2252 * ffap.el (ffap-url-regexp): Add `https'.
2253
2254 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
2255
2256 * files.el (make-backup-file-name-1): Replace slashes with `!'
2257 rather than `|' (which is not allowed on Windows). Replace the
2258 drive letters with a string "drive_X".
2259
2260 2000-05-23 Gerd Moellmann <gerd@gnu.org>
2261
2262 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
2263
2264 * files.el (interpreter-mode-alist): Add `bash2'.
2265
2266 2000-05-22 Dave Love <fx@gnu.org>
2267
2268 * loadhist.el (feature-symbols, file-provides, file-requires): Use
2269 mapc.
2270 (feature-file): Avoid calling symbol-name. Doc fix.
2271 (file-set-intersect, file-dependents): Use dolist, not mapcar.
2272 (loadhist-hook-functions): Add mouse-position-function.
2273 (unload-feature): Change uses of mapcar.
2274
2275 * files.el (parse-colon-path): Doc fix.
2276 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
2277 (set-auto-mode): Use mapc.
2278
2279 * complete.el (PC-look-for-include-file): Use :alnum: character
2280 class.
2281 (partial-completion-mode): Add autoload cookie.
2282
2283 2000-05-22 Sam Steingold <sds@gnu.org>
2284
2285 * info.el (Info-fontify-node): Fixed the call to
2286 `add-text-properties' (bug introduced on 2000-05-18).
2287
2288 2000-05-22 Dave Love <fx@gnu.org>
2289
2290 * bindings.el: Remove debug-ignored-errors set in other files.
2291
2292 * progmodes/etags.el: Add to debug-ignored-errors.
2293 (visit-tags-table-buffer): Clear out buffers holding old tables
2294 when making a new list.
2295 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
2296 mapc.
2297
2298 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
2299 quote keywords.
2300 (cmpl-string-case-type): Use character classes.
2301
2302 * comint.el:
2303 * textmodes/ispell.el:
2304 * imenu.el:
2305 * mail/mh-e.el:
2306 * progmodes/compile.el: Add to debug-ignored-errors.
2307
2308 * dabbrev.el: Add to debug-ignored-errors.
2309 (dabbrev-completion): Use mapc.
2310
2311 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
2312
2313 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
2314 (woman-mapcan, woman-parse-man.conf)
2315 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
2316 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
2317 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
2318 path syntax better.
2319 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
2320 (woman-manpath): Call woman-parse-man.conf.
2321 (woman-emulation): New defcustom, defaults to nroff.
2322 (woman-font-support): New defconst.
2323 (woman-use-symbol-font): New defcustom.
2324 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
2325 "Emulation".
2326 Many functions: Doc fix.
2327
2328 2000-05-22 Kenichi Handa <handa@etl.go.jp>
2329
2330 * international/quail.el (quail-simple-translation-keymap): Map
2331 128..255 to quail-self-insert-command.
2332 (quail-keyboard-layout-alist): Add definition for "pc102-de".
2333
2334 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
2335
2336 * help.el (help-manyarg-func-alist): Typo.
2337
2338 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
2339 intervals which makes it heaps simpler.
2340
2341 * newcomment.el (comment-region-internal): Go back to BEG after quoting
2342 the nested comment markers.
2343
2344 * subr.el (remove-hook): Don't turn the hook's value into a list.
2345
2346 2000-05-21 Dave Love <fx@gnu.org>
2347
2348 * edmacro.el (edmacro-parse-keys): Return vector if any elements
2349 are invalid characters.
2350
2351 * international/mule-util.el (detect-coding-with-priority): Use
2352 mapc. Remove redundant lambda.
2353
2354 * international/mule-diag.el (list-non-iso-charset-chars)
2355 (describe-fontset): Remove redundant lambda.
2356
2357 * emulation/crisp.el (brief-mode): New alias.
2358
2359 * emacs-lisp/ring.el (ring-elements): New function.
2360
2361 * emacs-lisp/easymenu.el (easy-menu-create-menu)
2362 (easy-menu-do-add-item): Use keywordp.
2363
2364 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
2365
2366 * replace.el: Doc and error message fixes.
2367 (replace-highlight): Use facep, not internal-find-face.
2368
2369 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
2370
2371 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
2372
2373 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
2374 (log-edit-insert-changelog): Drop `:' as well.
2375
2376 * log-view.el: Fix file description.
2377 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
2378 available.
2379 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
2380 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
2381
2382 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
2383 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
2384 Print a status message if the toggle is called interactively.
2385 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
2386 for global minor modes and use `defcustom' for them.
2387 Use add-minor-mode.
2388 (easy-mmode-define-derived-mode): Remove.
2389 (define-derived-mode): Fancier default docstring.
2390 (easy-mmode-define-navigation): Signal an error rather than (ding).
2391
2392 * newcomment.el (comment-styles): New `box-multi'.
2393 (comment-normalize-vars): Better default for comment-continue to
2394 avoid whitespace-only continuations.
2395 (comment-search-forward): Always move even in the no-syntax case.
2396 (comment-padright): Only obey N if it's only obeyed for padleft.
2397 (comment-make-extra-lines): Better handling of empty continuations.
2398 Use `=' for the filler if comment-start has only one character.
2399 (uncomment-region): Try handling the special `=' filler.
2400 (comment-region): Allow LINES even if MULTI is nil.
2401 (comment-box): Choose box style based on comment-style.
2402
2403 2000-05-20 Kenichi Handa <handa@etl.go.jp>
2404
2405 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
2406 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
2407
2408 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
2409
2410 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
2411 and insert, not subst-char-in-region.
2412
2413 * international/mule-diag.el (list-character-sets-1): Handle
2414 charsets eight-bit-control and eight-bit-graphic.
2415 (list-iso-charset-chars): Likewise.
2416 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
2417 charactes as is. Use indent-to to align characters.
2418
2419 * international/mule-cmds.el (find-multibyte-characters): Never
2420 exclude charsets eight-bit-control and eight-bit-graphic.
2421
2422 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
2423
2424 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
2425 Don't quote lambdas.
2426
2427 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
2428
2429 2000-05-19 Gerd Moellmann <gerd@gnu.org>
2430
2431 * gud.el (gud-jdb-directories): Doc fix.
2432
2433 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
2434
2435 * newcomment.el: New file.
2436
2437 2000-05-19 Gerd Moellmann <gerd@gnu.org>
2438
2439 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
2440
2441 2000-05-18 Andreas Schwab <schwab@suse.de>
2442
2443 * dired.el (dired-between-files): Also skip lines beginning with
2444 `used'.
2445
2446 2000-05-18 Gerd Moellmann <gerd@gnu.org>
2447
2448 * msb.el (msb-menu-cond): Add choice `user'.
2449
2450 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2451
2452 * ps-print.el: Compatibility, customization and doc fix.
2453 (ps-printer-name-option): Replace defconst by defvar.
2454 (ps-postscript-code-directory): XEmacs compatibility.
2455 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
2456 fix.
2457 (ps-user-defined-prologue, ps-print-prologue-header)
2458 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
2459 compatibility and code fix.
2460 (ps-print-background-image, ps-print-background-text):
2461 Customization fix.
2462 (ps-line-number-start, ps-n-up-on): New vars.
2463
2464 2000-05-18 Espen Skoglund <esk@ira.uka.de>
2465
2466 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
2467 the indent-comment function to just return the appropriate indent.
2468
2469 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
2470
2471 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
2472 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
2473 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
2474
2475 2000-05-18 Dave Love <fx@gnu.org>
2476
2477 * info.el (Info-fontify-node): Add intangible property as well as
2478 invisible.
2479
2480 * calendar/appt.el (appt-make-list): Match all lines of entry.
2481 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
2482
2483 2000-05-18 Kenichi Handa <handa@etl.go.jp>
2484
2485 * international/mule-diag.el (describe-char-after): Call
2486 internal-char-font, not char-font. If internal-char-font returns
2487 nil, display "-- none --".
2488
2489 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
2490
2491 * image.el (image-type-available-p): Don't reference image-types
2492 if it isn't bound.
2493
2494 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
2495
2496 * autoarg.el (autoarg-mode): Typo in the :set argument.
2497
2498 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
2499
2500 * startup.el (command-line-1): Don't signal an error if the
2501 directory for auto-save-list files does not yet exist.
2502
2503 2000-05-17 Kenichi Handa <handa@etl.go.jp>
2504
2505 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
2506
2507 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
2508
2509 * subr.el (remove-hook): `setq' hook-value, not `set'.
2510
2511 2000-05-16 Sam Steingold <sds@gnu.org>
2512
2513 * info.el (debug-ignored-errors): More errors to ignore.
2514
2515 2000-05-16 Dave Love <fx@gnu.org>
2516
2517 * cus-edit.el: Don't require cl or easymenu.
2518 (custom-variable-prompt): Test standard-value property, not
2519 user-variable-p.
2520
2521 2000-05-16 Sam Steingold <sds@gnu.org>
2522
2523 * subr.el (add-hook): `setq' hook-value, not `set'.
2524
2525 2000-05-16 Gerd Moellmann <gerd@gnu.org>
2526
2527 * startup.el (command-line-1): Mention the FAQ in the startup
2528 message.
2529
2530 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
2531
2532 * progmodes/compile.el (compilation-parse-errors): Collect
2533 `nomessage' regexps last.
2534
2535 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
2536
2537 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
2538 to the function name.
2539
2540 2000-05-15 Dave Love <fx@gnu.org>
2541
2542 * speedbar.el (speedbar-recenter): Typo.
2543 (speedbar-expand-line): Make arg optional.
2544 (speedbar-mode): Avoid a compiler warning.
2545
2546 2000-05-15 Gerd Moellmann <gerd@gnu.org>
2547
2548 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
2549 user-specified option string is empty.
2550
2551 * mouse.el (mouse-yank-at-click): Doc fix.
2552
2553 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
2554
2555 * term/internal.el (IT-character-translations): More updates of
2556 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
2557 documents.
2558
2559 2000-05-15 Gerd Moellmann <gerd@gnu.org>
2560
2561 * env.el (getenv): New function, interactively callable.
2562 (setenv, getenv): Remove autoload cookies.
2563
2564 * loadup.el: Load `env'.
2565
2566 * progmodes/f90.el: Change author's mail address.
2567
2568 2000-05-14 Dave Love <fx@gnu.org>
2569
2570 * mail/rmail.el (rmail-show-message-hook): Customize and offer
2571 goto-addr as an option.
2572
2573 * help.el (help-xref-stack): Doc fix.
2574 (help-xref-following): New variable.
2575 (help-make-xrefs): Use it.
2576 (help-xref-go-back): Use position information from stack element.
2577 (help-follow): Make position in stack element a pair. Use
2578 help-xref-following.
2579
2580 * autoarg.el: New file.
2581
2582 * faces.el: Declare more functions obsolete.
2583
2584 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
2585 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
2586 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
2587 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
2588 Remove all the setup-...-environment functions.
2589
2590 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
2591
2592 * speedbar.el: Updated the commentary section. xemacs20p now uses
2593 >= when detecting. Require `defimage' safely.
2594 (speedbar-easymenu-definition-base): Add toggle for images.
2595 (speedbar-easymenu-definition-special): Add flush cache & expand.
2596 (speedbar-visiting-tag-hook): Set new defaults. Added options.
2597 (speedbar-reconfigure-keymaps-hook): New variable.
2598 (speedbar-frame-parameters): Updated documentation.
2599 (speedbar-use-imenu-flag): Updated custom tag
2600 (speedbar-dynamic-tags-function-list): New variable.
2601 (speedbar-tag-hierarchy-method): Updated doc & custom.
2602 (speedbar-indentation-width, speedbar-indentation-width) New
2603 variables.
2604 (speedbar-hide-button-brackets-flag): Customizable.
2605 (speedbar-vc-indicator): Doc update.
2606 (speedbar-ignored-path-expressions): Updated default value.
2607 (speedbar-supported-extension-expressions): Updated default value.
2608 (speedbar-syntax-table): Remove {} paren status.
2609 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
2610 as "+". Added overlay aliases.
2611 (speedbar-mode): Use `speedbar-mode-line-update' instead of
2612 `force-mode-line-update'.
2613 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
2614 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
2615 `mouse-set-point'
2616 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
2617 (speedbar-item-info-tag-helper): Revamped to handle a wider range
2618 of arbitrary text, and new helper functions.
2619 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
2620 filename finder.
2621 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
2622 (speedbar-directory-buttons): Update path search/expansion.
2623 (speedbar-make-tag-line): Pay attention to
2624 `speedbar-indentation-width'. Use more care w/ invisible
2625 properties.
2626 (speedbar-change-expand-button-char): Call
2627 `speedbar-insert-image-button-maybe'.
2628 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
2629 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
2630 (speedbar-trim-words-tag-hierarchy)
2631 (speedbar-simple-group-tag-hierarchy): New functions
2632 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
2633 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
2634 functions.
2635 (speedbar-mouse-set-point): New function
2636 (speedbar-power-click): Updated documentation.
2637 (speedbar-line-token, speedbar-goto-this-file): Handle more types
2638 of tag prefix text.
2639 (speedbar-expand-line, speedbar-contract-line): Make more robust
2640 to strange text.
2641 (speedbar-expand-line): Takes universal argument to flush the
2642 cache.
2643 (speedbar-flush-expand-line): New function.
2644 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
2645 Use new generator insertion method.
2646 (speedbar-fetch-dynamic-tags): New function.
2647 (speedbar-fetch-dynamic-imenu): Removed code now handled in
2648 `speedbar-fetch-dynamic-imenu'.
2649 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
2650 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
2651 "Revert Buffer" menu items.
2652 (speedbar-buffer-buttons-engine): Be smarter when creating a
2653 filename tag (for expansion purposes.).
2654 (speedbar-highlight-one-tag-line,
2655 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
2656 (speedbar-recenter): New functions.
2657 (defimage-speedbar): Image loading abstraction.
2658 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
2659 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
2660 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
2661 (speedbar-tag-type, speedbar-tag-mail): New images.
2662 (speedbar-expand-image-button-alist): New variable.
2663 (speedbar-insert-image-button-maybe): Insert an image over some
2664 buttons.
2665
2666 2000-05-13 Kenichi Handa <handa@etl.go.jp>
2667
2668 * international/mule-cmds.el (encode-coding-char): An ASCII
2669 character is always encodable.
2670
2671 * international/mule-conf.el: Add more information in descriptions
2672 of character sets.
2673
2674 * international/mule-diag.el (describe-char-after): New function.
2675 (describe-font-internal): Adjusted for the change of font-info.
2676 (describe-font): Likewise.
2677 (print-fontset): Rewritten for the new fontset implementation.
2678 (describe-fontset): Include fontset alias names in completion.
2679 (list-fontsets): Adjusted for the change of print-fontset.
2680
2681 * simple.el (what-cursor-position): If DETAIL is non-nil, call
2682 describe-char-after instead of displaying the detail in the echo
2683 area.
2684 (syntax-code-table): Format changed.
2685 (string-to-syntax): Adjusted for the above change.
2686
2687 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
2688
2689 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
2690
2691 2000-05-12 Dave Love <fx@gnu.org>
2692
2693 * calendar/todo-mode.el: Remove some compatibility stuff and CL
2694 dependence. Use line-{beginning,end}-position, not
2695 point-at{b,e}ol. Some doc fixes.
2696 (todo-position): New function. Fix callers of position to use it.
2697 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
2698
2699 2000-05-12 Gerd Moellmann <gerd@gnu.org>
2700
2701 * time.el (display-time-mail-icon): Use `:ascent center'.
2702
2703 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
2704 handling FTP security extensions.
2705
2706 2000-05-11 Dave Love <fx@gnu.org>
2707
2708 * calendar/todo-mode.el: New file.
2709
2710 2000-05-11 Gerd Moellmann <gerd@gnu.org>
2711
2712 * comint.el (comint-read-input-ring): Move reference to
2713 comint-input-ring-size outside of the save-excursion. It was
2714 causing the default value to be the only one ever seen.
2715
2716 * font-lock.el: Update copyright. Remove Simon Marshall's email
2717 address on request from him.
2718
2719 * subr.el (substitute-key-definition): Add comment describing
2720 the meaning of PREFIX.
2721
2722 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
2723
2724 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
2725
2726 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
2727 (add-minor-mode): Don't make the variable buffer-local and add a
2728 reference to define-minor-mode in the docstring.
2729
2730 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
2731 HEADER/FOOTER and fix bug with trailing empty directory.
2732 (cvs-append-to-ignore): Use vc-editable-p if available.
2733 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
2734 (vc-do-command): Tweak advice to handle the new VC.
2735
2736 * log-view.el (log-view-goto-rev): New function for the new VC.
2737 (log-view-minor-wrap): Use mark-active.
2738
2739 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
2740 (log-edit-changelog-full-paragraphs): New var.
2741 (log-edit-insert-changelog): Remove a lonely leading `* file'.
2742 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
2743 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
2744 (log-edit-changelog-ours-p, log-edit-changelog-entries)
2745 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
2746 Replace the `cvs' prefix with `log-edit'.
2747
2748 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
2749
2750 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
2751 (diff-font-lock-defaults): Explicitly turn off multiline.
2752 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
2753 (diff-ediff-patch): Fix call to ediff-patch-file.
2754 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
2755 Handle comments.
2756
2757 * frame.el (automatic-hscrolling): Typo.
2758
2759 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
2760
2761 2000-05-09 Sam Steingold <sds@goems.com>
2762
2763 * apropos.el (apropos-print): use `describe-face' instead of
2764 `customize-face-other-window'.
2765
2766 2000-05-09 Dave Love <fx@gnu.org>
2767
2768 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
2769
2770 * help.el (describe-variable): Have customize button pop the
2771 help-xref stack when invoked.
2772 (help-xref-symbol-regexp): Add `face'.
2773 (help-make-xrefs): Check for quoted face names and adapt regexp
2774 submatch numbers to cope.
2775 (help-xref-interned): Maybe insert face doc too. Separate
2776 sections with a line of hyphens.
2777
2778 * faces.el: Some doc fixes. Declare some functions obsolete.
2779 (describe-face): Add customize button. Return the help
2780 text. Fix prompt.
2781
2782 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
2783
2784 * term/internal.el (IT-character-translations): Fix last change.
2785
2786 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
2787
2788 * woman.el: New file
2789 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
2790
2791 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
2792
2793 * term/internal.el (IT-character-translations): Update ASCII
2794 simulations for greek-iso8859-7, add latin-iso8859-14 and
2795 latin-iso8859-15.
2796
2797 * international/mule-cmds.el (set-language-info-alist): Call
2798 define-prefix-command with 3 arguments, to make the map suitable
2799 for a menu.
2800
2801 2000-05-07 Dave Love <fx@gnu.org>
2802
2803 * time.el: Small doc fixes from Pavel Janík ml..
2804
2805 2000-05-05 Dave Love <fx@gnu.org>
2806
2807 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
2808 list in doc string. Don't quote keyword symbols.
2809 * emacs-lisp/cl.el: Likewise
2810 * emacs-lisp/cl-seq.el: Likewise
2811
2812 2000-05-05 Gerd Moellmann <gerd@gnu.org>
2813
2814 * abbrev.el (abbrev-mode): Make ARG optional.
2815
2816 2000-05-04 Gerd Moellmann <gerd@gnu.org>
2817
2818 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
2819
2820 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
2821
2822 * subr.el (substitute-key-definition): Clarify documentation.
2823
2824 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
2825
2826 * glasses.el (glasses-convert-to-unreadable): Use
2827 `glasses-separator' instead of the hard-wired "_".
2828 (glasses-mode): Call `glasses-make-unreadable' only in a single
2829 place.
2830
2831 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
2832
2833 * term/internal.el (cjk-codepages-alist): Add associations for
2834 Chinese and Korean codepages. Remove FIXME comment.
2835
2836 2000-05-03 Dave Love <fx@gnu.org>
2837
2838 * time.el (display-time-mail-face, display-time-use-mail-icon):
2839 New option.
2840 (display-time-mail-icon): New variable.
2841 (display-time-string-forms): Use the above. Fix the local-map.
2842
2843 2000-05-03 Gerd Moellmann <gerd@gnu.org>
2844
2845 * replace.el (query-replace-map): Add binding for `E'.
2846 (query-replace-help): Extend help text.
2847 (perform-replace): Allow editing the replacement string.
2848
2849 * make-mode.el (makefile-mode-abbrev-table): New variable.
2850 (makefile-mode): Set local abbrev table to
2851 makefile-mode-abbrev-table.
2852 (makefile-font-lock-keywords): Fontify includes and conditionals.
2853
2854 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
2855 set TOGGLE's value.
2856
2857 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
2858 mail-interactive-insert-alias.
2859 (mail-abbrev-complete-alias): New command.
2860 (mail-mode-map): Bind it to `M-TAB'.
2861
2862 2000-05-03 Kenichi Handa <handa@etl.go.jp>
2863
2864 * language/lao-util.el (lao-compose-region): New function.
2865
2866 2000-05-02 Gerd Moellmann <gerd@gnu.org>
2867
2868 * files.el (recover-session): Make directories as necessary
2869 if they don't exist yet.
2870
2871 * calendar/cal-french.el
2872 (french-calendar-multibyte-special-days-array)
2873 (french-calendar-special-days-array): Change French text.
2874 (calendar-french-date-string): Change output.
2875 (calendar-goto-french-date): Likewise.
2876
2877 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
2878
2879 * wid-edit.el (widget-default-active): Obey `:always-active'.
2880 (widget-documentation-string-value-create): Set `:always-active'.
2881
2882 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
2883
2884 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
2885 default prefix to `~/_emacs.d/auto-save.list/_s'.
2886 (normal-top-level): Create the directory for auto-save files, if
2887 it doesn't already exist (in the ms-dos case only).
2888
2889 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
2890
2891 * international/mule-cmds.el (set-language-environment): Don't
2892 concat an integer (dos-codepage), use format instead.
2893
2894 2000-05-02 Dave Love <fx@gnu.org>
2895
2896 * help.el (help-xref-on-pp): Check for constant symbols.
2897
2898 2000-04-29 Gerd Moellmann <gerd@gnu.org>
2899
2900 * startup.el (normal-top-level): Put a condition-case around
2901 the code loading subdirs.el.
2902
2903 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2904
2905 * ps-print.el: Upside-down and face background color printing,
2906 line number step, doc fix.
2907 (ps-print-version): New version number (5.2).
2908 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
2909 (ps-face-attribute-list, ps-plot-with-face): Code fix.
2910 (ps-spool-config): Var fix.
2911 (ps-printer-name-option): Const fix.
2912 (ps-print-upside-down, ps-use-face-background)
2913 (ps-line-number-step): New vars.
2914 (ps-window-system, ps-lp-system): New consts.
2915 (ps-face-background): New fun.
2916
2917 2000-04-28 Richard Stallman <rms@gnu.org>
2918
2919 * files.el (make-auto-save-file-name):
2920 Apply auto-save-file-name-transforms to visited file name
2921 before generating auto save file name.
2922 (auto-save-file-name-transforms): New variable.
2923
2924 * files.el (backup-enable-predicate):
2925 Correctly test for a file under a temporary directory.
2926
2927 2000-04-28 Gerd Moellmann <gerd@gnu.org>
2928
2929 * subr.el (add-minor-mode): Rewritten.
2930
2931 2000-04-28 Kenichi Handa <handa@etl.go.jp>
2932
2933 * mail/sendmail.el (sendmail-send-it): Set
2934 buffer-file-coding-system to the selected coding system for MIME
2935 header.
2936
2937 2000-04-27 Gerd Moellmann <gerd@gnu.org>
2938
2939 * dired.el (dired-move-to-filename-regexp): Allow format where
2940 YYYY is followed by two spaces.
2941
2942 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
2943 in the second character class of the regexp.
2944
2945 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
2946 mh-etc, too.
2947
2948 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
2949 nil.
2950
2951 * subr.el (add-minor-mode): Use `set' instead of `setq'.
2952
2953 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
2954 argument.
2955
2956 2000-04-27 Sen Nagata <sen@eccosys.com>
2957
2958 * emacs-lisp/crm.el (crm-completion-table): New variable.
2959 (crm-collection-fn, crm-test-completion)
2960 (completing-read-multiple): Use it.
2961
2962 2000-04-27 Dave Love <fx@gnu.org>
2963
2964 * help.el (locate-library): Use mapc.
2965 (help-manyarg-func-alist): Add call-process-region.
2966
2967 2000-04-26 Gerd Moellmann <gerd@gnu.org>
2968
2969 * subr.el (add-minor-mode): Make argument MAP optional.
2970
2971 * desktop.el (desktop-save): Save list of minor modes.
2972 (desktop-create-buffer): Restore minor modes.
2973 (desktop-minor-mode-table): New user-option.
2974
2975 * subr.el (add-minor-mode): New function.
2976
2977 * image.el (find-image): New function.
2978 (defimage): Rewritten to find image at load time.
2979
2980 * startup.el (normal-top-level-add-to-load-path): Handle
2981 case that the default directory is not in load-path.
2982
2983 * help.el: Old patch from Stefan Monnier.
2984 (help-xref-on-pp): New function.
2985 (describe-variable): Use it to display xrefs in a symbol's value.
2986
2987 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
2988
2989 * cus-edit.el (custom-face): Fix parenthesis.
2990
2991 2000-04-26 Kenichi Handa <handa@etl.go.jp>
2992
2993 * mail/rmail.el (rmail-expunge): When there are no deleted
2994 messages, do nothing.
2995
2996 2000-04-26 Dave Love <fx@gnu.org>
2997
2998 * international/mule-cmds.el (locale-translation-file-name):
2999 Defvar to nil.
3000 (set-locale-environment): Set it here (at runtime).
3001
3002 2000-04-25 Gerd Moellmann <gerd@gnu.org>
3003
3004 * replace.el (perform-replace): Add parameters START and END. Use
3005 them instead of the check for a region in Transient Mark mode.
3006 (query-replace-read-args): Return two more list elements for the
3007 start and end of the region in Transient Mark mode.
3008 (query-replace, query-replace-regexp, query-replace-regexp-eval)
3009 (map-query-replace-regexp, replace-string, replace-regexp): Add
3010 optional last arguments START and END and pass them to
3011 perform-replace.
3012
3013 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
3014 form with additional arguments for perform-replace.
3015
3016 * progmodes/etags.el (tags-query-replace): Add parameters START
3017 and END. Construct a form with additional arguments for
3018 perform-replace.
3019
3020 * simple.el (shell-command): Set default directory for "*Shell
3021 Command Output" buffer.
3022
3023 * language/european.el (iso-latin-4): Fix typo.
3024
3025 * emacs-lisp/crm.el: New file.
3026
3027 2000-04-24 Dave Love <fx@gnu.org>
3028
3029 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
3030 (Custom-reset-saved, Custom-reset-standard)
3031 (custom-group-value-create, custom-group-set, custom-group-save)
3032 (custom-group-reset-current, custom-group-reset-saved)
3033 (custom-group-reset-standard): Use mapc.
3034 (custom-buffer-create-internal): Disable undo when creating items.
3035 Use mapc.
3036 (custom-face): Avoid redundant lambda.
3037
3038 2000-04-24 Gerd Moellmann <gerd@gnu.org>
3039
3040 * startup.el (auto-save-list-file-prefix): Set default to
3041 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
3042
3043 2000-04-24 Sam Steingold <sds@gnu.org>
3044
3045 * time-stamp.el (time-stamp-string-preprocess): Always convert
3046 `field-result' to a string.
3047
3048 2000-04-24 Gerd Moellmann <gerd@gnu.org>
3049
3050 * frame.el (scrolling): New group.
3051 (automatic-hscrolling): New user-option.
3052
3053 * startup.el (command-line-x-option-alist): Add `-lsp' and
3054 `--line-spacing'.
3055
3056 2000-04-19 Dave Love <fx@gnu.org>
3057
3058 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
3059 (cl-mapc): Rename from mapc. Fix the funcall.
3060
3061 2000-04-19 Gerd Moellmann <gerd@gnu.org>
3062
3063 * simple.el (clone-indirect-buffer-other-window): New command.
3064 (clone-indirect-buffer): Add optional arg NORECROD.
3065 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
3066
3067 * help.el (resize-temp-buffer-window): Use count-screen-lines.
3068
3069 * window.el (count-screen-lines): New function.
3070 (shrink-window-if-larger-than-buffer): Use count-screen-lines
3071 instead of window-buffer-height.
3072
3073 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
3074 non-existing variable comint-input-sentinel.
3075 (inferior-lisp-args-to-list): Removed.
3076 (inferior-lisp): Use split-string instead of
3077 inferior-lisp-args-to-list.
3078
3079 * hexl.el (hexl-insert-hex-string): New command.
3080
3081 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
3082 instead of concat.
3083
3084 2000-04-18 Gerd Moellmann <gerd@gnu.org>
3085
3086 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
3087 at the start of an existing but empty folder.
3088
3089 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3090
3091 * ps-mule.el: Customization fix, doc fix.
3092 (ps-multibyte-buffer): Customization fix.
3093
3094 2000-04-17 Richard M. Stallman <rms@gnu.org>
3095
3096 * subr.el (read-passwd): Use read-char-exclusive.
3097
3098 2000-04-17 Gerd Moellmann <gerd@gnu.org>
3099
3100 * textmodes/texinfo.el (texinfo-insert-@email)
3101 (texinfo-insert-@emph, texinfo-insert-@quotation)
3102 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
3103 (texinfo-mode-map): Add key bindings for them.
3104
3105 * files.el (basic-save-buffer-2): Use a template with `$'
3106 instead of `#' for VMS.
3107
3108 * simple.el (clone-indirect-buffer): New function.
3109
3110 2000-04-16 Stephen Eglen <stephen@gnu.org>
3111
3112 * iswitchb.el (iswitchb-case): New function. If the user input
3113 contains any upper-case characters, the search is made
3114 case-sensitive.
3115
3116 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
3117
3118 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
3119 comment-end.
3120 (texinfo-font-lock-syntactic-keywords): New var.
3121 (texinfo-font-lock-keywords): Remove comment regexp.
3122 (texinfo-insert-block): New function.
3123 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
3124 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
3125 and font-lock-defaults. Use regexp-opt for outline-regexp.
3126 (texinfo-environments): New var.
3127 (texinfo-environment-regexp): Use regexp-opt and
3128 texinfo-environments.
3129
3130 * textmodes/ispell.el (ispell-menu-map-needed): Check that
3131 ispell-process is bound since this might be eval'd before ispell
3132 is loaded.
3133 (ispell-message): Use a tiny bit less magic and a bit more hard
3134 data to figure out what kind of sc-cite-regexp to use.
3135
3136 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
3137
3138 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
3139 (insert-cyclic-diary-entry): Unquote the lambda.
3140
3141 * gud.el (gud-jdb-build-source-files-list): Fix typo.
3142
3143 * files.el (backup-enable-predicate): Unquote the lambda.
3144
3145 * cus-edit.el (custom-face, face): Unquote the lambda.
3146
3147 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3148
3149 * ps-print.el: Check for line-beginning-position definition.
3150
3151 * ps-print.el: Fix counting lines in a region.
3152 (ps-print-version): New version number (5.1.5).
3153 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
3154 (ps-printing-region): Fun code fix.
3155
3156 2000-04-15 Gerd Moellmann <gerd@gnu.org>
3157
3158 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
3159 to file-directory-p.
3160
3161 2000-04-14 Gerd Moellmann <gerd@gnu.org>
3162
3163 * gud.el (gud-jdb-build-source-files-list): Check that directory
3164 exists before calling directory-files.
3165
3166 2000-04-13 Dave Love <fx@gnu.org>
3167
3168 * emacs-lisp/trace.el: Change maintainer. Use new backquote
3169 syntax.
3170
3171 * emacs-lisp/cl-specs.el: Remove when, unless.
3172
3173 * emacs-lisp/cl-extra.el: Don't quote keywords.
3174 (cl-old-mapc): New variable.
3175 (mapc): Use it.
3176 (cl-map-intervals): Use with-current-buffer. Don't check for
3177 next-property-change.
3178 (cl-map-overlays): Use with-current-buffer.
3179 (cl-expt): Remove.
3180 (copy-tree, remprop): Define unconditionally.
3181
3182 * emacs-lisp/cl-compat.el (keywordp): Remove.
3183
3184 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
3185 to use keywordp.
3186 (edebug-spec): Enable keywordp.
3187
3188 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
3189 string-lessp.
3190
3191 * cus-start.el: Use keywordp.
3192
3193 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
3194
3195 * diary-lib.el (include-other-diary-files): Fix the fix of
3196 2000-02-18 by doing a save-excursion.
3197
3198 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3199
3200 * ps-print.el: Customization fix, doc fix.
3201 (ps-print-version): New version number (5.1.4).
3202 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
3203 (ps-print-preprint): Adjust code.
3204 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
3205 (ps-print-prologue-header, ps-print-control-characters)
3206 (ps-spool-config): Customization fix.
3207
3208 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
3209
3210 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
3211 converted to the new menu-item format, names silightly changed,
3212 help strings added.
3213
3214 Support for spelling without async subprocesses:
3215
3216 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
3217 (ispell-session-buffer): New variables.
3218 (ispell-start-process, ispell-process-status,
3219 ispell-accept-output, ispell-send-string): New functions, for
3220 Ispell invocation when async subprocesses aren't supported.
3221 (ispell-word, ispell-pdict-save, ispell-command-loop,
3222 ispell-process-line, ispell-buffer-local-parsing): Replace calls
3223 to process-send-string with calls to ispell-send-string, and
3224 accept-process-output with ispell-accept-output.
3225 (ispell-init-process): Call ispell-process-status instead of
3226 process-status with.
3227 (ispell-init-process): Call ispell-start-process. Call
3228 ispell-accept-output and ispell-send-string. Don't call
3229 process-kill-without-query and kill-process if they are unbound.
3230 (ispell-async-processp): New function.
3231
3232 2000-04-12 Dave Love <fx@gnu.org>
3233
3234 * info.el: Add debug-ignored-errors.
3235 (Info-mode-menu): Add some items.
3236 (Info-directory): Add autoload cookie.
3237
3238 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
3239 Modify `truncate-lines'. Make `describe-language-environment'
3240 always visible and add help. Modify `describe-key' help. Invoke
3241 Info-directory from `info'. New entry `emacs-manual'.
3242
3243 2000-04-10 Gerd Moellmann <gerd@gnu.org>
3244
3245 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
3246 propertized-buffer-identification.
3247 (ebrowse-update-member-buffer-mode-line): Likewise.
3248 (ebrowse--mode-strings): Removed.
3249 (ebrowse--mode-line-props): Removed.
3250
3251 * files.el (auto-mode-alist): Add `EBROWSE'.
3252
3253 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
3254 space before testing for end of buffer.
3255 (ebrowse-load): Removed.
3256 (ebrowse-revert-tree-buffer-from-file): Rewritten.
3257 (ebrowse-create-tree-buffer): Rewritten.
3258 (ebrowse-tree-mode): Read tree from buffer.
3259
3260 * progmodes/ebrowse-ffh.el: Removed.
3261
3262 2000-04-10 Kenichi Handa <handa@etl.go.jp>
3263
3264 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
3265
3266 2000-04-10 Gerd Moellmann <gerd@gnu.org>
3267
3268 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
3269 at the wrong place.
3270
3271 2000-04-09 Dave Love <fx@gnu.org>
3272
3273 * files.el (backup-enable-predicate): Use
3274 temporary-file-directory, small-temporary-file-directory.
3275 (make-backup-file-name-function, backup-directory-alist): New
3276 variables.
3277 (make-backup-file-name-1): New function.
3278 (make-backup-file-name): Use it.
3279 (find-backup-file-name): Likewise. Use format for clarity, not
3280 concat.
3281 (file-newest-backup): Use make-backup-file-name.
3282
3283 2000-04-09 Gerd Moellmann <gerd@gnu.org>
3284
3285 * progmodes/ebrowse-ffh.el: New file.
3286
3287 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
3288 to ebrowse-ffh.el.
3289 (ebrowse-load): Add autoload.
3290
3291 * finder.el (finder-commentary): Add autoload cookie.
3292
3293 * mail/rfc2368.el: Correct author's email address.
3294
3295 * progmodes/ebrowse.el: New file.
3296
3297 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
3298 item help string.
3299 (easy-menu-do-add-item): Ditto.
3300 (easy-menu-define): Extend doc string.
3301
3302 * jit-lock.el (with-buffer-unmodified): Use
3303 restore-buffer-modified-p.
3304 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
3305 (jit-lock-function, jit-lock-stealth-fontify): Don't use
3306 with-buffer-unmodified.
3307
3308 2000-04-08 Dave Love <fx@gnu.org>
3309
3310 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
3311 unless, when.
3312
3313 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
3314
3315 * viper-util.el (viper-put-on-search-overlay): New subroutine.
3316 (viper-flash-search-pattern): No operation when using Emacs
3317 doesn't support face.
3318 Use `viper-put-on-search-overlay'.
3319
3320 2000-04-04 Gerd Moellmann <gerd@gnu.org>
3321
3322 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
3323 like C-r.
3324
3325 * progmodes/make-mode.el: Some doc fixes.
3326 (makefile-mode-abbrev-table): New variable.
3327 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
3328 (makefile-font-lock-keywords): Fontify includes and conditionals.
3329 (toplevel): Require `dabbrev' and `add-log' when compiling.
3330
3331 * replace.el (perform-replace): Don't move forward one char
3332 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
3333 to do that because it leaves point 1 position after the last
3334 replacement, after everything has been replaced.
3335
3336 * jit-lock.el (with-buffer-unmodified): New macro.
3337 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
3338 modified state.
3339 (jit-lock-function-1): Extracted from jit-lock-function; not
3340 preserving buffer's modified state.
3341 (jit-lock-function, jit-lock-stealth-fontify): Call
3342 jit-lock-function-1.
3343
3344 * mail/rfc2368.el: Remove supernumerary copyright line.
3345
3346 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
3347
3348 * glasses.el: Provide facilities for inserting space before left
3349 parentheses and uncapitalization of identifiers.
3350 (glasses-mode): Try to remove old overlays in all cases.
3351
3352 2000-04-03 Gerd Moellmann <gerd@gnu.org>
3353
3354 * progmodes/compile.el (compile-internal): Display the compilation
3355 buffer in a different frame, if it's already displayed there.
3356
3357 * mail/rfc2368.el: New file.
3358
3359 * simple.el (sendmail-user-agent-compose): Recognize a `body'
3360 header and insert its value as mail body.
3361
3362 * subr.el (member-ignore-case): New function.
3363
3364 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
3365 (dabbrev--find-expansion): Ignore buffers matching a regexp
3366 from dabbrev-ignored-regexps.
3367
3368 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
3369 to extensions handled by gzip.
3370
3371 2000-04-03 Richard M. Stallman <rms@gnu.org>
3372
3373 * files.el (insert-directory): List the total free space
3374 along with the used space.
3375
3376 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
3377 line is followed by one that matches CITATION-REGEXP, end the
3378 paragraph.
3379
3380 2000-04-03 Markus Rost <rost@delysid.gnu.org>
3381
3382 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
3383 (rmail-make-basic-summary-line): Use that option.
3384
3385 2000-04-03 Kenichi Handa <handa@etl.go.jp>
3386
3387 * international/mule-cmds.el (encoded-string-description):
3388 Rewritten. Try pretty description for ISO 2022 escape sequences
3389 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
3390 for hexadecimal format.
3391
3392 2000-04-01 Dave Love <fx@gnu.org>
3393
3394 * cpp.el: Change customization group to `c' from `C'.
3395
3396 * vcursor.el (vcursor-move): Use display-color-p.
3397
3398 * international/mule-util.el: Provide mule-utils.
3399 (string-to-sequence): Simplify and speed up.
3400
3401 * international/mule.el (make-coding-system): Purecopy doc-string.
3402
3403 * international/mule-cmds.el: Various menu changes.
3404 (describe-specified-language-support): Handle `Default'.
3405 (set-language-info): Purecopy `info'.
3406
3407 2000-03-31 Andrew Innes <andrewi@gnu.org>
3408
3409 * vc.el (vc-backend-diff): Return the correct status if we had to
3410 retry the rcsdiff command without the --brief option.
3411
3412 2000-03-31 Dave Love <fx@gnu.org>
3413
3414 * help.el (help-manyarg-func-alist): Correct several omissions.
3415
3416 * add-log.el: Don't require cl, fortran.
3417 (add-log-current-defun-function): Doc fix.
3418 (change-log-version-number-regexp-list): Remove SCCS part. Doc
3419 fix.
3420 (change-log-version-rcs): Function deleted.
3421 (change-log-version-number-search): Doc fix. Use
3422 vc-workfile-version. Avoid CL dolist.
3423 (add-change-log-entry): Just call add-log-current-defun to get
3424 defun. Simplify somewhat.
3425 (change-log-get-method-definition-1): Likewise.
3426 (add-log-current-defun): Return nil if calling
3427 add-log-current-defun-function does so. Move Fortran stuff to
3428 fortran.el. Return string without properties.
3429
3430 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
3431 and :alpha: char classes.
3432
3433 * mail/supercite.el: Defvar curline when compiling.
3434 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
3435 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
3436 rather than a-zA-Z0-9 to allow non-ASCII characters.
3437
3438 2000-03-31 Gerd Moellmann <gerd@gnu.org>
3439
3440 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
3441
3442 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
3443 Re-enable new code.
3444
3445 * lpr.el (print-region-1): Use -d to specify printer name for
3446 systems `usg-unix-v*, `dgux', `hpux', `irix'.
3447
3448 2000-03-31 Dave Love <fx@gnu.org>
3449
3450 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
3451 for function definition in symbol's function value slot first
3452 instead of first consulting byte-compile-function-environment.
3453
3454 2000-03-31 Kenichi Handa <handa@etl.go.jp>
3455
3456 * language/european.el ("Polish"): New language environment.
3457 (setup-polish-environment): New function.
3458
3459 2000-03-30 Gerd Moellmann <gerd@gnu.org>
3460
3461 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
3462 Disable new code.
3463
3464 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
3465 trying to `load' the symbol of an autoload instead of the file
3466 recorded in the autoload. Fix error messages.
3467
3468 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3469
3470 * ps-print.el: PostScript programming fix for ghostview, doc fix.
3471 (ps-print-version): New version number (5.1.3).
3472 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
3473 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
3474 (ps-generate-postscript-with-faces): Code fix.
3475 (ps-color-values): XEmacs compatibility.
3476 (ps-print-background-image, ps-print-background-text, ps-printer-name)
3477 (ps-default-fg, ps-default-bg): Adjust customization.
3478 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
3479 (ps-color-scale): Renaming old ps-color-value fun.
3480 (ps-print-headers): Replace ps-print-header group to avoid conflict
3481 with ps-print-header variable.
3482 (ps-print-miscellany): New group.
3483 (ps-format-color, ps-rgb-color): New funs.
3484 (ps-default-foreground): New var.
3485 (ps-printer-name-option): New const.
3486
3487 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
3488
3489 * net/net-utils.el:
3490 (network-connection-host, network-connection-service): New variables
3491 (network-connection-mode): New mode, derived from comint-mode
3492 (network-connection-mode-setup): New function, saves host and
3493 service information in local variables.
3494
3495 * lisp/locate.el:
3496 (locate-word-at-point): Added this function
3497 (locate): Default to using locate-word-at-point as input
3498 Run dired-mode-hook
3499
3500 2000-03-29 Dave Love <fx@gnu.org>
3501
3502 * calendar/appt.el: Doc fixes.
3503 (appt-check): Convert min-to-app to a string before passing to
3504 appt-disp-window-function or concat.
3505 (appt-delete-window): Remove test for frame-root-window.
3506 (appt-select-lowest-window, appt-convert-time): Simplify.
3507
3508 * emacs-lisp/bytecomp.el: Doc fixes.
3509 (byte-compile-file-form-autoload): Update
3510 byte-compile-function-environment.
3511
3512 2000-03-29 Andreas Schwab <schwab@suse.de>
3513
3514 * emacs-lisp/autoload.el: Also print defsubst doc string
3515 specially.
3516
3517 * dired.el (dired-insert-directory): If dired-free-space-program
3518 failed just delete its output.
3519
3520 2000-03-29 Dave Love <fx@gnu.org>
3521
3522 * international/iso-cvt.el: Move provide to end. Doc fixes.
3523 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
3524 (iso-iso2sgml, iso-sgml2iso): New functions.
3525 (iso-cvt-define-menu): Fix some entries and use backquote for
3526 clarity.
3527
3528 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
3529
3530 2000-03-28 Gerd Moellmann <gerd@gnu.org>
3531
3532 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
3533 ISO-DATE. If non-nil, return date in ISO 8601 format.
3534
3535 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
3536
3537 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
3538 if it ever becomes used.
3539 (log-edit-mode-hook): Default to vc-log-mode-hook.
3540 (log-edit-mode): Fix the docstring.
3541
3542 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
3543 the code.
3544
3545 2000-03-26 Dave Love <fx@gnu.org>
3546
3547 * net/browse-url.el (browse-url): Re-fix case of
3548 browse-url-browser-function being an alist.
3549 (browse-url): Add :link to defgroup.
3550
3551 * files.el: Doc fixes.
3552 (file-truename): Include `[' in wildcard characters.
3553 (automount-dir-prefix): Customize.
3554 (find-file-wildcards): Add :version.
3555 (find-file-noselect): Simplify a mapcar call.
3556
3557 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
3558 compatible with inf-lisp version.
3559 (eval-defun-1): Fix custom-declare-variable case.
3560
3561 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
3562
3563 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
3564
3565 2000-03-24 Gerd Moellmann <gerd@gnu.org>
3566
3567 * Makefile (COMPILE_FIRST): New macro.
3568 (compile-files): Compile files from COMPILE_FIRST first.
3569
3570 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
3571 code.
3572
3573 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
3574 matching open parenthesis in column 0 to defun-prompt-regexp
3575 only if open-paren-in-column-0-is-defun-start is set.
3576
3577 * sun-curs.el: Require CL at compile-time only.
3578
3579 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
3580 instead of copy-list which is a function from CL.
3581 (msb--choose-menu, msb--mode-menu-cond)
3582 (msb--create-buffer-menu-2): Use dolist instead of mapc.
3583 (msb--init-file-alist): Use mapcar instead of mapcan.
3584 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
3585 `(' in column 0 in doc string.
3586 (msb--add-separators): Use mapcar instead of mapcan.
3587
3588 * cus-dep.el: Require CL at compile-time only.
3589
3590 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
3591
3592 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
3593 (byte-compile-warnings): New warning `noruntime'.
3594 (byte-compile-constants, byte-compile-variables): Fix docstring.
3595 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
3596 execute `eval-whenc-compile's body.
3597 (byte-compile-unresolved-functions): Fix docstring.
3598 (byte-compile-eval): New function.
3599 (byte-compile-callargs-warn): Check if the function will be available
3600 at runtime (via property `byte-compile-noruntime').
3601 (byte-compile-print-syms): New function.
3602 (byte-compile-warn-about-unresolved-functions): Also warn about
3603 `noruntime' functions (and use `byte-compile-print-syms').
3604 (byte-compile-file): Capitalize the message.
3605
3606 2000-03-24 Gerd Moellmann <gerd@gnu.org>
3607
3608 * mail/rmail.el (rmail-confirm-expunge): New user-option.
3609 (rmail-expunge): Ask for confirmation depending on the setting
3610 of rmail-confirm-expunge.
3611
3612 2000-03-23 Gerd Moellmann <gerd@gnu.org>
3613
3614 * Makefile (bootstrap-clean): If $(emacs) exists, build
3615 loaddefs.el first. A loaddefs.el that's not up-to-date might
3616 cause a bootstrap failure because things don't autoload as
3617 expected.
3618
3619 2000-03-23 Dave Love <fx@gnu.org>
3620
3621 * net/browse-url.el: Restore previous use of
3622 browse-url-maybe-new-window.
3623
3624 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3625
3626 * ps-print.el: Skip banner page fix.
3627 (ps-print-version): New version number (5.1.2).
3628 (ps-begin-file, ps-end-file, ps-generate): Code fix.
3629
3630 2000-03-23 Dave Pearson <davep@davep.org>
3631
3632 * net/quickurl.el Changed the type of parameter passed to the
3633 function defined by `quickurl-format-function'. Before only the
3634 text of the URL was passed. Now the whole URL structure is passed
3635 and the function is responsible for extracting the parts it
3636 requires. Changed the default of `quickurl-format-function'
3637 accordingly.
3638 (quickurl-insert): Changed the `funcall' of
3639 `quickurl-format-function' to match the above change.
3640 (quickurl-list-insert): Changed the `url' case so that it makes
3641 use of `quickurl-format-function', previous to this the format was
3642 hard wired.
3643
3644 2000-03-22 Gerd Moellmann <gerd@gnu.org>
3645
3646 * startup.el: Change some spellings for the X Window System.
3647
3648 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
3649
3650 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
3651 up the code and the regexp and make sure the cursor is temporarily
3652 moved to the suspicious line while querying the user.
3653
3654 2000-03-22 Jason Rumney <jasonr@gnu.org>
3655
3656 * w32-fns.el (w32-charset-info-alist): Initialize.
3657
3658 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3659
3660 * ps-print.el: N-up last page fix.
3661 (ps-print-version): New version number (5.1.1).
3662 (ps-end-file, ps-end-job, ps-generate): Code fix.
3663
3664 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
3665
3666 * files.el (find-file-run-dired): Update docstring.
3667 (find-directory-functions): New hook.
3668 (find-file-noselect): Run find-directory-functions rather than
3669 calling dired directly.
3670
3671 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
3672
3673 * pcvs.el: Add a minimal leading commentary.
3674 (cvs-make-cvs-buffer): Change the header part by removing the startup
3675 message and adding a `Module' entry. Also replace the FOOTER and
3676 HEADER special fileinfos with the new support in ewoc for updating
3677 its own footer and header.
3678 (cvs-update-header): Update to use the header/footer of the ewoc.
3679 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
3680 (cvs-is-within-p): New function.
3681 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
3682 to only examine some subset of the buffers.
3683
3684 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
3685 `format' instead of our own ad-hoc functions.
3686 Remove HEADER and FOOTER cases, now handled in the EWOC.
3687 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
3688
3689 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
3690 output to avoid scaring the user.
3691 (cvs-parse-table): Catch message for non-up-to-date commits.
3692
3693 * pcvs-defs.el (cvs-startup-message): Remove.
3694 (cvs-global-menu): New autoloaded menu.
3695
3696 * pcvs-util.el (cvs-string-fill): Remove.
3697
3698 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
3699 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
3700 PP part of it and also make it work for footers and headers.
3701 (ewoc-create): Drop POS and BUFFER arguments.
3702 Use the DLL's dummy node to store the end-of-footer position.
3703 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
3704 (ewoc-refresh): Remove unused `header' variable.
3705 (ewoc-(get|set)-hf): New functions.
3706
3707 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
3708 log-view-*-(message|file) and use easy-mmode-define-navigation.
3709 (log-view-message-re): Match SCCS format as well.
3710 And match the revision line rather than the dashed separator line.
3711 (log-view-mode): Use the new define-derived-mode.
3712 (log-view-current-tag): Fill in with an actual implementation.
3713
3714 * cvs-status.el (cvs-status-(prev|next)): Rename from
3715 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
3716 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
3717 to let the output "breathe" a little more (more readable).
3718 (cvs-status-mode): Use the new define-derived-mode.
3719
3720 * smerge-mode.el (smerge-auto-leave): New function and variable.
3721 (smerge-basic-map): Rename from smerge-basic-keymap.
3722 Change the bindings for smerge-diff-*.
3723 (smerge-*-map): Use easy-mmode-defmap.
3724 (smerge-(next|prev)): Use easy-mmode-define-navigation.
3725 (smerge-keep-*): Use smerge-auto-leave.
3726
3727 2000-03-21 Jason Rumney <jasonr@gnu.org>
3728
3729 * cus-edit.el (custom-button-face): Use 3D look for w32.
3730 (custom-button-pressed-face): Likewise.
3731
3732 2000-03-21 Gerd Moellmann <gerd@gnu.org>
3733
3734 * progmodes/etags.el (tags-case-fold-search): New user-option.
3735 (tags-loop-eval): New function. Bind case-fold-search around eval
3736 depending on the value of tags-case-fold-search.
3737 (tags-loop-continue): Use tags-loop-eval.
3738 (find-tag-in-order): Bind case-fold-search depending on the value
3739 of tags-case-fold-search.
3740
3741 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
3742
3743 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
3744 (diff-end-of-hunk): Return the end position for use in
3745 `easy-mmode-define-navigation'.
3746 (diff-recenter): Remove.
3747 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
3748 of `easy-mmode-define-navigation'.
3749 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
3750 previous renaming) and fix to use new names.
3751 (diff-merge-strings): Use \n as separator: simpler, faster.
3752 (diff-mode): Use `define-derived-mode'.
3753
3754 * derived.el (define-derived-mode): Don't autoload anymore.
3755 Prefer the macro-only version provided by easy-mmode.el.
3756
3757 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
3758 `easy-mmode-define-derived-mode'.
3759 Use `combine-run-hooks'.
3760 (easy-mmode-define-navigation): New macro.
3761
3762 * subr.el (combine-run-hooks): New function.
3763
3764 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
3765
3766 * term/x-win.el: Fontsets related initialization is simplified.
3767
3768 * international/mule-diag.el (describe-font): Don't refer to
3769 global-fontset-alist, instead call font-list.
3770 (describe-fontset, list-fontsets, mule-diag): Likewise.
3771 (print-fontset): Adjusted for the change of fontset
3772 implementation.
3773
3774 * international/fontset.el (x-charset-registries): Variable
3775 removed, instead the corresponding data is stored in the default
3776 fontset.
3777 (register-alternate-fontnames): Function removed.
3778 (resolved-ascii-font): Variable removed.
3779 (x-compose-font-name): Ignore the second argument REDOCE.
3780 (x-complement-fontset-spec): Complement only an ASCII font and
3781 element for those charsets than can use that ASCII font.
3782 (generate-fontset-menu): Don't refer to global-fontset-alist,
3783 instead call fontset-list.
3784 (uninstantiated-fontset-alist): Variable removed.
3785 (x-style-funcs-alist): Likewise.
3786 (fontset-default-styles): Likewise.
3787 (x-modify-font-name): Function removed.
3788 (create-fontset-from-fontset-spec): Ignore the argument
3789 STYLE-VARIANT.
3790 (create-fontset-from-ascii-font): Docsting adjusted for the above
3791 change.
3792 (instantiate-fontset, resolve-fontset-name): Functions removed.
3793 (fontset-list): Now implemented by C code.
3794
3795 * faces.el (read-face-font): Fix TABLE arg to completing-read.
3796 (describe-face): Include `font' attribute in the description.
3797
3798 2000-03-21 Kenichi Handa <handa@etl.go.jp>
3799
3800 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
3801
3802 2000-03-20 Gerd Moellmann <gerd@gnu.org>
3803
3804 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
3805 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
3806 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
3807
3808 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
3809 about behavior of set-buffer-modified-p wrt redisplay.
3810
3811 2000-03-19 Richard M. Stallman <rms@gnu.org>
3812
3813 * view.el (view-mode-disable): Kill local binding of view-read-only.
3814
3815 2000-03-18 Gerd Moellmann <gerd@gnu.org>
3816
3817 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
3818 is a string, convert it to a syntax cell using string-to-syntax.
3819
3820 * simple.el (syntax-code-table, syntax-flag-table): New variables.
3821 (string-to-syntax): New function.
3822
3823 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
3824 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
3825 try to use passive ftp mode.
3826
3827 2000-03-17 Gerd Moellmann <gerd@gnu.org>
3828
3829 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
3830
3831 * simple.el (append-to-buffer): Update point of windows after
3832 insertion.
3833
3834 * abbrev.el (inverse-add-abbrev): Identify word by first moving
3835 forward then moving backward. Reindent.
3836
3837 * frame.el (other-frame): Call x-focus-frame only if
3838 focus-follows-mouse is off.
3839
3840 2000-03-17 Dave Love <fx@gnu.org>
3841
3842 * pcvs-util.el (cvs-strings->string): Rename
3843 replace-regexps-in-string.
3844
3845 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
3846
3847 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
3848 regexp for labels cannot span several lines.
3849
3850 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
3851 `(setq :<key> ':<key>)' to the macro expansion.
3852
3853 2000-03-16 Dave Love <fx@gnu.org>
3854
3855 * progmodes/f90.el (f90): Put custom group under `languages', not
3856 `fortran'.
3857 (f90-mode-hook): Customize.
3858 (f90-mode): Set add-log-current-defun-function.
3859 (f90-current-defun): New function.
3860
3861 2000-03-16 Gerd Moellmann <gerd@gnu.org>
3862
3863 * cus-edit.el (custom-variable-tag-face): Handle case that
3864 default face's height is not a number.
3865 (custom-face-tag-face, custom-group-tag-face-1)
3866 (custom-group-tag-face): Ditto.
3867 (custom-group-tag-face-1): Add :group.
3868
3869 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
3870
3871 2000-03-15 Gerd Moellmann <gerd@gnu.org>
3872
3873 * pcvs-defs.el (toplevel): Remove autoload cookie for form
3874 requiring easymenu.
3875
3876 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3877
3878 * ps-print.el: PostScript user-defined prologue, PostScript error
3879 handler, doc fix.
3880 (ps-print-version): New version number (5.1).
3881 (ps-user-defined-prologue, ps-error-handler-message)
3882 (ps-print-prologue-0, ps-error-handler-alist): New vars.
3883 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
3884 (ps-insert-string): New function.
3885
3886 2000-03-15 Kenichi Handa <handa@etl.go.jp>
3887
3888 * international/ccl.el (ccl-compile-expression): Don't generate
3889 invalid self-assignment code.
3890
3891 2000-03-14 Dave Love <fx@gnu.org>
3892
3893 * subr.el (replace-regexp-in-string): Renamed from
3894 replace-regexps-in-string. Doc fix.
3895
3896 2000-03-12 Dave Love <fx@gnu.org>
3897
3898 * cus-edit.el: Doc fixes.
3899 (customize-set-variable, customize-save-variable): Rename args for
3900 doc.
3901 (custom-variable-tag-face, custom-face-tag-face)
3902 (custom-group-tag-face-1, custom-group-tag-face): Modify from
3903 style which user identify as hyperlink.
3904 (hook): Don't add undefined functions to the hook.
3905 (debug-ignored-errors): Transfer message from bindings.el.
3906
3907 2000-03-12 Gerd Moellmann <gerd@gnu.org>
3908
3909 * recentf.el (recentf-keep-non-readable-files-p): Remove
3910 double/nested definition.
3911
3912 2000-03-12 Dave Love <fx@gnu.org>
3913
3914 * facemenu.el (facemenu-get-face): Use display-color-p.
3915 * enriched.el (enriched-decode-foreground): Likewise.
3916 (enriched-decode-background): Likewise.
3917 * isearch.el (isearch-highlight): Likewise.
3918 * info-look.el (info-lookup): Likewise.
3919 * simple.el (completion-setup-function): Likewise.
3920
3921 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
3922 :options.
3923
3924 * bindings.el (mode-line-format): Fix line-number and
3925 column-number items. Add help-echo for the background.
3926 (mode-line-mule-info): Modify help-echo.
3927
3928 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
3929 defcustom.
3930
3931 * files.el (load-file): Allow completion to .elc.
3932
3933 * man.el: Doc fixes.
3934 (Man-init-defvars): Use display-color-p to set fontification.
3935
3936 * play/hanoi.el (hanoi-internal): Don't use oddp.
3937
3938 2000-03-12 Gerd Moellmann <gerd@gnu.org>
3939
3940 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
3941
3942 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
3943
3944 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
3945
3946 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
3947 Fix comment.
3948
3949 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
3950
3951 * font-lock.el (font-lock-keywords): Fix the doc now that
3952 regexp-opt-depth is unnecessary.
3953 (save-buffer-state): Set an edebug spec.
3954 (font-lock-fontify-anchored-keywords): Properly handle the case when
3955 the matcher goes past the limit.
3956
3957 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
3958 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
3959
3960 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
3961 dll.el and cookie.el (from Elib) with heavy renaming and other
3962 massaging.
3963
3964 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
3965 Autoload the functions used.
3966 (easy-mmode-define-syntax): Fix CL typo.
3967 (easy-mmode-define-derived-mode): Improve the docstring generation.
3968
3969 2000-03-10 Gerd Moellmann <gerd@gnu.org>
3970
3971 * textmodes/texinfo.el (texinfo-version): Variable and function
3972 removed.
3973
3974 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
3975
3976 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
3977 allow more flexibility.
3978 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
3979 fns.
3980 (easy-mmode-defmap, easy-mmode-defsyntax)
3981 (easy-mmode-define-derived-mode): New macros.
3982
3983 2000-03-09 Didier Verna <didier@xemacs.org>
3984
3985 * rect.el (replace-rectangle): New function.
3986
3987 2000-03-09 Dave Love <fx@gnu.org>
3988
3989 * progmodes/fortran.el (fortran-comment-line-start): Define as
3990 "C".
3991 (fortran-comment-line-start-skip): Don't match cpp stuff.
3992 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
3993 (fortran-mode-map): Remove over-eager custom-menu-create for now.
3994 (fortran-mode): Don't set fortran-comment-line-start-skip,
3995 fortran-comment-line-start here. Set comment-start,
3996 add-log-current-defun.
3997 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
3998 (fortran-current-defun): New function.
3999
4000 2000-03-09 Gerd Moellmann <gerd@gnu.org>
4001
4002 * emacs-lisp/re-builder.el: New file.
4003
4004 * mouse.el (mouse-drag-region): Don't run up-event handler
4005 if hscroll has changed.
4006
4007 * octave-mod.el (octave-font-lock-keywords): To font-lock the
4008 builtin operators, use `font-lock-builtin-face' for Emacs and
4009 `font-lock-preprocessor-face' otherwise.
4010
4011 * font-lock.el (lisp-font-lock-keywords-1): Highlight
4012 `(defun (setf foo)' differently.
4013
4014 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
4015
4016 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
4017 (regexp-opt): Update comment and adapt the code the new meaning of
4018 the `paren' argument of regex-opt-group for shy-groups.
4019 (regexp-opt-depth): Handle shy groups as well as backslashed
4020 backslashes.
4021 (regexp-opt-group): Turn the leading comment into a docstring.
4022 Allow `paren' to be a string (the string to use to open a group).
4023 Remove open-presuf and close-presuf. Instead of checking for `all
4024 one-char' and then later on check for `several one-char', handle
4025 both cases close together. Also apply a more generic algorithm
4026 for suffixes (the mirror image of the algorithm used for
4027 prefixes). Use shy-groups. Use nreverse rather than reverse.
4028 (regexp-opt-try-suffix): Removed.
4029
4030 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
4031 from comint-mode-map, so we can just inherit from it. Also, move
4032 the initialization into the `defvar' since there's no docstring
4033 anyway and it's fairly short.
4034 (inferior-scheme-mode): Define it as derived-mode: the code is
4035 shorter and this way we inherit from comint-mode-map rather than
4036 copying it.
4037
4038 * subr.el (replace-regexps-in-string): Properly handle the case
4039 where we match an empty string.
4040
4041 * comint.el (comint-exec-1): Add the current-dir to the exec-path
4042 when the command has a directory component (such as "./testml").
4043 Also fix a typo in the comment.
4044
4045 2000-03-08 Gerd Moellmann <gerd@gnu.org>
4046
4047 * Makefile (compile-files): Compile files one by one because
4048 that's the only way to ensure a clean compilation environment for
4049 each individual file.
4050
4051 * frame.el (other-frame): Call x-focus-frame.
4052
4053 2000-03-07 Dave Love <fx@gnu.org>
4054
4055 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
4056 :require to defcustom.
4057
4058 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
4059 lists.
4060
4061 * files.el (auto-mode-alist): Add configure.in.
4062
4063 * progmodes/autoconf.el: New file.
4064
4065 2000-03-07 Gerd Moellmann <gerd@gnu.org>
4066
4067 * mail/mh-e.el: Change maintainer to `none'.
4068
4069 * recentf.el (recentf-keep-non-readable-files-p): Quote args
4070 to remove-hook and add-hook.
4071
4072 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
4073
4074 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
4075 it as the default.
4076 (mail-send): Test mail-send-nonascii also for the new `mime' value.
4077 (sendmail-send-it): Conditionally add MIME headers specifying the
4078 used character set.
4079
4080 2000-03-07 Dave Love <fx@gnu.org>
4081
4082 * winner.el: Fix keywords, autoload cookies. Split
4083 eval-when-compile form to avoid compilation failure.
4084
4085 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
4086
4087 * international/mule.el: Modify comment about coding system
4088 property `coding-category'.
4089 (make-coding-system): New argument EOL-TYPE. Pay attention to
4090 coding-category property of PROPERTIES.
4091
4092 * international/mule-conf.el (coding-category-utf-8,
4093 coding-category-utf-16-be, coding-category-utf-16-le): New coding
4094 categories. Include them in the argument for set-coding-priority.
4095
4096 * international/mule-cmds.el (reset-language-environment): Include
4097 coding-category-utf-8, coding-category-utf-16-be, and
4098 coding-category-utf-16-le in the argument for set-coding-priority.
4099 (reset-language-environment): Initialize coding-category-utf-8,
4100 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
4101
4102 2000-03-06 Karl Fogel <kfogel@red-bean.com>
4103
4104 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
4105 code abstracted out of `bookmark-jump-noselect'. Now tries info
4106 extensions as well as compression extensions.
4107 (bookmark-jump-noselect): Use above new func.
4108
4109 2000-03-03 Gerd Moellmann <gerd@gnu.org>
4110
4111 * strokes.el: Change maintainer's mail address.
4112
4113 2000-03-03 Kenichi Handa <handa@etl.go.jp>
4114
4115 * international/mule-diag.el (list-character-sets): Make help-echo
4116 string by substitute-command-keys.
4117 (list-character-sets): Likewise.
4118 (sort-listed-character-sets): Call help-setup-xref.
4119
4120 2000-03-02 Gerd Moellmann <gerd@gnu.org>
4121
4122 * time.el (display-time-mail-file): Add `none' to the list of
4123 choices.
4124
4125 2000-03-01 Dave Love <fx@gnu.org>
4126
4127 * help.el (help-xref-go-back): Don't try to set position.
4128
4129 * international/mule-diag.el (list-character-sets): Call
4130 help-setup-xref. Add help-echo to xrefs.
4131 (list-character-sets-1): Add help-echo to xrefs.
4132
4133 2000-03-02 Gerd Moellmann <gerd@gnu.org>
4134
4135 * frame.el (blink-cursor-mode): Switch cursor on when turning
4136 the mode off.
4137
4138 * add-log.el (add-log-current-defun): Add support for
4139 Autoconf mode.
4140
4141 * mail/rmail.el (rmail-quit-hook): New variable.
4142
4143 2000-03-01 Dave Love <fx@gnu.org>
4144
4145 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
4146
4147 * help.el (help-xref-button): Add help-echo arg.
4148 (describe-function-1, describe-variable, help-make-xrefs): Use it.
4149
4150 * faces.el (list-faces-display): Supply help-echo with
4151 help-make-xrefs.
4152
4153 * facemenu.el (list-text-properties-at): Set help-xref-stack to
4154 nil.
4155
4156 2000-03-01 Gerd Moellmann <gerd@gnu.org>
4157
4158 * image.el (defimage): Look for image files in load-path.
4159
4160 * frame.el (busy-cursor-delay-seconds): Change type to
4161 `number'.
4162
4163 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
4164
4165 * recentf.el (recentf): Added version tag to the defgroup of
4166 recentf.
4167
4168 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
4169
4170 * recentf.el (recentf-cleanup): Changed to remove excluded file
4171 too.
4172 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
4173 action to select/unselect a file.
4174 (recentf-edit-list): Code cleanup and improvement.
4175 (recentf-open-more-files-action): `recentf-open-more-files' button
4176 widget action to open a file.
4177 (recentf-open-more-files): No more use standard completion but
4178 widgets.
4179 (recentf-more-collection): Deleted.
4180 (recentf-more-history): Deleted.
4181 (recentf-setup-more-completion): Deleted.
4182
4183 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
4184
4185 * recentf.el (recentf-mode): No more needs that Emacs is running
4186 under a window-system.
4187
4188 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
4189
4190 * recentf.el (recentf-edit-list): New command to edit the recent
4191 list which allow the user to remove files.
4192 (recentf-edit-selected-items): New global variable, used by
4193 `recentf-edit-list' to hold the list of files to be removed from
4194 the recent list.
4195 (recentf-make-menu-items): Updated to display a "Edit list..."
4196 menu item. Minor code cleanup.
4197
4198 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
4199
4200 * recentf.el (recentf-open-more-files): New command to open files
4201 that are not displayed in the menu.
4202 (recentf-more-collection): New global variable holding the set of
4203 permissible completions used by `recentf-open-more-files'.
4204 (recentf-more-history): New global variable holding the history list
4205 used by `recentf-open-more-files' completion.
4206 (recentf-setup-more-completion): New function to setup completion for
4207 `recentf-open-more-files'.
4208 (recentf-make-menu-items): Updated to display a "More..." menu item.
4209
4210 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
4211
4212 * recentf.el (recentf-menu-action): Doc fixed.
4213
4214 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
4215
4216 * recentf.el (recentf-menu-filter): Doc updated.
4217 (recentf-update-menu-hook): Allow menu filters to force menu update.
4218 (recentf-make-menu-items): New menu filter handling.
4219 (recentf-make-menu-item): New helper function.
4220 (recentf-menu-elements): New menu handling function.
4221 (recentf-sort-ascending): Updated to new menu filter handling.
4222 (recentf-sort-descending): Updated to new menu filter handling.
4223 (recentf-sort-basenames-ascending): New menu filter function.
4224 (recentf-sort-basenames-descending): New menu filter function.
4225 (recentf-show-basenames): New menu filter function.
4226 (recentf-show-basenames-ascending): New menu filter function.
4227 (recentf-show-basenames-descending): New menu filter function.
4228
4229 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4230
4231 * diary-lib.el (list-diary-entries): Don't try to go forward at
4232 the end of the buffer.
4233
4234 2000-02-29 Kenichi Handa <handa@etl.go.jp>
4235
4236 * international/mule-diag.el (list-character-sets): Completely
4237 rewritten.
4238 (sort-listed-character-sets): New function.
4239 (list-character-sets-1): Completely rewritten.
4240 (list-character-sets-2): New function.
4241 (non-iso-charset-alist): New variable.
4242 (decode-codepage-char): New function.
4243 (charset-history): New variable.
4244 (read-charset) (list-block-of-chars)
4245 (list-iso-charset-chars)
4246 (list-non-iso-charset-chars)
4247 (list-charset-chars): New functions.
4248 (mule-diag): Call list-character-sets-2, not
4249 list-character-sets-2.
4250 (dump-charsets): Likewise.
4251
4252 2000-02-29 Gerd Moellmann <gerd@gnu.org>
4253
4254 * dired-x.el (dired-filename-at-point): Add `@' to valid
4255 file name characters.
4256 (dired-filename-at-point): Handle ange-ftp file names.
4257
4258 * frame.el (frame-notice-user-settings): Use assq-delete-all
4259 instead of assoc-delete-all.
4260 (frame-notice-user-settings): Ditto.
4261
4262 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
4263 Don't copy alist.
4264
4265 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
4266
4267 * calculator.el (calculator-use-menu): New option.
4268 (calculator-initial-bindings): Changed some bindings to work as
4269 macros.
4270 (calculator-forced-input): Removed.
4271 (calculator-restart-other-mode): New variable.
4272 (calculator-mode-map): Set up menu.
4273
4274 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
4275
4276 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
4277 tags.
4278
4279 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
4280
4281 * viper-cmd.el (viper-envelop-ESC-key): added the option to
4282 translate all ESC key sequences.
4283 (viper-goto-mark-subr): restore markers for files for which
4284 they were saved.
4285 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
4286 * viper-util.el (viper-set-replace-overlay-glyphs,
4287 viper-set-replace-overlay): always check if the replacement
4288 overlay is live.
4289 * viper.el (viper-vi-state-mode-list): added major modes.
4290 * ediff-wind.el: minor comment changes.
4291 * ediff.el: copyright notice date fix.
4292
4293 2000-02-27 Jason Rumney <jasonr@gnu.org>
4294
4295 * faces.el (face-font-family-alternatives): Add arial to helv.
4296 (mode-line, header-line, tool-bar): Same default as x for w32.
4297 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
4298 face-font-family-alternatives from working.
4299 * term/w32-win.el (mouse-set-font): Do not build fontset from
4300 chosen font.
4301
4302 2000-02-25 Sam Steingold <sds@goems.com>
4303
4304 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
4305 properly.
4306
4307 2000-02-25 Richard M. Stallman <rms@gnu.org>
4308
4309 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
4310
4311 2000-02-25 Gerd Moellmann <gerd@gnu.org>
4312
4313 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
4314 writable.
4315
4316 * frame.el (busy-cursor-delay-seconds): New option.
4317
4318 2000-02-24 Gerd Moellmann <gerd@gnu.org>
4319
4320 * frame.el (show-cursor-in-non-selected-windows): New option.
4321
4322 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
4323
4324 * diary-lib.el (include-other-diary-files): Undo the selective
4325 display in any included file and don't kill it.
4326
4327 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
4328
4329 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
4330 bar. Menu items converted to (menu-item format, help strings
4331 added.
4332 [downcase, upcase]: Don't enable on MS-DOS.
4333 [symlink, symlinks]: Don't show if make-symbolic-link is not
4334 bound.
4335 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
4336
4337 2000-02-23 Dave Love <fx@gnu.org>
4338
4339 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
4340 (backward-kill-word): Revert addition of * to interactive spec --
4341 it's a feature.
4342
4343 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
4344 (backward-kill-sentence, kill-sentence): Likewise.
4345
4346 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
4347 scratch buffer name.
4348 (gud-format-command): Use int-to-string in ?l case. Simplify
4349 slightly.
4350
4351 * term/w32-win.el (internal-face-interactive): Update prompt for
4352 new read-face-name.
4353
4354 * mail/footnote.el (footnote): Add :version to defgroup.
4355 (footnote-section-tag-regexp): Customize.
4356 (footnote-start-tag, footnote-end-tag): New option.
4357 (footnote-latin-regexp): New variable.
4358 (Footnote-latin): New function.
4359 (footnote-style-alist): Add element for latin style.
4360 (footnote-style): Moved.
4361 (Footnote-goto-footnote): Use eq to test arg.
4362
4363 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
4364
4365 * emacs-lisp/byte-opt.el: Change old backquote syntax.
4366 (byte-compile-trueconstp): Include keywords.
4367 (byte-optimize-quote, byte-optimize-lapcode): Use
4368 byte-compile-const-symbol-p.
4369 (byte-optimize-char-before): New optimization.
4370
4371 * emacs-lisp/bytecomp.el: Change old backquote syntax.
4372 (byte-compile-const-symbol-p): New function.
4373 (byte-compile-constp, byte-compile-out-toplevel)
4374 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
4375 Use it.
4376
4377 * subr.el (define-key-after): Default AFTER to t. Doc fix.
4378
4379 2000-02-23 Kenichi Handa <handa@etl.go.jp>
4380
4381 * international/encoded-kb.el: Be sure to update minor-mode-alist
4382 and minor-mode-map-alist.
4383 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
4384 codes SS2 and SS3 correctly.
4385 (encoded-kbd-self-insert-ccl): New function.
4386 (encoded-kbd-setup-keymap): New function.
4387 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
4388 by calling encoded-kbd-setup-keymap.
4389
4390 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
4391 characters.
4392 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
4393 locally.
4394
4395 2000-02-22 Dave Love <fx@gnu.org>
4396
4397 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
4398 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
4399 defvar.
4400 (lisp-mode-syntax-table): Set up for #|...|# comments.
4401 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
4402 classes. Match `defface'.
4403 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
4404 (eval-defun-1): Fix for defcustom.
4405 (lisp-indent-region): Doc fix.
4406
4407 * subr.el (when, unless, split-string): Doc fix.
4408 (read-passwd): Move call of clear-this-command-keys to the right
4409 place.
4410 (replace-regexps-in-string): New function.
4411
4412 2000-02-22 Gerd Moellmann <gerd@gnu.org>
4413
4414 * help.el (describe-variable): Set syntax table to
4415 emacs-lisp-mode-syntax-table when moving forward over the
4416 symbol's name.
4417
4418 2000-02-22 Dave Love <fx@gnu.org>
4419
4420 * xt-mouse.el: Doc fixes.
4421 (xterm-mouse-position-function): New function, replacing advice of
4422 mouse-position.
4423 (xterm-mouse-mode): Use it. Don't turn on under a window system.
4424
4425 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
4426
4427 2000-02-21 Gerd Moellmann <gerd@gnu.org>
4428
4429 * format.el (format-annotate-single-property-change): Handle
4430 properties.with dotted-list values.
4431 (format-proper-list-p): New function.
4432
4433 * enriched.el (enriched-face-ans): Handle '(foreground-color
4434 . COLOR) and (background-color . COLOR).
4435
4436 2000-02-20 Dave Love <fx@gnu.org>
4437
4438 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
4439 and assignments to it.
4440 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
4441 current local map.
4442 (make-flyspell-overlay): Use it.
4443 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
4444
4445 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
4446 (lm-get-header-re): Defun, not defsubst.
4447 (lm-get-package-name): Defun, not defsubst. Simplify.
4448 (lm-version): Doc fix. Simplify.
4449 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
4450 (lm-crack-address, lm-last-modified-date, lm-commentary)
4451 (lm-verify, lm-synopsis): Simplify.
4452 (lm-report-bug): Require emacsbug. Use compose-mail.
4453
4454 2000-02-20 Gerd Moellmann <gerd@gnu.org>
4455
4456 * dired.el (dired-mode): Call propertized-buffer-identification
4457 to set mode-line-buffer-identification to something having
4458 the right text properties.
4459
4460 * bindings.el (propertized-buffer-identification): New function.
4461
4462 2000-02-20 Dave Love <fx@gnu.org>
4463
4464 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
4465 check for t-mouse too.
4466
4467 * cus-start.el: Make echo-keystrokes `number'.
4468
4469 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
4470
4471 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
4472 Don't call ring-empty-p unless tags-location-ring is bound.
4473 From Noah Friedman <friedman@splode.com>.
4474
4475 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
4476
4477 * progmodes/hideshow.el (hs-flag-region): No longer use
4478 `intangible' overlay property.
4479
4480 (hs-toggle-hiding): New command.
4481 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
4482
4483 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
4484 Fix omission bug: Run `hs-minor-mode-hook' for both activation
4485 and deactivation.
4486
4487 2000-02-18 Gerd Moellmann <gerd@gnu.org>
4488
4489 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
4490
4491 2000-02-17 Gerd Moellmann <gerd@gnu.org>
4492
4493 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
4494
4495 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
4496 of `*' to handle `(* ... *)' comments.
4497
4498 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
4499
4500 * faces.el (list-faces-display): Use display-mouse-p instead of
4501 window-system.
4502
4503 * menu-bar.el (global-map): Menu-bar items converted to the new
4504 format (menu-item..., rearranged for better CUA compliance, and
4505 their names changed for better clarity. Help strings added.
4506
4507 * international/mule-cmds.el (mule-menu-keymap)
4508 (describe-language-environment-map, set-coding-system-map)
4509 (setup-language-environment-map): Convert to new (menu-item...
4510 form, add help strings. Change names of menu items for better
4511 clarity. "Mule" menu-bar item removed (it's now in the "Options"
4512 submenu).
4513
4514 2000-02-17 Gerd Moellmann <gerd@gnu.org>
4515
4516 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
4517 within the code.
4518
4519 2000-02-16 Dave Love <fx@gnu.org>
4520
4521 * faces.el: Don't require custom. Add more specific :groups to
4522 various deffaces.
4523 (set-face-attribute): Purecopy args.
4524 (read-face-name): Default to name at point and use it in prompt.
4525 Remove colon from arg in all callers.
4526 (list-faces-display): Hyperlink to face descriptions and customize
4527 buffers.
4528
4529 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
4530
4531 * wid-edit.el (widget-match-inline): An atom never matches a
4532 list.
4533
4534 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4535
4536 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
4537 at ':' characters by call to split-string.
4538
4539 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4540
4541 * textmodes/bibtex.el: Added RCS version identification.
4542
4543 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4544
4545 * textmodes/bibtex.el: Some temporary comments removed.
4546 (bibtex-field-name, bibtex-entry-type): Made the relationship
4547 explicit.
4548 (bibtex-field-const): Allow capital letters.
4549 (bibtex-start-of-string): Deleted because unused.
4550
4551 * textmodes/bibtex.el: Unified some nomenclature. We no longer
4552 use the term 'reference' to describe a bibtex entry as a whole.
4553 Further, reference keys are no longer called 'labels'.
4554 (bibtex-keys): Renamed to bibtex-reference-keys.
4555 (bibtex-reformat-previous-labels): Renamed to
4556 bibtex-reformat-previous-reference-keys.
4557 (bibtex-reference-type): Renamed to bibtex-entry-type.
4558 (bibtex-reference-head): Renamed to bibtex-entry-head.
4559 (bibtex-reference-maybe-empty-head): Renamed to
4560 bibtex-entry-maybe-empty-head.
4561 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
4562 (bibtex-search-reference): Renamed to bibtex-search-entry.
4563 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
4564 bibtex-enclosing-entry-maybe-empty-head.
4565 (bibtex-entry-field-alist, bibtex-entry-head,
4566 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
4567 bibtex-map-entries, bibtex-search-entry,
4568 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
4569 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
4570 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
4571 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
4572 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
4573 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
4574 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
4575
4576 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4577
4578 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
4579 comment.
4580 (bibtex-format-field-delimiters): New function, functionality
4581 extracted from bibtex-format-entry.
4582 (bibtex-autokey-get-yearfield-digits): New function, functionality
4583 extracted from bibtex-autokey-get-yearfield.
4584
4585 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
4586 entries in order to avoid stack overflow in the regexp matcher if
4587 field contents become large.
4588 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
4589 bibtex-field-string-part-not-braced,
4590 bibtex-field-string-part-no-inner-braces,
4591 bibtex-field-string-part-1-inner-brace,
4592 bibtex-field-string-part-2-inner-braces,
4593 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
4594 bibtex-field-string-quoted, bibtex-field-string,
4595 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
4596 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
4597 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
4598 as parsing is now performed by the following functions.
4599 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
4600 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
4601 bibtex-parse-field-string, bibtex-search-forward-field-string,
4602 bibtex-parse-association, bibtex-field-name-for-parsing,
4603 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
4604 bibtex-search-forward-field, bibtex-search-backward-field,
4605 bibtex-start-of-field, bibtex-end-of-field,
4606 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
4607 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
4608 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
4609 bibtex-parse-string, bibtex-search-forward-string,
4610 bibtex-search-backward-string, bibtex-start-of-string,
4611 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
4612 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
4613 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
4614 entries. Instead of reporting the results of the parsing by
4615 match-beginning or match-end, these functions return data structures
4616 that hold the corresponding positions.
4617 (bibtex-enclosing-field): Changed to also report field boundaries by
4618 return values rather than by match-beginning or match-end. The
4619 following functions have been adapted to use the new parsing
4620 functions.
4621 (bibtex-skip-to-valid-entry, bibtex-search-reference,
4622 bibtex-enclosing-field, bibtex-format-entry,
4623 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
4624 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
4625 bibtex-print-help-message, bibtex-end-of-entry,
4626 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
4627 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
4628 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
4629 method for parsing.
4630 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
4631 bibtex-map-entries, bibtex-flash-head,
4632 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
4633 bibtex-autokey-change, bibtex-autokey-get-namefield,
4634 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
4635 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
4636 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
4637 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
4638 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
4639 order to make the new binding of case-fold-search immediately
4640 visible.
4641
4642 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4643
4644 * textmodes/bibtex.el: Copyright notice is up to date.
4645 Added constant 'bibtex-maintainer-salutation.
4646
4647 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
4648 than make-temp-name, use match-string-no-properties and eliminate
4649 a quadratic behavior when building bibtex-strings.
4650
4651 * bibtex.el (bibtex-reference-key): Accept string entries whose
4652 reference key contains upper case letters.
4653
4654 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4655
4656 * bibtex.el (bibtex-reference-head): Allow entries to start with
4657 a new line.
4658
4659 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4660
4661 * bibtex.el: Hiding of entry bodies is not longer provided by
4662 bibtex.el directly. Instead the hideshow package can be used.
4663 Added a special bibtex entry to hs-special-modes-alist.
4664 (bibtex-hs-forward-sexp): Added for hideshow.el.
4665
4666 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4667
4668 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
4669 at ':' characters by call to split-string.
4670
4671 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4672
4673 * textmodes/bibtex.el: Added RCS version identification.
4674
4675 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4676
4677 * textmodes/bibtex.el: Some temporary comments removed.
4678 (bibtex-field-name, bibtex-entry-type): Made the relationship
4679 explicit.
4680 (bibtex-field-const): Allow capital letters.
4681 (bibtex-start-of-string): Deleted because unused.
4682
4683 * textmodes/bibtex.el: Unified some nomenclature. We no longer
4684 use the term 'reference' to describe a bibtex entry as a whole.
4685 Further, reference keys are no longer called 'labels'.
4686 (bibtex-keys): Renamed to bibtex-reference-keys.
4687 (bibtex-reformat-previous-labels): Renamed to
4688 bibtex-reformat-previous-reference-keys.
4689 (bibtex-reference-type): Renamed to bibtex-entry-type.
4690 (bibtex-reference-head): Renamed to bibtex-entry-head.
4691 (bibtex-reference-maybe-empty-head): Renamed to
4692 bibtex-entry-maybe-empty-head.
4693 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
4694 (bibtex-search-reference): Renamed to bibtex-search-entry.
4695 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
4696 bibtex-enclosing-entry-maybe-empty-head.
4697 (bibtex-entry-field-alist, bibtex-entry-head,
4698 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
4699 bibtex-map-entries, bibtex-search-entry,
4700 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
4701 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
4702 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
4703 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
4704 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
4705 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
4706 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
4707
4708 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4709
4710 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
4711 comment.
4712 (bibtex-format-field-delimiters): New function, functionality
4713 extracted from bibtex-format-entry.
4714 (bibtex-autokey-get-yearfield-digits): New function, functionality
4715 extracted from bibtex-autokey-get-yearfield.
4716
4717 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
4718 entries in order to avoid stack overflow in the regexp matcher if
4719 field contents become large.
4720 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
4721 bibtex-field-string-part-not-braced,
4722 bibtex-field-string-part-no-inner-braces,
4723 bibtex-field-string-part-1-inner-brace,
4724 bibtex-field-string-part-2-inner-braces,
4725 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
4726 bibtex-field-string-quoted, bibtex-field-string,
4727 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
4728 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
4729 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
4730 as parsing is now performed by the following functions.
4731 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
4732 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
4733 bibtex-parse-field-string, bibtex-search-forward-field-string,
4734 bibtex-parse-association, bibtex-field-name-for-parsing,
4735 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
4736 bibtex-search-forward-field, bibtex-search-backward-field,
4737 bibtex-start-of-field, bibtex-end-of-field,
4738 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
4739 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
4740 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
4741 bibtex-parse-string, bibtex-search-forward-string,
4742 bibtex-search-backward-string, bibtex-start-of-string,
4743 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
4744 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
4745 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
4746 entries. Instead of reporting the results of the parsing by
4747 match-beginning or match-end, these functions return data structures
4748 that hold the corresponding positions.
4749 (bibtex-enclosing-field): Changed to also report field boundaries by
4750 return values rather than by match-beginning or match-end. The
4751 following functions have been adapted to use the new parsing
4752 functions.
4753 (bibtex-skip-to-valid-entry, bibtex-search-reference,
4754 bibtex-enclosing-field, bibtex-format-entry,
4755 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
4756 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
4757 bibtex-print-help-message, bibtex-end-of-entry,
4758 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
4759 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
4760 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
4761 method for parsing.
4762 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
4763 bibtex-map-entries, bibtex-flash-head,
4764 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
4765 bibtex-autokey-change, bibtex-autokey-get-namefield,
4766 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
4767 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
4768 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
4769 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
4770 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
4771 order to make the new binding of case-fold-search immediately
4772 visible.
4773
4774 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4775
4776 * textmodes/bibtex.el: Copyright notice is up to date.
4777 Added constant 'bibtex-maintainer-salutation.
4778
4779 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
4780 than make-temp-name, use match-string-no-properties and eliminate
4781 a quadratic behavior when building bibtex-strings.
4782
4783 * bibtex.el (bibtex-reference-key): Accept string entries whose
4784 reference key contains upper case letters.
4785
4786 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4787
4788 * bibtex.el (bibtex-reference-head): Allow entries to start with
4789 a new line.
4790
4791 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4792
4793 * bibtex.el: Hiding of entry bodies is not longer provided by
4794 bibtex.el directly. Instead the hideshow package can be used.
4795 Added a special bibtex entry to hs-special-modes-alist.
4796 (bibtex-hs-forward-sexp): Added for hideshow.el.
4797
4798 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
4799
4800 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
4801 proceedings entry type (for cross referencing). Thanks to Wagner
4802 Toledo Correa for the suggestion.
4803
4804 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
4805
4806 2000-02-14 Kenichi Handa <handa@etl.go.jp>
4807
4808 * international/characters.el: Setup case table for Vietnamese.
4809
4810 2000-02-12 Gerd Moellmann <gerd@gnu.org>
4811
4812 * uniquify.el (toplevel): Require CL at compile time.
4813 (uniquify-push): Removed.
4814
4815 * shadowfile.el (shadow-when): Removed.
4816
4817 * tempo.el (tempo-dolist, tempo-mapc): Removed.
4818 (tempo-process-and-insert-string): Use dolist instead of
4819 tempo-dolist.
4820
4821 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
4822 regexp for paragraph-start.
4823
4824 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
4825 commas as well.
4826
4827 2000-02-10 Dave Love <fx@gnu.org>
4828
4829 * wid-edit.el: (widgets) [defgroup]: Remove url link.
4830 (widget-color-choice-list, widget-color-history, widget-mouse-help):
4831 Deleted.
4832 (widget-specify-field, widget-specify-button): Don't use
4833 widget-mouse-help as help-echo property.
4834 (default): Use #'ignore for :validate and :mouse-down-action.
4835 (checkbox): Add help-echo.
4836 (widget-sexp-validate): Rewritten to clarify error messages.
4837 (character): Use char-valid-p in :match function.
4838 (widget-color-complete): Use facemenu-color-alist.
4839 (widget-color-action): Use facemenu-read-color.
4840
4841 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
4842 set up `caar' &c that we now have.
4843
4844 2000-02-09 Ray Blaak <blaak@gnu.org>
4845
4846 * delphi.el: Make resourcestring a declaration region, like const
4847 and var.
4848
4849 2000-02-09 Dave Love <fx@gnu.org>
4850
4851 * bindings.el (mode-line-input-method-map): New variable.
4852 (mode-line-mule-info): Use it; fix last change.
4853 (mode-line-mode-menu): Move definition.
4854 (mode-line-mouse-sensitive-p): Deleted.
4855 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
4856 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
4857 level.
4858
4859 * startup.el (command-line-1): Don't call
4860 make-mode-line-mouse-sensitive.
4861
4862 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
4863
4864 * mail/rmail.el (rmail-retry-failure): Use
4865 rmail-beginning-of-message before rmail-toggle-header, because the
4866 former toggles headers.
4867
4868 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
4869
4870 * diff-mode.el (diff-kill-junk): New interactive function.
4871 (diff-reverse-direction): Use delete-and-extract-region.
4872 (diff-post-command-hook): Restrict the area so that the hook also works
4873 outside of any diff hunk. This is necessary for the minor-mode.
4874 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
4875 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
4876
4877 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
4878 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
4879 so that it can be used more easily in <foo>-mode-hook. Also make sure
4880 to avoid duplicate entries.
4881 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
4882 (font-lock-remove-keywords): Just as was done for `add', allow it to
4883 work even if font-lock-mode is nil. Also make sure we don't modify
4884 any pre-existing list by forcing a copy-sequence. Finally rename
4885 `major-mode' to `mode'.
4886 (font-lock-fontify-syntactic-anchored-keywords)
4887 (font-lock-fontify-anchored-keywords)
4888 (font-lock-fontify-keywords-region): Use line-end-position.
4889 Don't make `font-lock-multiline' local (it's now done in
4890 font-lock-set-defaults).
4891 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
4892 move the `font-lock-fontified' creation to inside the `unless'.
4893
4894 2000-02-06 Andrew Innes <andrewi@gnu.org>
4895
4896 * term/w32-win.el (x-handle-args): Comment out call to message,
4897 which occurs before window system is initialized.
4898
4899 * makefile.nt: Add support for recompiling lisp code.
4900
4901 2000-02-04 Dave Love <fx@gnu.org>
4902
4903 * bindings.el (mode-line-mule-info): Fix/extend last change.
4904
4905 * completion.el: Replace completion-dolist with dolist.
4906
4907 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
4908 dotimes.
4909
4910 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
4911
4912 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
4913 environment names before they go into the section regexp.
4914
4915 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
4916 char class in regexp.
4917
4918 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
4919 `case-fold-search' to nil.
4920
4921 * progmodes/idlwave.el (idlwave-template): Respect
4922 `idlwave-abbrev-change-case'.
4923 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
4924 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
4925 idlwave-while): respect `idlwave-reserved-word-upcase'.
4926 (idlwave-rw-case): New function.
4927 (idlwave-statement-match): Fixed problem with assignment regexp.
4928 (idlwave-font-lock-keywords): Improved regexp for keyword
4929 parameters.
4930 (idlwave-surround): New argument LENGTH to support padding of
4931 operators longer than 1 char.
4932
4933 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
4934 idlwave-shell-expression-overlay. Implemented printing of
4935 expressions on higher levels of the calling stack.
4936 (idlwave-shell-display-level-in-calling-stack): Restore stack
4937 level.
4938 (idlwave-retrieve-expression-from-level): New function.
4939 (idlwave-shell-last-calling-stack): Variable removed.
4940 (idlwave-shell-reset): Argument action reversed (`visible' to
4941 `hidden'). Also remove stop-line overlay.
4942 (idlwave-shell-calling-stack-routine): New variable.
4943 (idlwave-shell-parse-stack-and-display): Messages now display
4944 negative level numbers.
4945 (idlwave-shell-mode): Set `modeline-format'.
4946 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
4947 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
4948 21.
4949 (idlwave-shell-print-expression-function): New option.
4950
4951 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
4952 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
4953 `tool-bar' instead of `toolbar'.
4954
4955 2000-02-02 Dave Love <fx@gnu.org>
4956
4957 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
4958 emacs-lisp-mode-hook. Don't check for defalias being defined.
4959
4960 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
4961 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
4962 the new builtins directly.
4963
4964 * whitespace.el (whitespace): Add :version to defgroup.
4965
4966 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
4967 Doc fix.
4968
4969 * thingatpt.el (sexp-at-point, symbol-at-point)
4970 (number-at-point, list-at-point): Add autoload cookie.
4971
4972 * recentf.el (recentf): Add :version to defgroup.
4973
4974 * quickurl.el (quickurl): Add :version to defgroup.
4975
4976 * elide-head.el (elide-head): Use point-marker more.
4977
4978 * bs.el (bs): Add :version to defgroup.
4979
4980 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
4981
4982 * progmodes/delphi.el (delphi): Add :version to defgroup.
4983
4984 2000-02-02 Gerd Moellmann <gerd@gnu.org>
4985
4986 * ange-ftp.el (ange-ftp-write-region): Handle case that
4987 succeeding process operation sets a different coding system.
4988
4989 * calculator.el: New file.
4990
4991 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
4992
4993 * frame.el (frames-on-display-list, framep-on-display): New
4994 functions.
4995 (display-mouse-p, display-popup-menus-p, display-graphic-p)
4996 (display-selections-p, display-screens, display-pixel-width)
4997 (display-pixel-height, display-mm-width, display-mm-height)
4998 (display-backing-store, display-save-under, display-planes)
4999 (display-color-cells, display-visual-class): New functions.
5000
5001 * term/tty-colors.el (tty-color-gray-shades): New function.
5002
5003 * faces.el (display-color-p): Use framep-on-display.
5004 (display-grayscale-p): New function.
5005
5006 2000-01-31 Dave Love <fx@gnu.org>
5007
5008 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
5009 (create-fontset-from-x-resource): Don't concat integers.
5010
5011 2000-01-31 Inge Frick <inge@nada.kth.se>
5012
5013 * view.el: Some changes in documentation. Removed some trailing
5014 whitespace. Changed some parameter names to agree with
5015 documentation.
5016 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
5017 window is not deleted. Modifies change 1998-04-26.
5018
5019 2000-01-31 Gerd Moellmann <gerd@gnu.org>
5020
5021 * windmove.el: New file.
5022
5023 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
5024 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
5025 progmodes/ebnf-yac.el: Update copyright and license info.
5026
5027 * jit-lock.el (jit-lock-function): Widen before calculating end
5028 position.
5029 (jit-lock-stealth-chunk-start): Rewritten.
5030
5031 * info.el (Info-title-face-alist): Removed.
5032 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
5033 faces.
5034 (Info-fontify-node): Use these faces.
5035
5036 2000-01-30 Gerd Moellmann <gerd@gnu.org>
5037
5038 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
5039 (cl-macro-list1): Recognize `&allow-other-keys' instead of
5040 `&allow-other-keywords'.
5041
5042 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
5043 the list of directories scanned heuristically.
5044
5045 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
5046 exist.
5047
5048 2000-01-30 Jason Rumney <jasonr@gnu.org>
5049
5050 * w32-fns.el: Define w32-tty-standard-colors.
5051
5052 * startup.el (command-line): Use w32-tty-standard-colors when in
5053 w32 console mode.
5054
5055 2000-01-30 Dave Love <fx@gnu.org>
5056
5057 * jka-compr.el (jka-compr-load): Fix up load-history.
5058
5059 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
5060
5061 * emacs-lisp/cl-macs.el: Revert previous change.
5062
5063 2000-01-29 Dave Love <fx@gnu.org>
5064
5065 * facemenu.el: Purecopy various strings.
5066
5067 * timezone.el (timezone-fix-time): Window against 69 for two-digit
5068 years. Deal with three-digit years.
5069
5070 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
5071 defconst, purecopy.
5072 (help-back-label): Purecopy it.
5073
5074 2000-01-18 Gerd Moellmann <gerd@gnu.org>
5075
5076 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
5077 variable. If non-nil, order the buffer list according to the
5078 currently selected frame.
5079 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
5080 non-nil, pass the selected frame to function buffer-list.
5081
5082 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5083
5084 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
5085
5086 2000-01-28 Dave Love <fx@gnu.org>
5087
5088 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
5089
5090 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
5091 Don't use lisp-indent-hook property.
5092 (cl-abs): Remove.
5093
5094 * subr.el: Move out indent and edebug specs for when and unless.
5095
5096 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
5097 when, unless.
5098
5099 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
5100 unless, when.
5101
5102 2000-01-28 Gerd Moellmann <gerd@gnu.org>
5103
5104 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
5105 `collecting' as synonym for `collect'.
5106
5107 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
5108 for the case it contains spaces.
5109
5110 * simple.el (what-cursor-position): Change formatting of
5111 messages.
5112
5113 * frame.el (delete-other-frames): New function.
5114 (toplevel): Bind it to C-x 5 1.
5115
5116 * sort.el (sort-numeric-base): New option.
5117 (sort-numeric-fields): If number starts with `0' or `0[xX[',
5118 interpret it as octal or hexadecimal. Use sort-numeric-base
5119 as default base.
5120
5121 * progmodes/glasses.el: New file.
5122
5123 2000-01-27 Gerd Moellmann <gerd@gnu.org>
5124
5125 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
5126 userids differently.
5127
5128 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
5129 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
5130 progmodes/ebnf-yac.el: New files.
5131
5132 2000-01-26 Dave Love <fx@gnu.org>
5133
5134 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
5135 on a function with an empty body. [From Eric Ludlam.]
5136
5137 2000-01-25 Andre Spiegel <spiegel@gnu.org>
5138
5139 * vc.el (vc-version-diff): Make sure file name is expanded.
5140
5141 2000-01-25 Gerd Moellmann <gerd@gnu.org>
5142
5143 * scroll-bar.el (scroll-bar-timer): Variable removed.
5144 (scroll-bar-toolkit-scroll): Don't use a timer.
5145
5146 2000-01-25 Kenichi Handa <handa@etl.go.jp>
5147
5148 * language/thai-util.el (thai-composition-function): Delete
5149 superfluous `a'.
5150
5151 2000-01-24 Dave Love <fx@gnu.org>
5152
5153 * fortran.el (fortran-mode): Use beginning-of-defun-function,
5154 end-of-defun-function.
5155
5156 * font-lock.el (turn-on-font-lock): Don't depend on window-system
5157 &c.
5158
5159 2000-01-22 Jason Rumney <jasonr@gnu.org>
5160
5161 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
5162 conflicts with new face support.
5163
5164 2000-01-22 Richard M. Stallman <rms@gnu.org>
5165
5166 * replace.el (query-replace): Rename last arg to DELIMITED.
5167 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
5168 (query-replace-regexp): Likewise.
5169
5170 2000-01-20 Richard M. Stallman <rms@gnu.org>
5171
5172 * subr.el (with-syntax-table): Use make-symbol, not gensym.
5173
5174 * emacs-lisp/lisp.el (beginning-of-defun-function):
5175 Variable renamed from beginning-of-defun.
5176 Do not call make-variable-buffer-local.
5177 (beginning-of-defun-raw): Use new variable name; doc fix.
5178 (beginning-of-defun): Doc fix.
5179 (end-of-defun-function): Variable renamed from end-of-defun.
5180 Do not call make-variable-buffer-local.
5181 (end-of-defun): Use new variable name; doc fix.
5182
5183 * subr.el (dolist, dotimes): Copied from cl-macs.el
5184 and made to work.
5185
5186 * mail/undigest.el (rmail-digest-end-regexps):
5187 Variable replaces rmail-digest-end-regexp.
5188 Allows multiple regexps for detecting the end line.
5189 (undigestify-rmail-message): Corresponding changes.
5190
5191 2000-01-19 Dave Love <fx@gnu.org>
5192
5193 * files.el (user-init-file): Don't declare here -- is primitive.
5194
5195 * startup.el (command-line): Check for compiled user-init-file and
5196 set to uncompiled version if necessary.
5197
5198 2000-01-18 Gerd Moellmann <gerd@gnu.org>
5199
5200 * mail/undigest.el (rmail-digest-end-regexp): New user option.
5201 (undigestify-rmail-message): Use it.
5202
5203 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
5204
5205 2000-01-17 Gerd Moellmann <gerd@gnu.org>
5206
5207 * tmm.el (tmm-goto-completions): Adapt to prompt being part
5208 of mini-buffer.
5209
5210 2000-01-14 Gerd Moellmann <gerd@gnu.org>
5211
5212 * emacs-lisp/copyright.el (copyright-update): Removed the
5213 requirement for a trailing space from `copyright-regexp', to
5214 support copyrights with owner specified on a separate line..
5215
5216 * align.el: New file.
5217
5218 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
5219
5220 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
5221
5222 2000-01-13 Dave Love <fx@gnu.org>
5223
5224 * ph.el: Removed. (Obsoleted by EUDC.)
5225
5226 2000-01-13 Gerd Moellmann <gerd@gnu.org>
5227
5228 * net/eudc.el (toplevel): Remove autoloaded code installing
5229 menu with easymenu, because that causes build problems.
5230
5231 * frame.el (frame-notice-user-settings): New variable.
5232 (frame-notice-user-settings): Don't modify frame parameters
5233 if called a second time.
5234
5235 2000-01-13 Richard M. Stallman <rms@gnu.org>
5236
5237 * frame.el (frame-notice-user-settings):
5238 Notice default-frame-parameters even for non-window frames.
5239
5240 2000-01-13 Gerd Moellmann <gerd@gnu.org>
5241
5242 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
5243 for Emacs.
5244 (eudc-bob-can-display-inline-images): Extend for Emacs.
5245 (eudc-bob-toggle-inline-display): Ditto.
5246 (eudc-bob-display-jpeg): Ditto.
5247
5248 2000-01-12 Gerd Moellmann <gerd@gnu.org>
5249
5250 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
5251 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
5252 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
5253
5254 * add-log.el (add-change-log-entry): Fix error trying an `(insert
5255 nil)'.
5256
5257 * subdirs.el: Add `net' directory.
5258
5259 * net: New directory.
5260
5261 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
5262 eval-last-sexp. Don't bind debug-on-error here.
5263 (eval-last-sexp): New function. Bind debug-on-error if
5264 eval-expression-debug-on-error is non-nil.
5265 (eval-defun-2, eval-defun): Likewise.
5266
5267 * simple.el (eval-expression): Don't bind debug-on-error if
5268 eval-expression-debug-on-error is nil. Detect changed
5269 debug-on-error, and propagate new value to global binding, if
5270 eval-expression-debug-on-error is non-nil,
5271 (eval-expression-debug-on-error): Change doc string.
5272
5273 2000-01-11 Richard M. Stallman <rms@gnu.org>
5274
5275 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
5276
5277 * emacs-lisp/lisp-mode.el (with-syntax-table):
5278 Set up lisp-indent-function property.
5279
5280 * subr.el (with-syntax-table): Moved from simple.el.
5281
5282 * simple.el (with-syntax-table): Moved to subr.el.
5283
5284 2000-01-11 Gerd Moellmann <gerd@gnu.org>
5285
5286 * tmm.el (tmm-shortcut): Delete region after prompt instead
5287 of erasing buffer.
5288
5289 * textmodes/fill.el (fill-common-string-prefix): New function.
5290 (fill-context-prefix): Use the longest common prefix of first
5291 and second line fill prefix, if there is one.
5292
5293 2000-01-11 Richard M. Stallman <rms@gnu.org>
5294
5295 * array.el (array-mode): Don't use make-variable-buffer-local.
5296 Use make-local-variable for `truncate-lines'.
5297
5298 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
5299
5300 * add-log.el (add-log-current-defun): Handle user-defined
5301 add-log-current-function returning nil,
5302
5303 * add-log.el (add-change-log-entry): Insert version number
5304 if having found a current function
5305
5306 * add-log.el (add-log-current-defun): Call
5307 `add-log-current-defun-function'. Try matches at level 0 and
5308 level 1. Strip whitespace from defun found.
5309
5310 2000-01-10 John Wiegley <johnw@gnu.org>
5311
5312 * allout.el (isearch-done/outline-provisions): Added `edit'
5313 argument to correspond with the current definition of
5314 `isearch-done'.
5315
5316 2000-01-10 Dave Love <fx@gnu.org>
5317
5318 * elide-head.el (elide-head): Use point-marker, not point.
5319
5320 2000-01-10 Gerd Moellmann <gerd@gnu.org>
5321
5322 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
5323 before and after the year 2000.
5324
5325 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
5326 Add ispell- prefix.
5327
5328 2000-01-10 Ken Stevens <k.stevens@ieee.org>
5329
5330 * ispell.el: Only define dictionaries in menus when they exist.
5331 (version18p): New variable.
5332 (version20p): New variable.
5333 (xemacsp): New variable.
5334 (ispell-choices-win-default-height): Fix for XEmacs visibility.
5335 (ispell-dictionary-alist1): Added Brasileiro dictionary.
5336 (ispell-dictionary-alist6): Russian command lines no longer accept
5337 run-together words.
5338 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
5339 (ispell-dictionary-alist): Add koi8-r to customize definition.
5340 (check-ispell-version): Added documentation string. Returns
5341 library path when called non-interactively.
5342 (ispell-menu-map-needed): Uses new variables.
5343 (ispell-library-path): New variable.
5344 (ispell-decode-string): XEmacs fix for bogus variable bindings.
5345 (ispell-word): Improved documentation string. Test for valid
5346 character mappings. Correctly check typed in word changes that can
5347 result in single words split into multiple words. Returns
5348 replacement word.
5349 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
5350 replace in recursive query replace mode. Help message for
5351 recursive edit mode.
5352 (ispell-show-choices): Protect against bad framepop bindings.
5353 (ispell-help): Fix to work with XEmacs.
5354 (ispell-highlight-spelling-error): Use new variables.
5355 (ispell-overlay-window): Fix to work with XEmacs.
5356 (ispell-parse-output): Passed and returns location information
5357 tracking spelling corrections. Doesn't recheck same word on
5358 current line.
5359 (ispell-init-process): Protect against bogus XEmacs variable binding.
5360 Fix call to single argument in sleep-for. Use new variables.
5361 (ispell-region): Passed and returns location information tracking
5362 spelling corrections. Doesn't check same word on current line.
5363 Improved documentation string. Doesn't resend a line already
5364 checked to the ispell process - fixes bug in LaTeX parsing.
5365 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
5366 (ispell-skip-region): No longer skips <TT> in SGML.
5367 (ispell-process-line): Tracks location information with spelling
5368 corrections. Added documentation string. Accounts for words
5369 already accepted on this line. Don't allow query-replace on line
5370 starting with math characters. Doesn't resend a line already sent
5371 to ispell process. Fixes alignment error bug.
5372
5373 2000-01-10 Richard M. Stallman <rms@gnu.org>
5374
5375 * dired-x.el (dired-guess-shell-alist-default):
5376 Suggest xloadimage, which is free, not xv, which isn't.
5377
5378 * ange-ftp.el (ange-ftp-file-name-nondirectory):
5379 Don't ever include the host name or user name in the value.
5380
5381 2000-01-09 Gerd Moellmann <gerd@gnu.org>
5382
5383 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
5384 of a real newline.
5385
5386 2000-01-09 Stephen Eglen <stephen@gnu.org>
5387
5388 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
5389 for .png files.
5390
5391 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
5392
5393 * cus-edit.el (custom-hook-convert-widget): Fix comment.
5394
5395 2000-01-09 Gerd Moellmann <gerd@gnu.org>
5396
5397 * progmodes/cperl-mode.el: Replace ^F with ^L.
5398
5399 * sendmail.el (toplevel): Provide `sendmail' when compiling
5400 before `require'ing rmail and mailalias to prevent infinite
5401 recursion.
5402
5403 2000-01-08 Dave Love <fx@gnu.org>
5404
5405 * emacs-lisp/backquote.el: Remove inappropriate customization
5406 (allowing custom.el to use backquote).
5407
5408 2000-01-07 Dave Love <fx@gnu.org>
5409
5410 * add-log.el (add-log-debugging): Deleted.
5411 (add-change-log-entry): Treat a backup FILE-NAME as its parent
5412 file. Remove debugging code.
5413 (change-log-get-method-definition, change-log-name): Add doc.
5414 (change-log-sortable-date-at): New function.
5415 (change-log-merge): New command.
5416
5417 * time.el (display-time-string-forms): Make the Mail string active.
5418 (display-time-update): Provide help-echo for load average.
5419
5420 * bindings.el (make-mode-line-mouse2-map): New function.
5421 (mode-line-modified): Use it and simplify.
5422 (mode-line-mule-info): Provide help-echo info.
5423 (minor-mode-alist): Activate the strings.
5424 (make-mode-line-mouse-sensitive): Simplify for
5425 mode-line-buffer-identification.
5426
5427 2000-01-07 Gerd Moellmann <gerd@gnu.org>
5428
5429 * play/pong.el: New file.
5430
5431 2000-01-06 Dave Love <fx@gnu.org>
5432
5433 * array.el: Assorted cleanups for compiler warnings, doc strings,
5434 `array-' prefix for symbols.
5435
5436 2000-01-05 Dave Love <fx@gnu.org>
5437
5438 * textmodes/outline.el (outline-mode-menu-bar-map): Add
5439 outline-headers-as-kill.
5440 (outline-mode): Define imenu-generic-expression.
5441 (outline-headers-as-kill): New command.
5442
5443 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
5444 from paragraph-start.
5445 (paragraph-indent-minor-mode): New command.
5446
5447 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
5448 M-C-e, M-C-h, C-j, C-xnd, TAB.
5449 (fortran-mode): Set beginning-of-defun, end-of-defun.
5450 (fortran-column-ruler): Simplify.
5451 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
5452 (fortran-with-subprogram-narrowing): Likewise.
5453 (fortran-indent-subprogram): Call mark-defun.
5454 (fortran-check-for-matching-do): Change narrowing.
5455
5456 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
5457 (cl-lucid-hash-tag): Delete.
5458 (cl-hash-table-p): Correct test for native table.
5459 (cl-hash-table-count): Use hash-table-count.
5460
5461 * browse-url.el (browse-url): Fix case of
5462 browse-url-browser-function being an alist.
5463
5464 2000-01-05 Carsten Dominik <cd@gnu.org>
5465
5466 * textmodes/reftex-vars.el (reftex-parse-file-extension)
5467 (reftex-index-phrase-file-extension): New options.
5468
5469 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
5470 Use new option `reftex-index-phrase-file-extension'.
5471
5472 * textmodes/reftex.el (reftex-access-parse-file): Use new option
5473 `reftex-parse-file-extension'.
5474
5475 2000-01-05 Dave Love <fx@gnu.org>
5476
5477 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
5478 (beginning-of-defun-raw): Use it.
5479 (end-of-defun): New variable.
5480 (end-of-defun): Use it.
5481 (check-parens): New command.
5482
5483 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
5484
5485 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
5486 (hs-show-block): Don't use `mapcar' when not accumulating.
5487
5488 Fix buglet in local variables initialization.
5489
5490 2000-01-05 Andreas Schwab <schwab@suse.de>
5491
5492 * hscroll.el (hscroll): Doc fix.
5493
5494 2000-01-05 Carsten Dominik <cd@gnu.org>
5495
5496 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
5497 idlw-toolbar.
5498
5499 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
5500 file idlw-rinfo.el.
5501 (idlwave-customize): load must read file idlw-shell.el.
5502 (idlwave-create-customize-menu): load must read file idlw-shell.el.
5503
5504 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
5505
5506 * progmodes/idlw-shell.el: Also provide idlwave-shell
5507 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
5508 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
5509
5510 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
5511 both reftex-dcr and reftex-vcr.
5512
5513 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
5514
5515 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5516
5517 * ps-print.el: PostScript code now is in separate files, doc fix.
5518 (ps-print-version): New version number (5.0.3).
5519 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
5520 local.
5521 (ps-spool-config): Initialization fix.
5522 (ps-print-prologue-1, ps-print-prologue-2)
5523 (ps-print-duplex-feature): PostScript code moved to separated file.
5524 (ps-background-image): Little code reformating.
5525 (ps-begin-file, ps-begin-job): Fix code.
5526 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
5527 (ps-prologue-file): New fun.
5528
5529 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5530
5531 * ps-vars.el: Eliminated.
5532
5533 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
5534 `;;;###autoload'.
5535
5536 * ps-print.el: ps-vars eliminated, doc fix.
5537 (ps-print-version): New version number (5.0.2).
5538 (ps-spool-config): Initialization fix.
5539 (ps-print-customize): New fun.
5540
5541 2000-01-04 Gerd Moellmann <gerd@gnu.org>
5542
5543 * autorevert.el (auto-revert-mode): Return value of
5544 auto-revert-mode.
5545
5546 2000-01-04 Dave Love <fx@gnu.org>
5547
5548 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
5549 menu items.
5550
5551 2000-01-03 Dave Love <fx@gnu.org>
5552
5553 * elide-head.el (elide-head) [defgroup]: Add :version.
5554
5555 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
5556 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
5557 `cl-hash-table-p', not `hash-table-p'.
5558 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
5559
5560 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5561
5562 * faces.el (face-read-integer, read-face-attribute)
5563 (color-defined-p, color-values): unspecified-{f,b}g are now
5564 strings.
5565
5566 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
5567
5568 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
5569 at comment end, and re-insert them after filling.
5570
5571 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5572
5573 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
5574 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
5575 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
5576
5577 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5578
5579 * term/x-win.el (xw-defined-colors): Call color-supported-p,
5580 the new name of face-color-supported-p.
5581
5582 * term/w32-win.el (xw-defined-colors): Likewise.
5583
5584 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5585
5586 * simple.el (completion-setup-function): Count completion-size
5587 from minibuffer-prompt-end, not from point-min.
5588
5589 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
5590
5591 * faces.el (read-face-attribute, defined-colors, color-defined-p):
5592 Pass the frame to tty-color-* functions.
5593 (display-color-p, frame-set-background-mode): Pass the frame to
5594 tty-display-color-p.
5595
5596 * term/tty-colors.el (tty-defined-color-alist): Renamed from
5597 tty-color-alist.
5598 (tty-color-alist, tty-modify-color-alist): New functions.
5599 (tty-color-define, tty-color-clear, tty-color-approximate)
5600 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
5601 an optional parameter FRAME.
5602
5603 2000-01-01 Gerd Moellmann <gerd@gnu.org>
5604
5605 * image.el (create-image, defimage): Don't assume image data is a
5606 string.
5607
5608 * image.el (defimage): Handle specifications containing :data
5609 instead of :file.
5610 (image-type-from-data): New function.
5611 (image-type-from-file-header): Use it.
5612 (create-image): Add parameter DATA-P.
5613
5614 1999-12-31 Richard M. Stallman <rms@gnu.org>
5615
5616 * echistory.el (electric-command-history): Call Command-history-setup
5617 and command-history-mode using their new conventions.
5618
5619 * chistory.el (Command-history-setup): Don't switch buffers. Take
5620 no args, and do not set major-mode, mode-name or the local map.
5621 (command-history-mode): New function, does some of those things
5622 Command-history-setup used to do.
5623 (list-command-history): Call command-history-mode, not
5624 Command-history-setup.
5625 (command-history): Renamed from command-history-mode.
5626
5627 1999-12-31 Richard M. Stallman <rms@gnu.org>
5628
5629 * arc-mode.el (archive-mode-map): Bind q to quit-window.
5630
5631 1999-12-31 William M. Perry <wmperry@aventail.com>
5632
5633 * image.el (defimage): Images with the `:data' keyword should be
5634 considered valid as well.
5635
5636 1999-12-31 Richard M. Stallman <rms@gnu.org>
5637
5638 * dired.el (dired-get-filename): Don't call file-name-absolute-p
5639 with FILE if FILE is nil.
5640
5641 1999-12-30 Richard M. Stallman <rms@gnu.org>
5642
5643 * simple.el (choose-completion-string): In minibuffer,
5644 do not delete the prompt string.
5645
5646 1999-12-30 Gerd Moellmann <gerd@gnu.org>
5647
5648 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
5649 assigned to mode-line-mode-menu because bindings.el is dumped with
5650 Emacs, and thus the lists used for menu-item definition will be
5651 copied to pure space. Emacs' menu code (parse_menu_item) doesn't
5652 like pure menu item definitions.
5653
5654 * expand.el (expand-abbrev-hook): Return t if expansion was
5655 done, nil otherwise.
5656
5657 1999-12-29 Richard M. Stallman <rms@gnu.org>
5658
5659 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
5660 (tar-quit): Function deleted.
5661
5662 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org>
5663
5664 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
5665 was used but not declared.
5666
5667 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
5668 hs-find-block-beginning): Add or modify docstrings.
5669
5670 (hs-isearch-show): Rewrite.
5671
5672 1999-12-28 Gerd Moellmann <gerd@gnu.org>
5673
5674 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
5675
5676 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
5677 space in front of a C-style comment end.
5678
5679 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
5680
5681 * startup.el (command-line-1): Make mode line mouse-sensitive for
5682 the MS-DOS version as well.
5683
5684 1999-12-28 Gerd Moellmann <gerd@gnu.org>
5685
5686 * bs.el: New file.
5687
5688 1999-12-28 Richard M. Stallman <rms@gnu.org>
5689
5690 * textmodes/ispell.el (ispell-process-line):
5691 Add local var line-offset to adjust for the change
5692 in positions within the line, due to previous replacements.
5693
5694 1999-12-27 Richard M. Stallman <rms@gnu.org>
5695
5696 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
5697 Doc fixes.
5698
5699 1999-12-27 Gerd Moellmann <gerd@gnu.org>
5700
5701 * add-log.el (change-log-version-number-regexp-list)
5702 (change-log-version-info-enabled): Change :version to 21.1.
5703 (toplevel): Require CL when compiling.
5704
5705 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
5706
5707 * add-log.el (change-log-version-number-regexp-list): Added tag
5708 :version 20.6
5709 (change-log-version-info-enabled): Added tag :version 20.6
5710
5711 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
5712
5713 * add-log.el: More general version number search with
5714 user-configurable regexp list.
5715 (change-log-version-number-regexp-list): New user variable.
5716 (change-log-find-version): Rewritten. Use user-configurable
5717 version numbering regexp list
5718 change-log-version-number-regexp-list.
5719 (change-log-find-version): Renamed to
5720 change-log-version-number-search
5721 (add-log-file-name-function): New.
5722 (change-log-search-vc-number): Added END paramaeter. Added doc
5723 string to function.
5724 (change-log-version-rcs): Renamed. Was
5725 change-log-search-vc-number.
5726
5727 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org>
5728
5729 * progmodes/compile.el (compilation-goto-locus): Delete hideshow
5730 overlays if they interfere.
5731 (compilation-find-file): Make intangible overlays tangible.
5732
5733 * progmodes/hideshow.el: Generally, synch w/ maintainer
5734 version 5.9.
5735
5736 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
5737
5738 (hs-minor-mode-hook): Don't initialize.
5739
5740 (hs-special-modes-alist): Rewrite value and docstring.
5741
5742 (hs-minor-mode-prefix): Delete unused var.
5743
5744 (hs-block-start-mdata-select): New var, buffer local.
5745
5746 (hs-headline): New var.
5747
5748 (hs-match-data, hs-forward-sexp): New funcs.
5749
5750 (hs-hide-comment-region): New func.
5751
5752 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
5753 hs-safety-is-job-n, hs-hide-initial-comment-block,
5754 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
5755 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
5756 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
5757 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
5758 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
5759
5760 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
5761 (hs-isearch-show-temporary): New funcs.
5762
5763 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
5764
5765 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
5766
5767 When constructing menu, use `[(shift button2)]' notation.
5768
5769 1999-12-25 Richard M. Stallman <rms@gnu.org>
5770
5771 * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
5772 (jka-compr-compression-info-list): Add new elt to each vector.
5773 (jka-compr-write-region): Don't compress the data if it is
5774 already compressed.
5775
5776 * jka-compr.el (jka-compr-really-do-compress): New variable.
5777 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
5778 if visiting.
5779 (jka-compr-write-region): Set jka-compr-really-do-compress
5780 if visiting. Test it when deciding to compress.
5781
5782 1999-12-22 Gerd Moellmann <gerd@gnu.org>
5783
5784 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
5785 with third argument t.
5786
5787 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
5788
5789 * antlr-mode.el: Version 1.2 is released.
5790 (antlr): This package has a web page.
5791
5792 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
5793
5794 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
5795 regions. Suggested by Dale Davis <Dale_Davis@securify.com>.
5796 (antlr-mode-map): New binding [C-c C-c].
5797 (antlr-mode-menu): New entries.
5798
5799 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
5800
5801 * antlr-mode.el: Respect Emacs conventions.
5802 ((require 'cl)): Only use during compilation.
5803 (antlr-language-for-option): New function to avoid using `find'.
5804 (antlr-mode): Use it.
5805 (antlr-with-syntax-table): Define new instead using XEmacs' one.
5806 (antlr-imenu-create-index-function): Change accordingly.
5807 (antlr-inside-rule-p): Ditto.
5808 (antlr-end-of-rule): Ditto.
5809 (antlr-end-of-body): Ditto.
5810 (antlr-beginning-of-rule): Ditto.
5811 (antlr-indent-line): Ditto.
5812
5813 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com>
5814
5815 * antlr-mode.el: Really use `antlr-tab-offset-alist'.
5816 (antlr-set-tabs): Don't use hard-coded values.
5817
5818 * antlr-mode.el: Minor navigation changes. Not perfect, but this
5819 won't be possible without a huge time penalty.
5820 (antlr-skip-exception-part): Be more specific.
5821 (antlr-skip-file-prelude): Don't skip action prelude of next rule.
5822 Renamed from `antlr-skip-grammar-header'.
5823 (antlr-next-rule): Change accordingly.
5824 (antlr-end-of-body): Ditto. Better error message.
5825 (antlr-beginning-of-body): Better error message.
5826 (antlr-imenu-create-index-function): Skip rule action prelude.
5827
5828 * antlr-mode.el: Minor syntax highlighting changes.
5829 (antlr-font-lock-default-face): Deletia.
5830 (antlr-font-lock-tokendef-face): Changed color.
5831 (antlr-font-lock-tokenref-face): Changed color.
5832 (antlr-font-lock-literal-face): Changed color.
5833 (antlr-font-lock-additional-keywords): Minor changes.
5834
5835 1999-12-20 Carsten Dominik <cd@gnu.org>
5836
5837 * progmodes/idlwave.el: New file.
5838
5839 * progmodes/idlwave-rinfo.el: New file.
5840
5841 * progmodes/idlwave-shell.el: New file.
5842
5843 * progmodes/idlwave-toolbar.el: New file.
5844
5845 * files.el (auto-mode-alist): idlwave-mode default for .pro files.
5846
5847 1999-12-21 Gerd Moellmann <gerd@gnu.org>
5848
5849 * progmodes/cwarn.el: New file.
5850
5851 1999-12-19 Gerd Moellmann <gerd@gnu.org>
5852
5853 * bindings.el (completion-ignored-extensions): Add .pdf.
5854
5855 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
5856
5857 * version.el: Put the version info into binary on MS-DOS as well.
5858
5859 1999-12-19 Gerd Moellmann <gerd@gnu.org>
5860
5861 * emacs-lisp/debug.el (debugger-continue): Don't continue if
5862 debugger-may-continue is nil.
5863
5864 1999-12-18 Dave Love <fx@gnu.org>
5865
5866 * emacs-lisp/cl-macs.el: Remove conditional definition of
5867 eval-when-compile. Don't specify abs, expt, gethash,
5868 hash-table-count, hash-table-p as side-effect-free here.
5869 (cl-emacs-type): Don't declare.
5870 (cl-compile-time-init): Remove Emacs 18 compiler patch.
5871 (cl-parse-loop-clause): Remove compatibility code.
5872
5873 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
5874 (side-effect-free-fns): Add gethash, hash-table-count.
5875 (side-effect-and-error-free-fns): Add hash-table-p.
5876
5877 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend
5878 `cl-' to autoload names for some hash functions. Don't autoload
5879 eval-when-compile. Don't provide mini-cl.
5880 (cl-emacs-type): Remove.
5881 (cl-map-extents): Remove compatibility code.
5882
5883 * emacs-lisp/float.el: Bind free variables.
5884
5885 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
5886
5887 1999-12-16 Gerd Moellmann <gerd@gnu.org>
5888
5889 * bindings.el (completion-ignored-extensions): Add .tfm.
5890
5891 1999-12-16 Dave Love <fx@gnu.org>
5892
5893 * faces.el (set-face-attribute): Purecopy the attributes set.
5894
5895 * custom.el (custom-declare-variable): Purecopy value.
5896
5897 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
5898 (byte-extrude-byte-code-vectors): Use remprop.
5899 (byte-compile-lambda): Check that arg is a lambda.
5900
5901 1999-11-16 Anders Lindgren <AndersL@andersl.com>
5902
5903 * font-lock.el: System for adding and removing keywords.
5904 Both local (previously added keyword) and global keywords
5905 can be removed.
5906 (font-lock-remove-keywords): New user-level function.
5907 (font-lock-update-removed-keyword-alist): New internal function.
5908 (font-lock-removed-keywords-alist): New variable.
5909 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
5910 Empty `font-lock-keywords-alist' when `append' is `set' to avoid
5911 growing datastructures.
5912 (font-lock-set-defaults): Removes keywords stored in
5913 `font-lock-removed-keywords-alist' after local keywords added.
5914
5915 1999-12-16 Anders Lindgren <andersl@andersl.com>
5916
5917 * font-lock.el (c-keywords, c++-keywords): Better "case" support for
5918 complex constant expressions, e.g. "case 1<<A_BIT_NO:".
5919
5920 * font-lock.el (c-keywords): Only highlight preprocessor
5921 directives when spelled correctly.
5922
5923 * font-lock.el (font-lock-match-c++-structor-declaration,
5924 c++-keywords): Fontify constructors and destructors with function
5925 face inside C++ class declarations.
5926
5927 1999-12-16 Gerd Moellmann <gerd@gnu.org>
5928
5929 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
5930 the shell from sh-shell-file.
5931
5932 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
5933
5934 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
5935
5936 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
5937 if one of the files specified cannot be accessed by
5938 file-attributes. Do not strip any leading directories from the
5939 file names, to behave more like `ls' does.
5940
5941 * dired.el (dired-get-filename): Handle absolute file names.
5942 (dired-readin-insert): If argument is a cons, don't print
5943 "wildcard" on the ``total'' line.
5944
5945 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
5946
5947 * faces.el (face-read-integer, read-face-attribute)
5948 (color-defined-p, color-values): Allow color values unspecified-fg
5949 and unspecified-bg, handle them as unspecified.
5950
5951 1999-12-15 Carsten Dominik <dominik@astro.uva.nl>
5952
5953 * textmodes/reftex.el: (reftex-compile-variables): respect new
5954 structure of `reftex-index-macro'
5955 (reftex-compile-variables): Use the changed structure of
5956 `reftex-label-alist'.
5957
5958 * textmodes/reftex-vars.el (reftex-index-math-format,
5959 (reftex-toc-max-level): New option.
5960 reftex-index-phrases-search-whole-words,
5961 reftex-index-phrases-case-fold-search,
5962 reftex-index-phrases-skip-indexed-matches,
5963 reftex-index-phrases-wrap-long-lines,
5964 reftex-index-phrases-sort-prefers-entry,
5965 reftex-index-phrases-sort-in-blocks): New options.
5966 (reftex-index-macros): Option structure changed.
5967 (reftex-index-macros-builtin): Added `repeat' item to each entry.
5968 (reftex-label-alist): Additional item in each entry to specify if
5969 the environment should be listed in the TOC.
5970 (eval-when-compile (require 'cl)) added.
5971
5972 * textmodes/reftex-index.el (reftex-index-selection-or-word): No
5973 longer deals with "repeat".
5974 (reftex-index): "repeat property in `reftex-index-macro-alist' is
5975 now used.
5976 (reftex-index-phrases-comment-regexp,
5977 reftex-index-phrases-macrodef-regexp,
5978 reftex-index-phrases-phrase-regexp1,
5979 reftex-index-phrases-phrase-regexp2,
5980 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
5981 New constants.
5982 (reftex-index-phrases-macro-data, reftex-index-phrases-files,
5983 reftex-index-phrases-font-lock-keywords,
5984 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
5985 reftex-index-phrases-restrict-file): New variables.
5986 (reftex-index-phrase-selection-or-word,
5987 reftex-index-visit-phrases-buffer,
5988 reftex-index-initialize-phrases-buffer,
5989 reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
5990 reftex-index-next-phrase, reftex-index-this-phrase,
5991 reftex-index-all-phrases, reftex-index-region-phrases,
5992 reftex-index-phrases-parse-header,
5993 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
5994 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
5995 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
5996 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
5997 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
5998 reftex-index-make-replace-string,
5999 reftex-query-index-phrase-globally, reftex-query-index-phrase,
6000 reftex-index-phrase-match-is-indexed,
6001 reftex-index-phrases-fixup-line,
6002 reftex-index-phrases-replace-space,
6003 reftex-index-select-phrases-macro): New functions.
6004 (reftex-index-globalize, reftex-index-globally): functions removed
6005 (eval-when-compile (require 'cl)) added.
6006
6007 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
6008 for max level.
6009 (reftex-toc-max-level-indicator): New variable.
6010 (reftex-toc-max-level): New command.
6011 (reftex-toc-map): New keybinding `t'.
6012 (reftex-toc-help): Constant updated.
6013 (eval-when-compile (require 'cl)) added.
6014
6015 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
6016 `t' command key can change `reftex-toc-max-level'
6017 (eval-when-compile (require 'cl)) added.
6018
6019 * textmode/reftex-sel (reftex-insert-docstruct): Respect
6020 `reftex-toc-max-level'
6021 (eval-when-compile (require 'cl)) added.
6022
6023 * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
6024 added.
6025
6026 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
6027 added.
6028
6029 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
6030 commands.
6031 (reftex-citation, reftex-do-citation,
6032 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
6033 preselect a citation format.
6034 (eval-when-compile (require 'cl)) added.
6035
6036 * textmodes/reftex-parse.el (reftex-context-substring): Optional
6037 parameter to-end
6038 (reftex-section-info): Deal with environment matches.
6039 (eval-when-compile (require 'cl)) added.
6040
6041 * reftex-global.el (eval-when-compile (require 'cl)) added.
6042
6043 1999-12-15 Kenichi Handa <handa@etl.go.jp>
6044
6045 The following changes are for the new composition mechanism. We
6046 have deleted `composition' charset and composite characters,
6047 instead introduced a special text property `composition'.
6048
6049 * composite.el: New file.
6050
6051 * ps-mule.el: Define encode-composition-rule and find-composition
6052 for Emacs 20.4 and the earlier versions.
6053 (ps-mule-init-external-library): Just require a feature for
6054 external libraries.
6055 (ps-mule-prologue): Postscript code modified for new composition.
6056 (ps-mule-find-wrappoint): New arg COMPOSITION.
6057 (ps-mule-plot-string): Delete code for composite characaters.
6058 (ps-mule-plot-composition): New funcion.
6059 (ps-mule-prepare-font-for-components): New function.
6060 (ps-mule-plot-components): New function.
6061 (ps-mule-composition-prologue-generated): Renamed from
6062 ps-mule-cmpchar-prologue-generated.
6063 (ps-mule-composition-prologue): New named from
6064 ps-mule-cmpchar-prologue. Modified for new composition.
6065 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
6066 ps-mule-prepare-cmpchar-font): Deleted.
6067 (ps-mule-string-encoding): New arg NO-SETFONT.
6068 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
6069 check Composing, not Cmpchar
6070 (ps-mule-initialize): Set ps-mule-composition-prologue-generated
6071 to nil.
6072 (ps-mule-begin-job): Check existence of new composition.
6073
6074 * ps-print.el (ps-plot-region): Handle new composition.
6075
6076 * simple.el (what-cursor-position): Show "(composed)" if the
6077 character is composed.
6078
6079 * international/characters.el: Fix cateogries of Lao symbols.
6080
6081 * international/fontset.el (vertical-centering-font-regexp): New
6082 variable.
6083
6084 * international/mule.el (mule-version): Updated to 5.0 (AOI).
6085 (mule-version-date): Updated to 1999.12.7.
6086 (with-category-table): New macro.
6087
6088 * international/mule-cmds.el (encode-coding-char): Don't check
6089 composite character.
6090
6091 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
6092 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
6093 x-ctext): Give `composition' property t.
6094
6095 * international/mule-util.el (set-nested-alist): Set BRANCHES (if
6096 non-nil) at the tail of ALIST.
6097 (compose-region, decompose-region, decompse-string,
6098 reference-point-alist, compose-chars): Moved to composite.el.
6099 (compose-chars-component, compose-chars-rule,
6100 decompose-composite-char): Deleted.
6101
6102 * international/quail.el (quail-install-map): New optional arg
6103 NAME.
6104 (quail-get-translation): If DEF is a symbol but not a function,
6105 ignore it.
6106 (quail-start-translation): Put a key sequence undefined in the
6107 translation keymap in unread-command-events, not generated-events.
6108 Return parameterized event (compose-last-chars N) if the input
6109 characters should be composed.
6110 (quail-map-definition): If DEF is t, treat it as nil.
6111 (quail-delete-last-char): Delete the quail region.
6112 (quail-show-translations): Don't show list of translations if the
6113 quail package is deterministic.
6114 (quail-completion-max-depth): New variable.
6115 (quail-completion-1): Pay attention to the above variable. Fix
6116 for the case that a translation is a function.
6117 (quail-map-from-table, quail-map-from-table-1,
6118 quail-map-from-table-2): New functions.
6119 (quail-lookup-map-and-concat): New function
6120
6121 * language/devan-util.el: Mostly rewritten.
6122
6123 * language/lao.el: Register lao-composition-function in
6124 composition-function-table.
6125
6126 * language/lao-util.el: Mostly rewritten.
6127
6128 * language/thai.el: Register thai-composition-function in
6129 composition-function-table.
6130 (thai-tis620): Delete `pre-write-conversion' property.
6131
6132 * language/thai-util.el: (thai-category-table): Make it by
6133 make-category-table.
6134 (thai-composition-pattern): New variable.
6135 (thai-compose-region, thai-compose-string): Use
6136 with-category-table.
6137 (thai-post-read-conversion): Just call thai-compose-region.
6138 (thai-pre-write-conversion): Deleted.
6139 (thai-composition-function): New funciton.
6140
6141 * language/tibet-util.el: Most functions rewritten.
6142 (tibetan-char-p): Renamed from tibetan-char-examin.
6143 (tibetan-composable-examin) (tibetan-complete-char-examin)
6144 (tibetan-vertical-stacking) (tibetan-composition): Deleted.
6145 (tibetan-add-components): New function.
6146 (tibetan-composition-function): New function.
6147
6148 * language/tibetan.el: Register tibetan-composition-function in
6149 composition-function-table.
6150 (tibetan-composable-pattern): New variable.
6151 (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
6152 (tibetan-precomposition-rule-alist): Move punctuations to
6153 tibetan-punctuation-transcription-alist and
6154 tibetan-obsolete-glyphs.
6155 (tibetan-punctuation-transcription-alist): New variable.
6156 (tibetan-obsolete-glyphs): New variable.
6157 (tibetan-regexp): Improve the initialization code.
6158
6159 * textmodes/fill.el (fill-find-break-point): Delete codes for
6160 composite characters.
6161 (fill-region-as-paragraph): Likewise.
6162
6163 1999-12-14 Gerd Moellmann <gerd@gnu.org>
6164
6165 * international/mule-cmds.el (default-input-method): Specify
6166 that it should be set after current-language-environment.
6167
6168 * custom.el (custom-handle-keyword): Add :set-after.
6169 (custom-add-dependencies): New function.
6170 (custom-set-variables): Take dependencies between args into
6171 account.
6172
6173 * battery.el (battery): Doc fix.
6174
6175 1999-12-12 Gerd Moellmann <gerd@gnu.org>
6176
6177 * progmodes/cc-make.el: Removed.
6178
6179 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6180
6181 * Release of cc-mode 5.26
6182
6183 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6184
6185 * cc-cmds.el (c-forward-conditional): Handle an arbitrary
6186 target depth. Optionally count #else lines as clause limits,
6187 as suggested by don provan <provan@lucent.com>. #elif
6188 handling fixed.
6189
6190 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
6191 (c-down-conditional-with-else): New commands that uses the
6192 added functionality in `c-forward-conditional'.
6193
6194 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6195
6196 * cc-align.el (c-lineup-comment): Preserve the alignment with
6197 a comment on the previous line instead of preserving the
6198 comment-column.
6199
6200 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6201
6202 * Fixes to IDL mode after input from Eric Eide
6203 <eeide@cs.utah.edu>:
6204 * cc-engine.el (c-beginning-of-statement-1): Allow
6205 `c-conditional-key' to be nil, for the benefit of IDL mode.
6206 * cc-engine.el (c-guess-basic-syntax): Ditto.
6207 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class'
6208 but do match CORBA 2.3 `valuetype'.
6209 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil
6210 for IDL.
6211 * cc-langs.el (c-IDL-conditional-key): New defconst. Should
6212 be nil for IDL.
6213 * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
6214 Like C++.
6215 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also,
6216 set `c-method-key' and `c-baseclass-key' to nil.
6217
6218 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6219
6220 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
6221 with nonhanging open braces.
6222
6223 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6224
6225 * cc-align.el: Added docstrings to all lineup functions.
6226
6227 * cc-align.el (c-lineup-java-throws): Handle a hanging throws
6228 keyword.
6229
6230 * cc-align.el (c-lineup-C-comments): Handle free form text
6231 comments. Use c-comment-prefix-regexp and comment-start-skip
6232 instead of hardcoded regexps.
6233
6234 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6235
6236 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
6237 behavior and return value as documented.
6238
6239 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6240
6241 * Changes for new style variable init system:
6242 * cc-langs.el (c-common-init): Dito.
6243 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
6244 now customizable.
6245 * cc-vars.el: Style variables may now take a value
6246 'set-from-style to make them take their value from the style
6247 system. This value is now the default on all these variables.
6248 * cc-vars.el (c-valid-offset): New function to verify a
6249 syntactic symbol offset setting.
6250 * cc-vars.el (c-offsets-alist): Variable moved from
6251 cc-styles.el since it's now customizable in a similar way to
6252 the other style variables.
6253 * cc-vars.el (c-old-style-variable-behavior): New variable to
6254 revert to the old style init behavior.
6255
6256 * cc-vars.el (c-file-style, c-file-offsets): Made always
6257 buffer local.
6258
6259 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
6260 the throws clause that might follow the function prototype in
6261 C++.
6262
6263 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6264
6265 * cc-defs.el (c-beginning-of-macro): Fixed bug where point
6266 could move forward for macros that doesn't start in column 0.
6267
6268 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6269
6270 * cc-align.el (c-indent-multi-line-block,
6271 c-lineup-whitesmith-in-block): Two new lineup functions for
6272 use in whitesmith style.
6273
6274 * cc-styles.el (c-style-alist): More fixes to whitesmith
6275 style. It should now handle all different braces uniformly in
6276 both hanging and non-hanging cases.
6277
6278 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6279
6280 * cc-cmds.el (c-indent-exp): Use a marker to save point to
6281 make it stay in the same position relative to the surrounding
6282 text.
6283
6284 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
6285 when adaptive-fill-mode doesn't manage to get it correct.
6286
6287 * cc-menus.el (cc-imenu-java-generic-expression): Handle types
6288 with dotted notation, e.g. foo.bar.Gnu.
6289
6290 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
6291 within unwind-protect (previously only some were wrapped so it
6292 would be possible to register mode initialization when full
6293 initialization did not finish).
6294
6295 * cc-styles.el (c-style-alist): Corrected the brace placement
6296 in the whitesmith style. Thanks to Sean Luke
6297 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith
6298 styles with consistent brace placement for all constructs.
6299
6300 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6301
6302 * cc-cmds.el (c-context-line-break): Continue C++ comments too
6303 when point is in the middle of them.
6304
6305 * cc-cmds.el: Line breaking and paragraph filling code
6306 rewritten:
6307 (c-guess-fill-prefix): New function that uses various
6308 heuristics to guess the comment prefix.
6309 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
6310 It now assumes adaptive filling is active to preserve the line
6311 prefix inside comments.
6312 (c-indent-new-comment-line): Replacement for the now
6313 obsolete `c-comment-line-break-function' that uses
6314 `c-guess-fill-prefix' when appropriate. It now observes the
6315 setting of `comment-multi-line', which has effect in C-style
6316 block comments.
6317
6318 * cc-cmds.el (c-context-line-break): New function intended to
6319 be put on RET. It's essentially `newline-and-indent', but
6320 continues C block comments with the appropriate line prefix.
6321
6322 * cc-cmds.el (c-do-auto-fill): New function put on
6323 `normal-auto-fill-function' to implement the
6324 `c-ignore-auto-fill' variable.
6325
6326 * cc-cmds.el (c-beginning-of-statement): Use
6327 `c-comment-prefix-regexp' to avoid ending up inside the
6328 comment prefix. Better handling of comment starters and
6329 enders. Catch comments better when traversing code. Stop at
6330 preprocessor directives.
6331
6332 * cc-defs.el (c-forward-comment): New subst to hide platform
6333 dependent quirks in `forward-comment'.
6334
6335 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
6336 argument.
6337 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
6338 arguments. Activate this function by default when
6339 `parse-partial-sexp' supports it (currently Emacs 20.x).
6340
6341 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
6342 on the comment opener to make constants usable as lineup
6343 arguments.
6344
6345 * cc-align.el (c-lineup-C-comments): Fixes to handle the
6346 changed anchor position in the `c' syntactic symbol. Handle
6347 more than stars in the comment prefix; use the new variable
6348 `c-comment-prefix-regexp'. Don't indent text not preceded by
6349 a comment prefix to the right of the comment opener if it's
6350 long.
6351
6352 * cc-langs.el: Fixes to mode initialization for new line
6353 breaking and paragraph filling method. Adaptive fill mode is
6354 now activated at startup instead of deactivated. The
6355 variables used for adaptive filling and paragraph movement are
6356 also changed to incorporate the value of
6357 `c-comment-prefix-regexp'. `substitute-key-definition' is
6358 used to override some functions in the global map instead of
6359 overriding their default bindings.
6360
6361 * cc-mode.el (java-mode): Modify `paragraph-start' for the
6362 javadoc markup at mode init.
6363
6364 * cc-mode.el (c-setup-filladapt): A new convenience function
6365 to configure Kyle E. Jones' Filladapt mode for CC Mode. This
6366 function is intended to be used explicitly by the end user
6367 only.
6368
6369 * cc-vars.el (c-comment-prefix-regexp): New variable used to
6370 recognize the comment fill prefix inside comments.
6371 (c-block-comment-prefix): New name for
6372 `c-comment-contiuation-stars', which is now obsolete. It's
6373 generalized to handle any character sequence.
6374 (c-ignore-auto-fill): New variable used to selectively disable
6375 Auto Fill mode in specific contexts.
6376
6377 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6378
6379 * cc-cmds.el (c-comment-indent): Leave at least one space
6380 between the comment and the last nonblank character in the
6381 case where we look at the indentation of the comment on the
6382 previous line (case 4).
6383
6384 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
6385 list of characters that may start a statement (it's a sort of
6386 prefix operator in Pike, and isn't used at all in any of the
6387 other languages).
6388
6389 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6390
6391 * cc-engine.el (c-guess-basic-syntax): Report brace list opens
6392 inside continued statements as statement-cont instead of
6393 brace-list-open. The reason is that one normally adjusts
6394 brace-list-open for brace lists as top-level constructs, and
6395 brace lists inside statements is a completely different
6396 context. Case 10B.2 changed. Also changed (the somewhat
6397 esoteric) case 9A to cope with this.
6398
6399 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6400
6401 * cc-cmds.el (c-electric-brace): Added electric handling of
6402 the open brace for brace-elseif-brace.
6403
6404 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6405
6406 * cc-defs.el (c-with-syntax-table): New macro to easily switch
6407 syntax tables temporarily.
6408
6409 * cc-engine.el (c-guess-basic-syntax): Handle template and
6410 member init argument lists split over several lines. Case 5D
6411 changed.
6412
6413 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
6414 @throws introduced in Javadoc 1.2.
6415
6416 * cc-menus.el (cc-imenu-java-generic-expression): Applied
6417 patch from RMS to avoid infinite backtracking.
6418
6419 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6420
6421 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
6422 by [ ].
6423
6424 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6425
6426 * cc-align.el (c-lineup-dont-change): Compensate properly for
6427 the column in langelem.
6428
6429 * cc-engine.el (c-syntactic-information-on-region): New
6430 function to help debugging the syntactic analysis.
6431
6432 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6433
6434 * cc-align.el (c-lineup-template-args): Handle nested template
6435 arglists.
6436
6437 * cc-langs.el (c++-template-syntax-table): New syntax table
6438 that makes `<' and `>' parenthesis characters, which is useful
6439 to switch to temporarily when analyzing template arglists.
6440
6441 * cc-styles.el: Changed default alignment of labels in the
6442 java style to conform to the examples in the Java Language
6443 Specification.
6444
6445 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
6446 by default.
6447
6448 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6449
6450 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
6451 immediately before the closing paren in an arglist, so don't
6452 check that in Pike mode. Case 7A changed.
6453
6454 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6455
6456 * cc-cmds.el (c-indent-region): Fixed bug where comment-only
6457 lines were ignored under certain conditions.
6458
6459 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6460
6461 * cc-align.el (c-lineup-template-args): New function for
6462 aligning continued template argument lists.
6463
6464 * cc-engine.el (c-guess-basic-syntax): Fix for member init
6465 lists containing function arglists split over several lines.
6466 Case 5D.1 changed.
6467
6468 * cc-engine.el (c-guess-basic-syntax): Fixed bug where
6469 template-args-cont didn't get recognized when the first
6470 arglist opener line doesn't contain a template argument. New
6471 case 5K.
6472
6473 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6474
6475 * cc-defs.el (c-point): Changed from subst to macro for
6476 efficiency.
6477 (c-beginning-of-defun-1, c-end-of-defun-1): New
6478 beginning-of-defun/end-of-defun wrappers separated from
6479 c-point.
6480
6481 * cc-menus.el (imenu-generic-expression,
6482 imenu-case-fold-search, imenu-progress-message): Dummy
6483 definitions to avoid compiler warnings if imenu can't be
6484 loaded.
6485 * cc-menus.el (cc-imenu-init): New function called at mode
6486 init.
6487 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
6488 imenu initializations to cc-imenu-init.
6489
6490 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6491
6492 * cc-engine.el (c-guess-basic-syntax): Slightly better check
6493 for lambda-intro-cont in Pike mode. Case 6 changed.
6494
6495 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
6496 anything following "new Foo()" was considered an anonymous
6497 class body in Java mode.
6498
6499 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
6500
6501 * cc-cmds.el (c-comment-line-break-function): When breaking in
6502 a string, don't insert a new line.
6503
6504 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
6505
6506 * cc-engine.el (c-at-toplevel-p): New interface function which
6507 returns information useful to add-on authors. It tells you
6508 whether you're at a toplevel statement or not.
6509
6510 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
6511
6512 * cc-cmds.el (c-comment-line-break-function): It is possible
6513 that forward-line does not land us at the bol, say if we're on
6514 the last line in a file. In that case, do a
6515 back-to-indentation instead of a forward-comment -1.
6516
6517 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6518
6519 * cc-engine.el (c-beginning-of-statement-1): Don't catch
6520 "default:" as normal label in case 4.
6521
6522 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6523
6524 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
6525 recognize continued bitfield declarations. Case 5D.1 changed.
6526 * cc-langs.el: New variable c-bitfield-key.
6527 * cc-mode.el: New variable c-bitfield-key.
6528
6529 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
6530
6531 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
6532 anonymous array expressions (i.e. "new Foo[] {.. bracelist
6533 ..}").
6534
6535 1999-12-12 Dave Love <fx@gnu.org>
6536
6537 * mail/footnote.el: Require cl when compiling. Don't autoload
6538 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays.
6539 (footnote-insert-text-marker, Footnote-insert-pointer-marker):
6540 Avoid `acons'.
6541 (footnote-mode-line-string, Footnote-add-footnote): Remove
6542 autoload cookie.
6543
6544 1999-12-12 Richard Sharman <rsharman@pobox.com>
6545
6546 * sh-script.el: Fix for when font-lock mode is active.
6547 (sh-font-lock-unfontify-region-function): New function.
6548
6549 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
6550
6551 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
6552 if start-process is not bound, since Ispell now supports such
6553 platforms as well.
6554
6555 1999-12-12 Gerd Moellmann <gerd@gnu.org>
6556
6557 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
6558 rmail-summary-goto-msg.
6559
6560 * files.el (after-find-file): Fix previous change.
6561
6562 1999-12-11 Dave Love <fx@gnu.org>
6563
6564 * help.el (where-is): Use `commandp' as predicate for
6565 `completing-read'
6566
6567 1999-12-10 Richard M. Stallman <rms@gnu.org>
6568
6569 * cus-edit.el (custom-save-delete): Delete all occurrences,
6570 leave point where the first occurrence was.
6571 (custom-save-faces): Insert a newline at the end of the comment.
6572 Avoid a double newline there.
6573 If final closeparen is at bol, put a space before it.
6574 (custom-save-variables): Likewise.
6575 (custom-file): Doc fix.
6576
6577 1999-12-10 Gerd Moellmann <gerd@gnu.org>
6578
6579 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
6580 regexp matching image and audio files.
6581
6582 1999-12-09 Dave Love <fx@gnu.org>
6583
6584 * mail/footnote.el: New file.
6585
6586 1999-12-09 Gerd Moellmann <gerd@gnu.org>
6587
6588 * files.el (after-find-file): Use auto-save-visited-file-name if
6589 set.
6590
6591 * mail/feedmail.el (feedmail-find-eoh): Take
6592 feedmail-queue-alternative-mail-header-separator into account.
6593
6594 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
6595
6596 * smerge-mode.el: New file.
6597
6598 * font-lock.el (font-lock-multiline): New variable.
6599 (font-lock-add-keywords): Rename `major-mode' into `mode'.
6600 (font-lock-remove-keywords): Added a dummy `mode' argument for
6601 potential future support.
6602 (font-lock-fontify-anchored-keywords,
6603 (font-lock-fontify-keywords-region): Only handle multiline strings
6604 if necessary (avoids a pathological behavior in (f.ex) diff-mode).
6605
6606 1999-12-08 Richard M. Stallman <rms@gnu.org>
6607
6608 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
6609
6610 * dired-aux.el (dired-insert-subdir): Add autoload cookie.
6611
6612 1999-12-07 Dave Love <fx@gnu.org>
6613
6614 * help.el (view-emacs-problems): New command, bound to C-h P.
6615
6616 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
6617
6618 1999-12-07 Stefan Monnier <monnier@cs.yale.edu>
6619
6620 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
6621 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
6622 New code to support the minor mode version.
6623 (diff-recenter): New function.
6624 (diff-next-hunk, diff-next-file): Use it.
6625 (diff-remembered-files-alist): New var.
6626 (diff-merge-strings): New function.
6627 (diff-find-file-name): Make it smarter and use the user's input more.
6628 (diff-mode): Cosmetic changes.
6629
6630 * files.el (save-some-buffers): Turn EXITING into the more general
6631 PRED argument to allow specifying a subset of buffers.
6632
6633 * simple.el (kill-region): Use the new `delete-and-extract-region'
6634 rather than the undo log (which is incorrect with *-change-functions).
6635
6636 * font-lock.el (font-lock-default-fontify-region): Fix subtle
6637 off-by-one problem that could force re-fontifying the whole buffer.
6638 (font-lock-remove-keywords): New function.
6639 (font-lock-add-keywords): Use the new function to ensure idempotence.
6640
6641 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu>
6642
6643 * viper-cmd.el (viper-minibuffer-standard-hook,
6644 viper-minibuffer-real-start): Mew functions.
6645 (viper-read-string-with-history,viper-file-add-suffix,
6646 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
6647 change in the status of the minibuffer prompt.
6648
6649 1999-12-06 Gerd Moellmann <gerd@gnu.org>
6650
6651 * comint.el (comint-redirect-results-list)
6652 (comint-redirect-results-list-from-process): Remove interactive
6653 spec.
6654
6655 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
6656
6657 * info.el (info-node, info-menu-5, info-xref): Define colors for
6658 Info faces if the display supports them.
6659
6660 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
6661
6662 Changes for automatic remapping of X colors on terminal frames:
6663
6664 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
6665 term-setup-hook. Call msdos-remember-default-colors and
6666 msdos-handle-reverse-video.
6667 (msdos-face-setup): Parts of code moved to
6668 msdos-setup-initial-frame.
6669 (msdos-handle-reverse-video): New function, modeled after
6670 x-handle-reverse-video.
6671 (make-msdos-frame): Don't use initial-frame-alist and
6672 default-frame-alist. Call msdos-handle-reverse-video.
6673 (msdos-color-aliases): Remove.
6674 (msdos-color-translate, msdos-approximate-color): Remove.
6675 (msdos-color-values): Use 16-bit RGB values. RGB values updated
6676 for better approximation of X colors.
6677 (msdos-face-setup): Call tty-color-clear. Remove code that sets
6678 up tty-color-alist (it is now on startup.el).
6679 (x-display-color-p, x-color-defined-p, x-color-values,
6680 x-defined-colors, face-color-supported-p, face-color-gray-p):
6681 Remove.
6682
6683 * facemenu.el (facemenu-read-color, list-colors-display): Use
6684 defined-colors for all frame types.
6685 (facemenu-color-equal): Use color-values for all frame types.
6686
6687 * faces.el (read-face-attribute): For :foreground and :background
6688 attributes and frames on character terminals, translate the color
6689 to the closest supported one before looking it up in the list of
6690 valid values.
6691 (face-valid-attribute-values): Call defined-colors for all types
6692 of frames.
6693 (defined-colors, color-defined-p, color-values, display-color-p):
6694 New finctions.
6695 (x-defined-colors, x-color-defined-p, x-color-values,
6696 x-display-color-p): Aliases for the above.
6697
6698 * startup.el (command-line): Register terminal colors for frame
6699 types other than x and w32, but only if the terminal supports
6700 colors. Call tty-color-define instead of face-register-tty-color.
6701
6702 * term/x-win.el (xw-defined-colors): Renamed from
6703 x-defined-colors.
6704 * term/w32-win.el (xw-defined-colors): Likewise.
6705
6706 * term/tty-colors.el: New file.
6707 * loadup.el: Load term/tty-colors.
6708
6709 1999-12-06 Dave Love <fx@gnu.org>
6710
6711 * ffap.el: Autoload the ffap alias directly.
6712
6713 1999-12-06 Inge Frick <inge@nada.kth.se>
6714
6715 * dired-aux.el (dired-do-shell-command): Changed documentation.
6716 (dired-shell-stuff-it): A `?' in COMMAND has now the same
6717 meaning as `*'.
6718
6719 1999-12-06 Gerd Moellmann <gerd@gnu.org>
6720
6721 * simple.el (insert-buffer): Doc fix.
6722
6723 * apropos.el (apropos-mode): Add autoload cookie.
6724
6725 1999-12-06 Sam Steingold <sds@goems.com>
6726
6727 * progmodes/etags.el (etags-tags-completion-table): Modified the
6728 regexp to allow for the CL symbols starting with `+*'.
6729 (tags-completion-table): Doc fix (it's an obarray, not an alist).
6730 (tags-completion-table, tags-recognize-empty-tags-table): Remove
6731 `function' quoting lambda.
6732 (tags-with-face): New macro.
6733 (list-tags, tags-apropos): Use it.
6734 (tags-apropos-additional-actions): New user option.
6735 (etags-tags-apropos-additional): Use it.
6736 (tags-apropos): Call etags-tags-apropos-additional.
6737 (tags-apropos-verbose): New user option.
6738 (etags-tags-apropos): Use it.
6739 (visit-tags-table-buffer, next-file): Use `unless'.
6740 (recognize-empty-tags-table): Renamed to
6741 tags-recognize-empty-tags-table.
6742 (complete-tag): Call tags-complete-tag bypassing try-completion.
6743
6744 1999-12-06 Kenichi Handa <handa@etl.go.jp>
6745
6746 * international/mule.el (set-buffer-file-coding-system): Docstring
6747 modified.
6748
6749 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
6750
6751 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
6752 using the hideshow package.
6753 (hs-special-modes-alist): Added entry for bibtex to allow the use
6754 of the hideshow package.
6755 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
6756 not longer provided by bibtex.el directly. Instead the hideshow
6757 package should be used.
6758 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
6759 references to bibtex-hide-entry-bodies.
6760
6761 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
6762
6763 * textmodes/bibtex.el: Copyright notice is up to date. Moved
6764 maintainer information closer to the beginning of the bibtex.el
6765 file.
6766 (bibtex-maintainer-salutation): New constant.
6767 (bibtex-version): New constant.
6768 (bibtex-submit-bug-report): Use bibtex-version and
6769 bibtex-maintainer-salutation.
6770 (bibtex-entry-field-alist): Made booktitle field optional for
6771 @inproceedings entries when crossreferenced.
6772 (bibtex-entry-field-alist): Added booktitle field to proceedings
6773 entry type (for cross referencing). Thanks to Wagner Toledo Correa
6774 for the suggestion.
6775 (bibtex-string-file-path): Fixed typo.
6776
6777 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
6778
6779 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
6780 for reftex.el.
6781 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
6782 to menu.
6783
6784 1999-12-04 Dave Love <fx@gnu.org>
6785
6786 * delsel.el: Revert previous change -- region is significant to
6787 skeleton.
6788
6789 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu>
6790
6791 * viper-cmd.el (viper-change-state): Use
6792 viper-ESC-moves-cursor-back to decide whether to move the cursor
6793 back.
6794
6795 1999-12-03 Kenichi Handa <handa@mule.m17n.org>
6796
6797 * international/mule-util.el (truncate-string-to-width): Docsting
6798 fixed.
6799
6800 1999-12-02 Stefan Monnier <monnier@cs.yale.edu>
6801
6802 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
6803 use of `cond'.
6804 (lm-with-file): Move all the find-file...kill-buffer stuff into
6805 this macro. Make it use `find-file-noselect' and make it kill
6806 the buffer only if it wasn't already displayed somewhere.
6807 (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
6808 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
6809 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
6810 (lm-commentary): Fix to handle the case when the change log is
6811 at the end of the file.
6812
6813 1999-12-02 Kenichi Handa <handa@etl.go.jp>
6814
6815 * international/mule.el (charsetp): Fix typo in docstring.
6816
6817 * international/mule-diag.el (list-coding-categories): Fix typo;
6818 automatic -> autoload.
6819
6820 1999-12-02 Gerd Moellmann <gerd@gnu.org>
6821
6822 * vc.el (vc-update-change-log): Look for rcs2log under
6823 exec-directory.
6824
6825 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
6826 outline-regexp, add outline-level.
6827 (lisp-outline-level): New.
6828
6829 * calendar/appt.el (appt-convert-time): Handle "12:MMam",
6830 remove extraneous string-match.
6831
6832 * finder.el (finder-commentary): Activate Finder mode.
6833
6834 1999-12-01 Anders Lindgren <andersl@andersl.com>
6835
6836 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
6837 off when reverting buffers that contained mode specifiers.
6838 `revert-buffer' is now called with non-nil PRESERVE-MODES
6839 argument.
6840
6841 1999-12-01 Dave Love <fx@gnu.org>
6842
6843 * delsel.el: Grok skeleton-pair-insert-maybe.
6844
6845 1999-11-30 Richard M. Stallman <rms@gnu.org>
6846
6847 * progmodes/cperl-mode.el (cperl-under-as-char):
6848 Use nil as default.
6849
6850 1999-11-30 Gerd Moellmann <gerd@gnu.org>
6851
6852 * speedbar.el (toplevel): Remove compatibility code for Emacs
6853 versions without custom.el.
6854
6855 1999-11-30 Dave Love <fx@gnu.org>
6856
6857 * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
6858
6859 * autoinsert.el: Minor doc fixes.
6860 (auto-insert): Return nil.
6861
6862 * faces.el (set-face-documentation): Purecopy STRING.
6863
6864 1999-11-29 Dave Love <fx@gnu.org>
6865
6866 * derived.el: Doc fixes, remove old backquote syntax.
6867
6868 * cus-edit.el (custom-save-variables, custom-save-faces): Write a
6869 comment warning about editing.
6870
6871 * help.el (help-mode-hook): Define.
6872
6873 1999-11-29 Gerd Moellmann <gerd@gnu.org>
6874
6875 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
6876 invalid translation of old-style backquote syntax to new syntax.
6877
6878 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
6879
6880 * Makefile (DONTCOMPILE): Add term/internal.el.
6881
6882 1999-11-26 Dave Love <fx@gnu.org>
6883
6884 * comint.el: Fix last change.
6885
6886 * emacs-lisp/advice.el: Fix last change.
6887
6888 1999-11-26 Richard M. Stallman <rms@gnu.org>
6889
6890 * cus-edit.el (Custom-reset-standard): Doc fix.
6891 (custom-variable-reset-standard): Doc fix.
6892 (custom-face-reset-standard): Doc fix.
6893 (custom-face-menu): "Reset to Standard" => "Erase Customization".
6894 (custom-variable-menu): Likewise.
6895 (custom-reset-menu): Likewise.
6896 (custom-buffer-create-internal): Likewise.
6897
6898 1999-11-26 Dave Love <fx@gnu.org>
6899
6900 * progmodes/make-mode.el (makefile-mode-hook): Customize.
6901
6902 * font-lock.el: Doc fixes.
6903
6904 * menu-bar.el (menu-bar-mode): Customize.
6905
6906 * cus-start.el: Add use-dialog-box.
6907
6908 * add-log.el (change-log-mode-hook): Customize.
6909 (add-log-current-defun): Use
6910 fortran-{beginning,end}-of-subprogram.
6911
6912 1999-11-26 Richard M. Stallman <rms@gnu.org>
6913
6914 * emacs-lisp/advice.el: Many doc fixes.
6915
6916 * comint.el (comint-preoutput-filter-functions): Doc fix.
6917
6918 1999-11-26 Richard M. Stallman <rms@gnu.org>
6919
6920 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
6921 Improve messages for capitalization of arg names,
6922 for flag variables, for t and nil, for imperatives.
6923 Call them imperatives rather than infinitives sans "to".
6924 (checkdoc-common-verbs-wrong-voice): Add "moves".
6925 (checkdoc-message-text-engine): Improve messages for y-or-n-p.
6926
6927 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
6928 Don't convert comments from 3-semicolon to 2-semicolon.
6929 That is a matter of style.
6930 (checkdoc-triple-semi-comment-check-flag): Variable deleted.
6931 (checkdoc-comments): Don't bind that variable.
6932
6933 1999-11-26 Richard M. Stallman <rms@gnu.org>
6934
6935 * files.el (write-file-hooks): Doc fix.
6936
6937 1999-11-26 Gerd Moellmann <gerd@gnu.org>
6938
6939 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
6940
6941 1999-11-25 Dave Love <fx@gnu.org>
6942
6943 * hippie-exp.el: Require comint when compiling.
6944 (hippie-expand): Add :links.
6945 (hippie-expand-try-functions-list): Customize.
6946
6947 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
6948
6949 * viper*el: Replaced old-style backquotes.
6950
6951 * ediff*el: Replaced old-style backquotes.
6952
6953 * ediff-merge
6954 (ediff-looks-like-combined-merge,ediff-get-combined-region):
6955 Changed to support the new format for ediff-combination-pattern.
6956
6957 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
6958 Changed to support the new format for ediff-combination-pattern.
6959
6960 1999-11-24 Dave Love <fx@gnu.org>
6961
6962 * custom.el (custom-declare-group): Purecopy DOC.
6963 (custom-handle-keyword): Purecopy VALUE.
6964 (custom-add-link): Purecopy WIDGET.
6965 (custom-add-version): Purecopy VERSION.
6966 (custom-add-load): Purecopy LOAD.
6967
6968 * cus-face.el (custom-declare-face): Purecopy DOC.
6969
6970 * info.el:
6971 (Info-build-node-completions, Info-search, Info-follow-reference)
6972 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
6973 (Info-find-emacs-command-nodes): Avoid properties on matched text
6974 which may appear in minibuffer.
6975
6976 1999-11-24 Gerd Moellmann <gerd@gnu.org>
6977
6978 * locate.el (locate-with-filter): Doc fix.
6979
6980 1999-11-24 Alex Schroeder <alex@gnu.org>
6981
6982 * sql.el (sql-find-sqli-buffer): New function.
6983 (sql-set-sqli-buffer-generally): New function.
6984 (sql-set-sqli-buffer): Better checking of new-buffer.
6985 (sql-copy-column): Add comma after INTO clause, too.
6986
6987 1999-11-24 Alex Schroeder <alex@gnu.org>
6988
6989 * sql.el (sql-imenu-generic-expression): New, used to set
6990 imenu-generic-expression.
6991
6992 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
6993 setting font-lock-defaults' SYNTAX-ALIST. Set
6994 imenu-generic-expression, imenu-case-fold-search, and
6995 imenu-syntax-alist.
6996
6997 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
6998 and 46 when setting font-lock-defaults' SYNTAX-ALIST.
6999
7000 1999-11-23 Andrew Innes <andrewi@gnu.org>
7001
7002 * w32-win.el (w32-drag-n-drop): Load files in current window, if
7003 drop coords aren't over a specific window.
7004
7005 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7006
7007 * ps-print.el: Define mule funs without checking if mule package is
7008 loaded.
7009 (ps-print-version): New version number (5.0.1).
7010 (ps-header-dirpart): Now uses abbreviate-file-name.
7011
7012 1999-11-23 Dave Love <fx@gnu.org>
7013
7014 * progmodes/fortran.el (fortran-comment-line-start): Renamed from
7015 comment-line-start.
7016 (fortran-comment-line-start-skip): Renamed from
7017 comment-line-start-skip.
7018 (fortran-mode-map): Use renamed functions. Add manual and custom
7019 entries to menu.
7020 (fortran-mode-hook): Customize.
7021 (fortran-comment-indent-function): Renamed from
7022 fortran-comment-hook.
7023 (delete-horizontal-regexp): Function deleted.
7024 (fortran-electric-line-number): Simplified.
7025 (fortran-beginning-of-subprogram): Renamed from
7026 beginning-of-fortran-subprogram.
7027 (fortran-end-of-subprogram): Renamed from
7028 end-of-fortran-subprogram.
7029 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
7030 (fortran-previous-statement, fortran-next-statement): Simplified.
7031 (fortran-blink-match): New function.
7032 (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
7033 (fortran-indent-to-column): Don't use delete-horizontal-regexp.
7034 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
7035 line-end-position.
7036 (fortran-fill): No longer interactive. Simplified.
7037 (fortran-break-line): Simplified.
7038 (fortran-analyze-file-format): Use char-after, not looking-at.
7039
7040 * emacs-lisp/find-func.el (find-function-regexp): Use
7041 `define-minor-mode' after easy-menu change.
7042
7043 1999-11-23 Gerd Moellmann <gerd@gnu.org>
7044
7045 * comint.el: Add redirection.from active comint buffers into
7046 another buffer. Written by Peter Breton.
7047
7048 1999-11-23 Stefan Monnier <monnier@cs.yale.edu>
7049
7050 * emacs-lisp/autoload.el (make-autoload): Recognize the new
7051 `define-minor-mode'.
7052 (define-minor-mode): Specify `doc-string-elt'.
7053
7054 * emacs-lisp/easy-mmode.el: Changed maintainer.
7055 (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
7056 Use defcustom for the hooks; Improve the auto-generated docstrings.
7057 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
7058 (define-minor-mode): Add BODY arg; Only declare the keymap if
7059 provided; Improve the auto-generated docstrings.
7060
7061 1999-11-22 Gerd Moellmann <gerd@gnu.org>
7062
7063 * textmodes/text-mode.el (text-mode): Construct paragraph-start so
7064 that the leading `^' is at the start. This is necessary because
7065 paragraphs.el tries to remove anchors, but can find them only if
7066 they are the first character.
7067
7068 * progmodes/antlr-mode.el: New file.
7069
7070 * calendar/calendar.el: Fix autoload for
7071 calendar-absolute-from-astro. Add autoload for
7072 calendar-print-astro-day-number.
7073
7074 1999-11-21 Anders Lindgren <andersl@andersl.com>
7075
7076 * follow.el: Use modern backquote syntax. Minor comment update.
7077
7078 1999-11-21 Gerd Moellmann <gerd@gnu.org>
7079
7080 * simple.el (with-syntax-table): Don't switch buffers.
7081
7082 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
7083 progmodes/hideif.el: Use new backquote syntax.
7084
7085 1999-11-21 Ken Manheimer <klm@python.org>
7086
7087 * icomplete.el (icomplete-completions): Use an explicit variable
7088 `icomplete-prospects-length', obviating the need to use an
7089 apparently faulty throw/catch arrangement.
7090
7091 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
7092
7093 * term/internal.el (IT-display-table-setup): Don't overstep
7094 character code 255.
7095
7096 1999-11-20 Kenichi Handa <handa@mule.m17n.org>
7097
7098 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
7099 for the charset chinese-sisheng is 7bit encoding, not 8bit.
7100
7101 1999-11-19 Stefan Monnier <monnier@cs.yale.edu>
7102
7103 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
7104 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
7105
7106 * files.el (auto-mode-alist): Add patterns for diff-mode.
7107
7108 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
7109 to detect an empty prompt.
7110
7111 1999-11-18 Dave Love <fx@gnu.org>
7112
7113 * simple.el (input-mode-8-bit): Fix the customization.
7114
7115 1999-11-18 Gerd Moellmann <gerd@gnu.org>
7116
7117 * international/iso-acc.el (iso-languages): Add more
7118 characters for Portuguese.
7119
7120 * speedbar.el: Clean up comment at the start of the file.
7121 Remove RCS id.
7122
7123 * progmodes/compile.el (compilation-parse-errors): Use
7124 compilation-buffer-p instead of testing major-mode.
7125
7126 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk>
7127
7128 * quickurl.el Added defcustom of quickurl-completion-ignore-case.
7129 (quickurl-ask): completion-ignore-case is set to the value of
7130 quickurl-completion-ignore-case for the duration of the call to
7131 completing-read.
7132
7133 1999-11-18 Richard M. Stallman <rms@gnu.org>
7134
7135 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
7136
7137 1999-11-18 Kenichi Handa <handa@etl.go.jp>
7138
7139 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars
7140 instead of ps-print-def.
7141
7142 * ps-print.el: Require ps-vars instead of ps-print-def.
7143
7144 * ps-mule.el: Require ps-vars instead of ps-print-def.
7145
7146 1999-11-17 Gerd Moellmann <gerd@gnu.org>
7147
7148 * simple.el (with-syntax-table): Save buffer explicitly instead of
7149 using save-excursion.
7150
7151 1999-11-16 Gerd Moellmann <gerd@gnu.org>
7152
7153 * mail/supercite.el: New maintainer.
7154
7155 1999-11-16 Reto Zimmermann <reto@synopsys.com>
7156
7157 * progmodes/vhdl-mode.el: Use new backquote syntax.
7158
7159 1999-11-16 Gerd Moellmann <gerd@gnu.org>
7160
7161 * simple.el (with-syntax-table): New.
7162
7163 1999-11-15 Sam Steingold <sds@ksp.com>
7164
7165 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
7166
7167 1999-02-22 Sam Steingold <sds@goems.com>
7168
7169 * goto-addr.el (goto-address-at-mouse,
7170 goto-address-find-address-at-point): Use compose-mail.
7171 (goto-address-mail-method): Removed variable.
7172 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
7173 goto-address-send-using-mail): Removed functions.
7174
7175 1998-11-03 Sam Steingold <sds@goems.com>
7176
7177 * simple.el (backward-delete-char-untabify):
7178 backward-delete-char-untabify-method can be `all' now - to delete
7179 hungrily including newlines.
7180
7181 1999-11-15 Sam Steingold <sds@ksp.com>
7182
7183 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
7184
7185 1999-11-15 Dave Love <fx@gnu.org>
7186
7187 * cus-edit.el (customize-face, customize-face-other-window):
7188 Require match from completing-read.
7189 (custom-buffer-done-function): Default to custom-bury-buffer, not
7190 bury-buffer.
7191
7192 1999-11-15 Gerd Moellmann <gerd@gnu.org>
7193
7194 * mail/rmail.el, iswitchb.el, hippie-exp.el,
7195 progmodes/cperl-mode.el: Use new backquote syntax.
7196
7197 1998-09-14 Michael Ernst <mernst@alum.mit.edu>
7198
7199 * uniquify.el: Use new backquote syntax.
7200
7201 1999-11-14 Markus Rost <rost@ias.edu>
7202
7203 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
7204 as in ispell-local-dictionary-alist.
7205
7206 1999-11-14 Alex Schroeder <alex@gnu.org>
7207
7208 * ansi-color.el (ansi-color-apply): Updated regexps to include
7209 highlighted face.
7210
7211 1999-01-14 Johan Vromans <jvromans@squirrel.nl>
7212
7213 * forms.el (forms--make-format-elt-using-text-properties):
7214 Treat `intangible' differently.
7215
7216 * forms.el: Use new backquote syntax.
7217
7218 1999-11-13 Gerd Moellmann <gerd@gnu.org>
7219
7220 * textmodes/scribe.el (scribe-mode): Doc-fix.
7221
7222 1999-11-13 Peter Breton <pbreton@ne.mediaone.net>
7223
7224 * net-utils.el (run-network-program, net-utils-run-program): Use
7225 the new backquote syntax.
7226 (smbclient-program, smbclient-program-options)
7227 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
7228 variables
7229 (smbclient, smbclient-list-shares): New functions
7230
7231 1999-11-12 Sam Steingold <sds@ksp.com>
7232
7233 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
7234 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
7235 (viper-kbd-buf-definition, viper-kbd-mode-alist)
7236 (viper-kbd-mode-pair, viper-kbd-mode-definition)
7237 (viper-kbd-global-pair, viper-kbd-global-definition):
7238 Use the new backquote syntax.
7239
7240 * emulation/viper-cmd.el (viper-test-com-defun)
7241 (viper-prefix-arg-value, viper-prefix-arg-com):
7242 Use the new backquote syntax.
7243
7244 * emacs-lisp/debug.el (debugger-env-macro):
7245 Use the new backquote syntax.
7246
7247 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
7248 Use the new backquote syntax.
7249
7250 * calendar/calendar.el (calendar-remove-frame-by-deleting):
7251 New user variable.
7252 (calendar-hide-window): Use it.
7253 (increment-calendar-month, calendar-for-loop, calendar-sum):
7254 Use the new backquote syntax.
7255
7256 1999-11-12 Andrew Innes <andrewi@gnu.org>
7257
7258 * select.el (x-set-selection): Call buffer-substring, not
7259 substring. Also fix docstring
7260
7261 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl>
7262
7263 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
7264 of customizable variables to bug report message. Added
7265 system-type to package name in bug report.
7266
7267 1999-11-12 Gerd Moellmann <gerd@gnu.org>
7268
7269 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
7270 to display file names.
7271
7272 1999-11-11 Gerd Moellmann <gerd@gnu.org>
7273
7274 * mwheel.el: Fix copyright notice, don't require 'cl at run time.
7275
7276 * isearch.el: Add lazy-highlighting feature.
7277
7278 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
7279
7280 * progmodes/ps-mode.el (ps-mode-maintainer-address): New
7281 constant.
7282 (ps-mode-submit-bug-report): New function. Entry added to menu.
7283
7284 1999-11-10 William M. Perry <wmperry@aventail.com>
7285
7286 * mwheel.el: New file to support the new style wheeled mice.
7287
7288 1999-11-10 Gerd Moellmann <gerd@gnu.org>
7289
7290 * startup.el (initial-scratch-message): Add ";;" to the front of
7291 lines in the message.
7292
7293 * files.el (file-local-copy): Remove optional BUFFER argument
7294 because that's not used by anything.
7295
7296 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
7297 to-address.
7298
7299 1999-11-08 Markus Rost <rost@ias.edu>
7300
7301 * wid-edit.el (widget-button-click): Wrap with save-excursion
7302 to restore track-mouse in the correct buffer.
7303
7304 1999-11-08 Gerd Moellmann <gerd@gnu.org>
7305
7306 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
7307
7308 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl>
7309
7310 * progmodes/ps-mode.el (ps-mode-print-function): Changed default
7311 lpr-command to "lp" for some system-types. (copied from lpr.el
7312 Emacs version 20.2.1).
7313
7314 1999-11-04 Markus Rost <rost@ias.edu>
7315
7316 * simple.el (comment-region): Strip off white space at end of
7317 comment-start.
7318
7319 1999-11-04 Gerd Moellmann <gerd@gnu.org>
7320
7321 * faces.el (secondary-selection): Fix wrong color name.
7322
7323 1999-11-04 John Tobey <jtobey@epsilondev.com>
7324
7325 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
7326 the default when invoking perldb in a non-Perl buffer, and other
7327 cases involving -e or --.
7328
7329 1999-11-04 Gerd Moellmann <gerd@gnu.org>
7330
7331 * simple.el (previous-matching-history-element)
7332 (next-history-element): Use delete-field instead of erase-field.
7333
7334 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
7335 Use delete-field instead of erase-field.
7336
7337 * faces.el (secondary-selection): Change background to yellow.
7338
7339 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
7340 find the start of the text. Use field-string to read the user
7341 input.
7342
7343 1999-11-03 Gerd Moellmann <gerd@gnu.org>
7344
7345 * faces.el (make-face-bold, make-face-unbold, make-face-italic)
7346 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
7347 for compatibility with old face implementation.
7348
7349 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
7350 Use erase-field instead of erase-buffer.
7351
7352 * frame.el (blink-cursor-mode, blink-cursor-end): Use
7353 internal-show-cursor with new interface.
7354 (blink-cursor-timer-function): New.
7355 (blink-cursor-start): Use blink-cursor-timer-function.
7356
7357 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7358
7359 * calendar.el (redraw-calendar): Move to nearest date before
7360 redrawing.
7361
7362 * diary-lib.el (simple-diary-display): Reset modeline even if
7363 there are no diary entries since the diary buffer may be displayed.
7364
7365 1999-11-03 Richard M. Stallman <rms@gnu.org>
7366
7367 * emacs-lisp/debug.el (debug): If noninteractive, display the
7368 backtrace using `message', then exit Emacs.
7369 (debugger-batch-max-lines): New variable.
7370 (debugger-setup-buffer): New subroutine, broken out of `debug'.
7371 Change the messages put at the start, to say that the debugger
7372 was entered.
7373
7374 1999-11-02 Sam Steingold <sds@ksp.com>
7375
7376 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
7377
7378 1999-11-01 John Tobey <jtobey@epsilondev.com>
7379
7380 * gud.el: (gud-perldb-massage-args): Massage correctly in the
7381 presence of perl switches other than "-e".
7382
7383 1999-11-01 Markus Rost <rost@ias.edu>
7384
7385 * dired-x.el (dired-smart-shell-command): Use
7386 shell-command-history as in shell-command.
7387
7388 1999-11-01 Richard M. Stallman <rms@gnu.org>
7389
7390 * userlock.el (ask-user-about-lock): Doc fix.
7391
7392 * frame.el: Doc fixes.
7393
7394 1999-11-01 Gerd Moellmann <gerd@gnu.org>
7395
7396 * frame.el (blink-cursor-mode): Call internal-show-cursor instead
7397 of show-cursor.
7398 (blink-cursor-start, blink-cursor-end): Ditto.
7399
7400 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
7401
7402 1999-11-01 Richard M. Stallman <rms@gnu.org>
7403
7404 * window.el (walk-windows): If ALL-FRAMES is a frame,
7405 start on that frame. Use save-selected-window.
7406
7407 1999-11-01 Gerd Moellmann <gerd@gnu.org>
7408
7409 * simple.el (end-of-buffer): Use window-end to find the window end
7410 instead of vertical-motion because this handles variable-height
7411 lines correctly.
7412
7413 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu>
7414
7415 * ediff.el: Version change.
7416
7417 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
7418 make sure you are in a good frame before deleting other
7419 windows.
7420 (ediff-file-checked-in-p): Don't consider CVS
7421 files checked in.
7422 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you
7423 are writing to a newly created empty file.
7424
7425 * ediff-mult.el (ediff-show-session-group-hook): New default.
7426
7427 * ediff-vers.el (ediff-pcl-cvs-view-revision):
7428 First cd to the file directory. reportedly works
7429 better with remote files.
7430
7431 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
7432 Use file-name-nondirectory when passing files to CVS.
7433
7434 * ediff-diff.el (ediff-cmp-options): New variable.
7435 (ediff-same-file-contents): Use ediff-cmp-options.
7436
7437 * ediff-ptch.el (ediff-prompt-for-patch-buffer,
7438 ediff-get-patch-buffer): Use current buffer if it appears to be a
7439 patch.
7440
7441 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
7442 C-g
7443
7444 * viper-util.el (viper-nontrivial-find-file-function): Deleted.
7445 (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
7446 (viper-save-cursor-color,viper-restore-cursor-color):
7447 Improved cursor color handling.
7448 (viper-get-saved-cursor-color-in-replace-mode,
7449 viper-get-saved-cursor-color-in-insert-mode): New functions for
7450 better cursor color handling.
7451
7452 * viper-ex.el (ex-read,ex-edit):
7453 Fixes for correct interpretation of #,%.
7454 (viper-ex): Now works correctly when called from other functions.
7455 (viper-glob-function): New variable.
7456 (viper-ex): Save excursion before doing :global.
7457
7458 * viper-mous.el (viper-counting-clicks-p): Bug fixes.
7459
7460 * viper-cmd.el (viper-post-command-sentinel,
7461 viper-insert-state-post-command-sentinel,
7462 viper-insert-state-pre-command-sentinel): Takes better care of
7463 cursor colors.
7464
7465 * viper.el: Version change.
7466
7467 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com>
7468
7469 * whitespace.el (whitespace-update-modeline): Bugfix to ensure
7470 that the modeline display was updated *only* when
7471 `whitespace-display-in-modeline' was set, not otherwise.
7472
7473 1999-10-30 Gerd Moellmann <gerd@gnu.org>
7474
7475 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
7476 "frac12".
7477
7478 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
7479 ad-activate.
7480
7481 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
7482
7483 * whitespace.el: Test for existence of `defcustom' and `defgroup'
7484 using fboundp instead of assuming that these are not present in
7485 particular flavors of emacs.
7486 (whitespace-version): Update to 2.8
7487 (whitespace-display-in-modeline): Add custom variable to control
7488 displaying the whitespace errors on the modeline based on
7489 suggestion from <klaus.berndl@sdm.de>
7490 (whitespace-buffer): Now returns `t' if unclean and `nil' if
7491 clean, to enable using as a hook function, as suggested by Puneet
7492 Goel <puneet@computer.org>
7493 (whitespace-buffer): Fix a subtle bug that cleaned up only if
7494 quiet was not set, even with whitespace-auto-cleanup set.
7495 (whitespace-mode-line): Now uses less modeline real estate and
7496 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
7497 which is present in the file, and <y> is any type of whitespace
7498 whose check has been suppressed by setting
7499 `whitespace-check-<whitespace-type>' to nil.
7500 (whitespace-unchecked-whitespaces): New function to return the
7501 list of whitespaces for whom checks have been suppressed.
7502 (whitespace-display-unchecked-whitespaces): Renamed to
7503 `whitespace-update-modeline' to reflect its functionality.
7504
7505 1999-10-30 Gerd Moellmann <gerd@gnu.org>
7506
7507 * progmodes/compile.el (compilation-error-regexp-alist):
7508 Undo previous change.
7509
7510 1999-10-28 Dave Love <fx@gnu.org>
7511
7512 * help.el (help-follow): Make arg optional again and really
7513 default to point.
7514
7515 1999-10-28 Gerd Moellmann <gerd@gnu.org>
7516
7517 * paths.el (rmail-file-name): Make it an option.
7518
7519 * progmodes/ada-mode.el, progmodes/ada-prj.el,
7520 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
7521 comment fixes.
7522
7523 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
7524 MIPS Pro 7.3 compiler error message syntax.
7525
7526 1999-10-27 Dave Love <fx@gnu.org>
7527
7528 * progmodes/compile.el: Checkdoc-inspired fixes.
7529
7530 1999-10-27 Gerd Moellmann <gerd@gnu.org>
7531
7532 * lpr.el (print-buffer): Doc-string fix.
7533
7534 1999-10-27 Dave Love <fx@gnu.org>
7535
7536 * emacs-lisp/advice.el: Doc fixes.
7537 (ad-lemacs-p): Removed.
7538 (advice): Add :link to defgroup.
7539
7540 1999-10-27 Kenichi Handa <handa@etl.go.jp>
7541
7542 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
7543 last-coding-system-used by the call of ange-ftp-set-ascii-mode.
7544
7545 1999-10-24 Richard M. Stallman <rms@gnu.org>
7546
7547 * window.el (walk-windows): If ALL-FRAMES is a frame,
7548 start on that frame. Use save-selected-window.
7549
7550 1999-10-27 Richard M. Stallman <rms@gnu.org>
7551
7552 * emacs-lisp/advice.el (ad-activate-internal): Renamed from
7553 ad-activate. All callers changed, including those in data.c.
7554 (ad-activate-internal-off): Renamed from ad-activate-off.
7555 All uses changed.
7556 (ad-activate): Renamed from ad-activate-on. All uses changed.
7557 (ad-start-advice, ad-stop-advice, ad-recover-normality):
7558 Alter the definition of ad-activate-internal, not ad-activate.
7559
7560 1999-10-26 Gerd Moellmann <gerd@gnu.org>
7561
7562 * startup.el (command-line-1): Add support for command line
7563 arguments `file' and `execute'. Fix handling of `visit'.
7564
7565 1999-10-26 Kenichi Handa <handa@etl.go.jp>
7566
7567 * international/mule-cmds.el (read-input-method-name): Handle the
7568 case that the arg DEFAULT is symbol.
7569
7570 * international/mule-diag.el (mule-diag): Handle the case that
7571 default-input-method is symbol.
7572
7573 1999-10-26 Gerd Moellmann <gerd@gnu.org>
7574
7575 * textmodes/tildify.el: New file.
7576
7577 1999-10-25 Sam Steingold <sds@ksp.com>
7578
7579 * Makefile (compile-files): Fixed the "tr" strings.
7580 (EMACS): Set to ../src/emacs.
7581
7582 1999-10-25 Gerd Moellmann <gerd@gnu.org>
7583
7584 * info.el (Info-build-node-completions): Add '("*") to the
7585 completion list.
7586
7587 1999-10-25 Richard M. Stallman <rms@gnu.org>
7588
7589 * frame.el (auto-raise-mode): When enabling the mode,
7590 immediately raise the selected frame.
7591
7592 * indent.el (indent-region): Doc fix.
7593
7594 * comint.el (comint-output-filter): Make the Comint buffer current
7595 for the comint-preoutput-filter-functions.
7596
7597 * mail/reporter.el: Doc fix.
7598
7599 1999-10-24 Stephen Eglen <stephen@gnu.org>
7600
7601 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
7602 that Octave lisp files can also run under XEmacs 20.
7603 (require 'custom) added so that files can run under Emacs 19.34.
7604
7605 * iswitchb.el (iswitchb-default-keybindings): No need to use
7606 read-kbd-macro in keybindings.
7607
7608 1999-10-23 Dave Love <fx@gnu.org>
7609
7610 * elide-head.el: New file.
7611
7612 1999-10-23 Gerd Moellmann <gerd@gnu.org>
7613
7614 * Makefile (compile-files, backup-compiled-files): New targets.
7615 (bootstrap, bootstrap-clean): Ditto.
7616
7617 1999-10-22 Paul Eggert <eggert@twinsun.com>
7618
7619 * international/mule-cmds.c (locale-language-names):
7620 Use Latin-1 (not Latin-3) for Afrikaans, Galician.
7621 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
7622 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
7623 Use Latin-8 for Welsh.
7624 Use Latin-1 for English if "en" is explicitly specified.
7625 Use Latin-1 for Scots Gaelic, Tagalog.
7626 Use Latin-1 (not Latin-4) for Greenlandic.
7627 Use Latin-1 (not Latin-2) for Albanian.
7628 (locale-preferred-coding-systems, locale-language-names):
7629 Remove generic ISO 8859 locales; locale-charset-language-names now
7630 does this.
7631 (locale-charset-language-names): New variable.
7632 (set-locale-environment): Use language name specified by
7633 locale-charset-language-names if its charsets disagree with the
7634 language name specified by locale-language-names.
7635
7636 1999-10-22 Dave Love <fx@gnu.org>
7637
7638 * make-mode.el: Minor doc fixes.
7639
7640 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
7641
7642 1999-10-21 Dave Love <fx@gnu.org>
7643
7644 * loadup.el: Add latin-8, latin-9.
7645
7646 1999-10-20 Paul Eggert <eggert@twinsun.com>
7647
7648 * disp-table.el (standard-display-european): Remove undocumented
7649 arg AUTO; no longer used by startup.el. Do not attempt to treat
7650 all non-English language environments as coding system names.
7651 Instead, use the downcased language environment name as a coding
7652 system name if it is one; otherwise, use latin-1.
7653
7654 1999-10-20 Gerd Moellmann <gerd@gnu.org>
7655
7656 * dired.el (dired-move-to-filename-regexp): Fix long comment lines
7657 that were split so that part of the comment appeared as Lisp code.
7658
7659 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7660
7661 * ps-bdf.el: Doc fix.
7662
7663 * ps-print-def.el: New file: common definitions for all parts of
7664 ps-print.
7665 (ps-multibyte-buffer): Moved from ps-mule.
7666
7667 * ps-mule.el: File dependence fix.
7668 (ps-multibyte-buffer): Moved to ps-print-def.
7669
7670 * ps-print.el: Doc fix, better customization.
7671 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
7672 (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
7673 (ps-end-file): Doc fix.
7674 (ps-setup, ps-begin-file): Fun fix.
7675 (postscript): New group.
7676 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
7677 (ps-print-prologue-1): Adjust PostScript programming.
7678 (ps-print): Adjust group hierarchy.
7679 (ps-print-n-up, ps-print-zebra, ps-print-background,
7680 ps-print-printer)
7681 (ps-print-page): New subgroups.
7682 (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
7683 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
7684 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
7685 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
7686 (ps-zebra-stripe-height, ps-print-background-image)
7687 (ps-print-background-text, ps-spool-config): Adjust customization.
7688 (dos-ps-printer): Definition eliminated.
7689
7690 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7691
7692 * ps-mule.el: Doc fix, define functions properly if mule package is
7693 loaded or not.
7694 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
7695 mule package is loaded or not.
7696
7697 * ps-print.el: Doc fix, n-up printing.
7698 (ps-print-version): New version number (5.0).
7699 (ps-page-dimensions-database): Added document media.
7700 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
7701 (ps-page-order, ps-printing-region-p): New vars.
7702 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
7703 funs.
7704 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
7705 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
7706 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
7707 (ps-n-up-xstart, ps-n-up-ystart): New macros.
7708 (ps-print-begin-sheet-hook): New hook.
7709 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
7710 const.
7711 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
7712 (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
7713 (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
7714 (ps-count-lines): Changed to defun.
7715 (ps-header-page): Changed to defsubst, fix fun.
7716 (ps-printing-region): Doc fix, adjust programming code.
7717 (ps-output-boolean, ps-background-pages, ps-background-text)
7718 (ps-background-image, ps-background, ps-get-boundingbox): Adjust
7719 programming code.
7720
7721 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7722
7723 * ps-print.el: Doc fix, duplex and setpagedevice configuration.
7724 (ps-print-version): New version number (4.2).
7725 (ps-spool-config, ps-spool-tumble): New vars.
7726 (ps-print-prologue-1): Changed to defconst, adjust PostScript
7727 programming, new PostScript procedure to handle errors.
7728 (ps-print-prologue-2): Changed to defconst.
7729 (ps-print-duplex-feature): New const: duplex and tumble setting.
7730 (ps-setup, ps-begin-file): Fix funs.
7731 (ps-boolean-capitalized): New fun.
7732
7733 1999-10-19 Stefan Monnier <monnier@cs.yale.edu>
7734
7735 * Makefile (dontcompilefiles): Obsoleted.
7736 (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
7737 (EL): Unused.
7738 (temacs): Removed (unused).
7739 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
7740 version of the file (necessary for the update to work properly).
7741 (autoloads): Force the use of `pwd`/loaddefs.el.
7742 (updates); Redefined in terms of other targets to reduce redundancy.
7743 (.el.elc): New default rule, just in case you want it.
7744 (compile): Use a single invocation of Emacs.
7745 (bootstrap-compile); Unneeded.
7746 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
7747
7748 1999-10-19 Dave Love <fx@gnu.org>
7749
7750 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
7751
7752 1999-10-19 Sam Steingold <sds@ksp.com>
7753
7754 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
7755 comply with the comment.
7756
7757 1999-10-19 Gerd Moellmann <gerd@gnu.org>
7758
7759 * autorevert.el (auto-revert-mode): Make auto-revert-mode
7760 permanent-local.
7761
7762 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl>
7763
7764 * progmodes/ps-mode.el (ps-mode-print-function): Fix default
7765 value: \"lpr\" changed to "lpr"
7766 (ps-mode-version): New constant
7767 (ps-mode-show-version): New function, added key in ps-mode-map
7768 (ps-run-messages): Removed
7769 (ps-run-font-lock-keywords-2): New defcustom variable replacing
7770 ps-run-messages. These keywords now include the value of
7771 ps-run-prompt, making its fontification customizable.
7772 (ps-run-init): Removed \\n from docstring, it is now added when
7773 the value is used
7774 (ps-run-font-lock-keywords-1): Added checking for initial ^ in
7775 ps-run-prompt
7776 (ps-mode): Added ps-run-font-lock-keywords-2 to list of
7777 customizable variables in doc-string (its equivalent
7778 ps-run-messages was missing in previous version of the doc-string)
7779 (ps-run-mode): Simplified assignment to font-lock-defaults, using
7780 symbols only
7781
7782 1999-10-19 Alex Schroeder <alex@gnu.org>
7783
7784 * ansi-color.el: Complete rewrite.
7785
7786 1999-10-19 Paul Eggert <eggert@twinsun.com>
7787
7788 Fix bootstrapping problems.
7789 Use the system locale to specify Emacs locale defaults.
7790
7791 * international/mule-cmds.el (global-map):
7792 Do not use backquote, because that makes a bootstrapping
7793 problem if you need to recompile all Lisp files using interpreted code.
7794 * international/mule.el (charset-id, charset-bytes,
7795 charset-dimension, charset-chars, charset-width,
7796 charset-direction, charset-iso-final-char,
7797 charset-iso-graphic-plane, charset-reverse-charset,
7798 charset-short-name, charset-long-name, charset-description,
7799 charset-plist): Likewise.
7800 * subr.el (save-match-data): Likewise.
7801
7802 * international/mule-cmds.el
7803 (set-display-table-and-terminal-coding-system): New function,
7804 containing code migrated out of set-language-environment.
7805 (set-language-environment, set-locale-environment): Use it.
7806 (locale-translation-file-name): Moved here from startup.el.
7807 (locale-language-names, locale-preferred-coding-systems):
7808 New vars.
7809 (locale-name-match, set-locale-environment): New functions.
7810
7811 * language/japan-util.el (setup-japanese-environment-internal):
7812 Prefer japanese-iso-8bit if the system-type is usg-unix-v.
7813
7814 * startup.el (iso-8859-n-locale-regexp): Remove.
7815 (locale-translation-file-name): Move to mule-cmds.el.
7816 (command-line): Move locale-stuff into set-locale-environment.
7817
7818 1999-10-18 Dave Love <fx@gnu.org>
7819
7820 * abbrev.el (add-abbrev, inverse-add-abbrev)
7821 (expand-region-abbrevs): Remove properties from buffer text.
7822
7823 1999-10-17 Gerd Moellmann <gerd@gnu.org>
7824
7825 * iswitchb.el (iswitchb-exhibit): Extract user-input only
7826 from the mini-buffer, without the prompt.
7827
7828 * simple.el (minibuffer-prompt-end): Return the position
7829 after the prompt, not the position of that last character
7830 of the prompt.
7831
7832 1999-10-17 Miles Bader <miles@gnu.org>
7833
7834 * simple.el: Doc fixes.
7835
7836 1999-10-17 Miles Bader <miles@gnu.org>
7837
7838 * simple.el (previous-matching-history-element, next-history-element):
7839 Change to work correctly even if the point is in the prompt.
7840 (choose-completion-string): Likewise.
7841 (minibuffer-prompt-width): New function (compatibility with old subr).
7842
7843 * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
7844 When constraining the final position to the current field,
7845 don't use the ONLY-IN-LINE mode of constrain-to-field.
7846
7847 1999-10-17 Miles Bader <miles@gnu.org>
7848
7849 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
7850 constrain-to-field.
7851 * textmodes/paragraphs.el (forward-sentence): Likewise.
7852
7853 1999-10-17 Miles Bader <miles@gnu.org>
7854
7855 * simple.el (line-move): Use constrain-to-field to avoid
7856 moving into a prompt.
7857 (previous-complete-history-element): Clarify doc string.
7858 (next-complete-history-element): Likewise.
7859 Use field-beginning instead of point-min.
7860 (next-matching-history-element): Use field-beginning and
7861 erase-field instead of point-min and erase-buffer.
7862 * textmodes/paragraphs.el
7863 (forward-paragraph, forward-sentence): Likewise.
7864 (backward-kill-paragraph, backward-kill-sentence): Remove code to
7865 constrain the kill to an field, as the movement commands now
7866 do this.
7867
7868 1999-10-17 Miles Bader <miles@gnu.org>
7869
7870 * simple.el (previous-matching-history-element): Get the
7871 minibuffer input with field-string instead of buffer-string.
7872 (choose-completion-string): Likewise.
7873 (next-history-element): Likewise.
7874 Erase the minibuffer input with erase-field, not erase-buffer.
7875 Use field-beginning to find the beginning of the input.
7876 * textmodes/paragraphs.el (backward-kill-sentence):
7877 Remove minibuffer-prompt hack.
7878 Constrain to any input field.
7879
7880 1999-10-17 Sam Steingold <sds@ksp.com>
7881
7882 * bindings.el (completion-ignored-extensions): Added ".sparcf"
7883 for CMUCL on sparc and ".ufsl" for LispWorks.
7884 (bound-and-true-p): Bugfix: free variable `v'.
7885
7886 1999-10-16 Dave Love <d.love@dl.ac.uk>
7887
7888 * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
7889 (edebug-uninstall-read-eval-functions): Use load-read-function,
7890 avoiding elisp-eval.
7891
7892 1999-10-16 Sam Steingold <sds@ksp.com>
7893
7894 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
7895 instead of `eql'.
7896
7897 1999-10-14 Stefan Monnier <monnier@cs.yale.edu>
7898
7899 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
7900 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
7901 (browse-url-temp-file-list, browse-url-delete-temp-file-list):
7902 * ediff-util.el (ediff-make-temp-file):
7903 * ediff-vers.el (ediff-pcl-cvs-view-revision):
7904 * emerge.el (emerge-make-temp-file):
7905 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
7906 * vc.el (vc-update-change-log):
7907 * mail/mailpost.el (post-mail-send-it):
7908 * mail/metamail.el (metamail-region):
7909 * progmodes/cmacexp.el (c-macro-expansion):
7910 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
7911
7912 1999-10-15 Gerd Moellmann <gerd@gnu.org>
7913
7914 * smtpmail.el (smtpmail-via-smtp): Add support for
7915 automatically appending a domain to RCPT TO: addresses.
7916
7917 1999-10-14 Richard M. Stallman <rms@gnu.org>
7918
7919 * dired.el (dired-insert-directory): Insert the amount of
7920 free space after the total size.
7921 (dired-free-space-program, dired-free-space-args): New variables.
7922
7923 1999-10-14 Karl Heuer <kwzh@gnu.org>
7924
7925 * mail/rmail.el (rmail-pop-password-error): Add new pattern.
7926
7927 1999-10-14 Dave Love <fx@gnu.org>
7928
7929 * international/characters.el:
7930 * international/fontset.el:
7931 * international/mule-conf.el: Add latin-iso8859-1[45].
7932
7933 * language/european.el: Add Latin-8, Latin-9. Modify some doc
7934 strings.
7935
7936 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
7937 (command-line): Detect Latin-[89] locales.
7938
7939 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
7940
7941 * international/mule-cmds.el (select-safe-coding-system)
7942 (leim-list-header): Avoid the use of strings that start with backslash
7943 newline since lread.c:read1 has a hack to turn those strings into
7944 integer 0 during the loadup.el process.
7945
7946 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
7947
7948 1999-10-13 Dave Love <fx@gnu.org>
7949
7950 * image.el (insert-image): Copy the image spec and add an
7951 intangible property.
7952
7953 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
7954
7955 * help.el (help-xref-interned): Make it also work on variable-only
7956 and function-only symbols.
7957 (help-make-xrefs): Take advantage of the new `help-xref-interned'.
7958 (help-follow): If the point under mouse is not highlighted, try
7959 `help-xref-interned' on the pointed-to symbol anyway.
7960
7961 * info.el (Info-on-current-buffer): New entry point.
7962 (Info-find-node): Split into two for Info-on-current-buffer to
7963 hook into it.
7964 (Info-current-file, Info-set-mode-line, Info-up):
7965 Info-current-file can now be t.
7966 (Info-clone-buffer-hook): Function for `clone-buffer'.
7967 (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
7968 Make `clone-buffer' available in various ways to the user.
7969
7970 1999-10-12 Stefan Monnier <monnier@cs.yale.edu>
7971
7972 * simple.el (shell-command, shell-command-on-region): Use
7973 make-temp-file.
7974 (clone-buffer, clone-process, clone-buffer-hook): New functions.
7975
7976 * subr.el (with-current-buffer): Don't use backquotes to avoid
7977 bootstrapping problems.
7978
7979 * loadup.el (load-path): Add subdirs for bootstrapping.
7980 (docstrings): Ignore errors during bootstrapping.
7981 (args): New `bootstrap' argument (for use in place of `dump').
7982
7983 1999-10-12 Emmanuel Briot <briot@gnat.com>
7984
7985 * ada-stmt.el: Doc-string fixes.
7986
7987 1999-10-12 Gerd Moellmann <gerd@gnu.org>
7988
7989 * recentf.el: New file.
7990
7991 * ps-mode.el: New file.
7992
7993 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
7994 case insensitive.
7995
7996 1999-10-12 Richard Sharman <rsharman@pobox.com>
7997
7998 * sh-script.el: Added support for indenting existing scripts.
7999 (sh-mode-map): Added new bindings.
8000 (sh-mode): Updated mode doc-string for new commands, added
8001 make-local-variable calls, initialize mode-specific variables.
8002 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line
8003 is now a different function.
8004 (sh-header-marker): Changed docstring.
8005 (sh-set-shell): Initialize mode-specific variables.
8006 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
8007 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
8008 Changed these define-skeleton calls to work with user-specified
8009 indentation settings.
8010 (sh-basic-indent-line, sh-blink, sh-calculate-indent)
8011 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
8012 (sh-electric-hash, sh-electric-less, sh-electric-rparen)
8013 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
8014 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
8015 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
8016 (sh-guess-basic-offset, sh-handle-after-case-label)
8017 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
8018 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
8019 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
8020 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
8021 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
8022 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
8023 (sh-handle-this-then, sh-help-string-for-variable)
8024 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
8025 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
8026 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
8027 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
8028 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
8029 (sh-remove-our-text-properties, sh-rescan-buffer)
8030 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
8031 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
8032 (sh-scan-case, sh-search-word, sh-set-char-syntax)
8033 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
8034 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
8035 functions.
8036 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
8037 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
8038 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
8039 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
8040 (sh-var-list): New variables.
8041
8042 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk>
8043
8044 * quickurl.el (quickurl-list-insert): `count-lines' was returning
8045 a value one line to high if the cursor wasn't at the start of a
8046 line. A `beginning-of-line' is now performed before making the
8047 call to `count-lines'.
8048
8049 1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
8050
8051 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
8052
8053 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
8054
8055 * Makefile (setwins): Abstract out the command to find subdirectories
8056 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
8057 (custom-deps, finder-data, autoloads, update-subdirs, updates)
8058 (autoloads-with-other-emacs): Use it.
8059
8060 * diff-mode.el: New file. A mode for viewing/editing context diffs.
8061
8062 1999-10-09 Gerd Moellmann <gerd@gnu.org>
8063
8064 * Makefile (bootstrap-compile): New target. Compile Lisp
8065 files with ../src/temacs.
8066
8067 1999-10-08 Dave Love <fx@gnu.org>
8068
8069 * ange-ftp.el: Require dired when compiling.
8070 (ange-ftp-normal-login): Allow EFS-style port specification.
8071
8072 1999-10-08 Simon Marshall <simon@gnu.org>
8073
8074 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
8075 (regexp-opt-group): Use it to get common suffixes in STRINGS.
8076 If STRINGS is nil, return "" rather than nil.
8077
8078 1999-10-08 Gerd Moellmann <gerd@gnu.org>
8079
8080 * Makefile (compile): Compile files one by one. Set load-path to
8081 current directory and subdirectories when compiling.
8082
8083 1999-10-08 Gerd Moellmann <gerd@gnu.org>
8084
8085 * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
8086 (emacs): Use it everywhere instead of EMACS.
8087 (compile): New target. Compile all Lisp files from scratch.
8088 (recompile): New target. Recompile lisp directory.
8089 (autoloads-with-other-emacs): New target. Build loaddefs.el with
8090 an Emacs executable not built in the current directory tree.
8091
8092 1999-10-07 Peter Breton <pbreton@ne.mediaone.net>
8093
8094 * filecache.el (file-cache-completion-ignore-case): New variable,
8095 defaulting to the value of completion-ignore-case.
8096 (file-cache-minibuffer-complete): Use it.
8097 (file-cache-files-matching, file-cache-files-matching-internal):
8098 New functions.
8099
8100 1999-10-07 Emmanuel Briot <briot@gnat.com>
8101
8102 * ada-xref.el: New file
8103
8104 * ada-prj.el: New file
8105
8106 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
8107
8108 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
8109 subprogram being created.
8110
8111 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
8112 ada-indent-newline-indent): Rewritten to support the new indentation
8113 scheme
8114
8115 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
8116 New functions
8117
8118 * ada-mode.el (ada-fill-comment-paragraph): Add support for the
8119 justification parameter
8120
8121 * ada-mode.el (ada-make-body, ada-gen-treat-proc,
8122 ada-make-subprogram-body): Rewritten to benefit from the gnatstub
8123 external program
8124
8125 1999-10-07 Dave Love <fx@gnu.org>
8126
8127 * bindings.el (bound-and-true-p): New macro.
8128 (make-mode-line-mouse-sensitive): Don't require easymenu.
8129
8130 1999-10-07 Gerd Moellmann <gerd@gnu.org>
8131
8132 * custom.el (defface): Extend documentation for new values of
8133 `type'.
8134
8135 * faces.el (face-spec-set-match-display): Recognize `type' of
8136 `motif', `lucid', `x-toolkit'.
8137 (menu): New face.
8138
8139 1999-10-05 Dave Love <fx@gnu.org>
8140
8141 * files.el: Recognize temporary crontab files.
8142
8143 * info.el: Require jka-compr when compiling.
8144 (Info-suffix-list): Add bzip2 files (non-ms-dos only).
8145
8146 1999-10-04 Dave Love <fx@gnu.org>
8147
8148 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
8149 scroll-up-aggressively, scroll-down-aggressively.
8150
8151 * time.el (display-time-mode): Add autoload cookie.
8152
8153 * rect.el (delete-extract-rectangle): Doc fix from verna.
8154
8155 * help-macro.el (three-step-help): Customize.
8156
8157 1999-10-04 Richard M. Stallman <rms@gnu.org>
8158
8159 * hexl.el (hexlify-buffer): Move point in proper range
8160 if it is too large.
8161 (hexl-after-revert-hook): Update hexl-max-address.
8162 (hexl-address-to-marker): Doc fix.
8163
8164 1999-10-03 Dave Love <fx@gnu.org>
8165
8166 * image.el (defimage): Remove redundant code. Substitute file in
8167 image plist.
8168
8169 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
8170
8171 * vc.el (vc-backend-checkout): Use coding system 'no-conversion
8172 when doing with-temp-file.
8173
8174 1999-10-01 Dave Love <fx@gnu.org>
8175
8176 * cus-edit.el (custom-comment-create): Fill :from and :to slots.
8177
8178 * help.el: Require view when compiling.
8179 (view-emacs-FAQ): Use Info version.
8180
8181 1999-09-29 Ken'ichi Handa <handa@gnu.org>
8182
8183 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
8184 (normat->normal). Use correct font names for Korean
8185 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
8186
8187 1999-09-29 Kenichi Handa <handa@etl.go.jp>
8188
8189 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
8190 code not used by KOI8 to the same 8-bit code instead of mapping to
8191 SPC.
8192 (cyrillic-alternativnyj-decode-table): Likewise.
8193
8194 1999-09-29 Alex Schroeder <alex@gnu.org>
8195
8196 * sql.el (sql-imenu-generic-expression): Aew, used to set
8197 imenu-generic-expression.
8198 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
8199 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression,
8200 imenu-case-fold-search, and imenu-syntax-alist.
8201 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
8202 setting font-lock-defaults' SYNTAX-ALIST.
8203
8204 1999-09-28 Richard M. Stallman <rms@gnu.org>
8205
8206 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
8207 macro, try again.
8208
8209 1999-09-28 Dave Love <fx@gnu.org>
8210
8211 * cus-edit.el (custom-comment): Change widget definition.
8212 (custom-comment-create, custom-comment-show)
8213 (custom-comment-invisible-p): Don't use :comment-overlay.
8214 (custom-comment-hide): New function.
8215 (custom-variable-set, custom-variable-save)
8216 (custom-variable-reset-standard, custom-face-set)
8217 (custom-face-save): Use it.
8218
8219 1999-09-27 Richard M. Stallman <rms@gnu.org>
8220
8221 * hexl.el (hexl-mode): Do nothing if already in hexl mode.
8222
8223 1999-09-27 Richard M. Stallman <rms@gnu.org>
8224
8225 * faces.el (region): Doc fix.
8226
8227 1999-09-27 Dave Love <fx@gnu.org>
8228
8229 * isearch.el (isearch): Add :links in defgroup.
8230 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
8231 (isearch-switch-frame-handler): Comment out (unused).
8232 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
8233 (isearch-ring-retreat-edit): Doc fix.
8234 (isearch-mouse-yank): New command.
8235 (isearch-last-command-char): Removed. Callers changed to use
8236 last-command-char.
8237 (isearch-char-to-string): Removed. Callers changed to use
8238 char-to-string.
8239
8240 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
8241
8242 * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
8243 option for Russian.
8244
8245 1999-09-25 Gerd Moellmann <gerd@gnu.org>
8246
8247 * faces.el (face-differs-from-default-p): Compare face
8248 attributes individually.
8249
8250 * image.el (put-image, insert-image): Add string argument.
8251
8252 1999-09-24 Gerd Moellmann <gerd@gnu.org>
8253
8254 * ange-ftp.el (ange-ftp-date-regexp): Make it work for
8255 LANG=de_DE.iso88591 on HPUX 11.0.
8256
8257 * dired.el (dired-move-to-filename-regexp): Make it work
8258 for LANG=de_DE.iso88591 on HPUX 11.0.
8259
8260 1999-09-24 Richard M. Stallman <rms@gnu.org>
8261
8262 * info.el (info-initialize): Don't test existence of ALTERNATIVE
8263 if we know for some other reason it should not be used.
8264
8265 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
8266 New variable.
8267 (edebug-recursive-edit): Save current-prefix-arg there,
8268 bind it, and set it back at the end.
8269 (edebug-outside-excursion): Restore and update the outside
8270 value of current-prefix-arg.
8271 (edebug-emacs-version-specific): Delete support for Epoch.
8272
8273 1999-09-24 Howard Melman <howard@silverstream.com>
8274
8275 * imenu.el (imenu-after-jump-hook): New variable.
8276 (imenu): Run menu-after-jump-hook.
8277 (imenu-name-lookup-function): New variable.
8278 * imenu.el (imenu--in-alist): Use those variables.
8279
8280 1999-09-24 Carsten Dominik <cd@gnu.org>
8281
8282 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
8283 multiple thebibliography environments.
8284
8285 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
8286 with recentering window.
8287 (reftex-extract-bib-entries-from-thebibliography,
8288 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal
8289 with multiple thebibliography environments.
8290
8291 * textmodes/reftex-vars.el
8292 (reftex-section-levels): Function allowed as cdr.
8293 (reftex-max-section-depth) New option.
8294
8295 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
8296 with multiple thebibliography environments.
8297
8298 1999-09-23 Gerd Moellmann <gerd@gnu.org>
8299
8300 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
8301 instead of point-min in call to delete-region.
8302
8303 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de>
8304
8305 * vc.el (vc-backend-checkout): Use with-temp-file when checking
8306 out into arbitrary file names.
8307
8308 1999-09-19 Ken'ichi Handa <handa@gnu.org>
8309
8310 * language/european.el ("Turkish"): New language environment.
8311
8312 1999-09-19 Dave Love <fx@gnu.org>
8313
8314 * delim-col.el: New file.
8315
8316 1999-09-17 Richard Stallman <rms@gnu.org>
8317
8318 * files.el (after-find-file): When visiting a backup file,
8319 make it read-only.
8320
8321 * apropos.el (apropos-symbol-face): Non-nil even for ttys.
8322 (apropos-keybinding-face, apropos-label-face): Likewise.
8323 (apropos-property-face, apropos-match-face): Likewise.
8324 (apropos-label-properties): New variable.
8325 (apropos-print-doc): Use apropos-label-properties.
8326 (apropos-print): Set apropos-label-properties.
8327
8328 1999-09-15 Richard Stallman <rms@gnu.org>
8329
8330 * winner.el: Use aref instead of sref.
8331
8332 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
8333
8334 1999-09-14 Gerd Moellmann <gerd@gnu.org>
8335
8336 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
8337
8338 1999-09-14 Richard Stallman <rms@gnu.org>
8339
8340 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
8341 cookie, even if followed by a letter.
8342
8343 1999-09-14 Stephen Eglen <stephen@gnu.org>
8344
8345 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
8346 --no-line-editing are passed to Octave by including them here
8347 rather than storing them in inferior-octave-startup-args.
8348
8349 1999-09-14 Eli Zaretskii <eliz@gnu.org>
8350
8351 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
8352 command, option, env and sc.
8353
8354 * subr.el (shell-quote-argument): Quote argument with double
8355 quotes for ms-dos.
8356
8357 1999-09-14 Richard Stallman <rms@gnu.org>
8358
8359 * simple.el (eval-expression-print-level): New variable.
8360 (eval-expression-print-length): New variable.
8361 (eval-expression-debug-on-error): New variable.
8362 (eval-expression): Bind print-level, print-length and
8363 debug-on-error from those vars.
8364
8365 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
8366 Bind print-level, print-length and debug-on-error.
8367
8368 1999-09-14 Inge Frick <inge@nada.kth.se>
8369
8370 * dired.el (dired-recursive-deletes): New custom variable.
8371 (dired-re-no-dot): New variable.
8372 (dired-delete-file): New function deletes files and directories
8373 recursively.
8374 (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
8375
8376 * dired-aux.el (dired-recursive-copies): New custom variable.
8377 (dired-handle-overwrite): Broke a long line.
8378 (dired-copy-file): Call `dired-copy-file-recursive' instead of
8379 `copy-file'.
8380 (dired-copy-file-recursive): New function. Copy directories
8381 recursively.
8382 (dired-do-create-files): Added support for generalized directory
8383 target. How-to function may now return a function. New fluid
8384 variable `dired-one-file'.
8385 (dired-copy-how-to-fn): New variable.
8386 (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
8387 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
8388 (dired-do-copy-regexp): No recursive copies.
8389
8390 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com>
8391
8392 * whitespace.el (whitespace-version): Update version to 2.4
8393
8394 * whitespace.el: Add customization variables to conditionally test
8395 any of the five whitespaces, per request from Rune Kleveland
8396 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
8397
8398 * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
8399
8400 * whitespace.el (whitespace-modes): Add `change-log-mode' to the
8401 list of modes to be checked for bogus whitespaces.
8402
8403 * whitespace.el (whitespace-rescan-timer-time): Update
8404 documentation.
8405
8406 * whitespace.el (whitespace-display-unchecked-whitespaces):
8407 New function to update modeline with untested whitespaces.
8408
8409 * whitespace.el (whitespace-buffer): Test only whitespaces whose
8410 checking is turned on, and update modeline using the newly created
8411 `whitespace-display-unchecked-whitespaces'.
8412
8413 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
8414 whose checking is turned on, and update modeline using the newly
8415 created `whitespace-display-unchecked-whitespaces'.
8416
8417 * whitespace.el (whitespace-describe): Update documentation.
8418
8419 * whitespace.el (whitespace-tickle-timer): Test if
8420 `whitespace-rescan-timer-time' is non-zero before tickling timer.
8421
8422 1999-09-13 Dave Love <fx@gnu.org>
8423
8424 * hideif.el (hide-ifdef-mode): Add autoload cookie.
8425
8426 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
8427 for temp buffer.
8428 (checkdoc-this-string-valid): Don't assume default comment-start.
8429
8430 1999-09-13 Gerd Moellmann <gerd@gnu.org>
8431
8432 * rsz-mini.el: Remove code, keep the interface.
8433
8434 1999-09-13 Dave Love <fx@gnu.org>
8435
8436 * help.el (help-highlight-p): Doc fix.
8437
8438 * faces.el (mode-line, header-line, tool-bar): Add :version.
8439 (highlight, secondary-selection): Add :group.
8440 (trailing-whitespace): Add :group, :version.
8441
8442 * wid-edit.el: Remove some compatibility code and checks.
8443 (widget-specify-field, widget-specify-button): Don't use XEmacs
8444 properties.
8445 (widget-overlay-inactive): Change error message.
8446 (widget-button-pressed-face): New variable.
8447 (widget-button-click): Use it.
8448 (widget-documentation-link-add): Specify mouse and button faces.
8449 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
8450 removed now the functionality is built in.
8451
8452 * cus-edit.el: Don't define-widget-keywords.
8453 (multimedia): New group.
8454 (custom-last): Function removed.
8455 (custom-quote): Add vectorp case, comment out characterp case.
8456 (custom-buffer-done-function, custom-raised-buttons): New option.
8457 (Custom-buffer-done): New function.
8458 (custom-buffer-create-internal): Obey custom-raised-buttons,
8459 Custom-buffer-done.
8460 (custom-button-face): Make it `released-button'.
8461 (custom-button-pressed-face): Make it `pressed-button'
8462 (custom-mode-map): Bind "q" to Custom-buffer-done.
8463 (custom-mode): Deal with raised/pressed buttons.
8464
8465 Changes from Didier Verna:
8466 (custom-prompt-variable): Optional third arg makes prompt for a
8467 comment string.
8468 (customize-set-value, customize-set-variable,
8469 customize-save-variable): Optional prefix makes function handle
8470 variable comments.
8471 (customize-customized, customize-saved, custom-variable-state-set)
8472 (custom-variable-set, custom-variable-save, custom-face-state-set)
8473 (custom-variable-reset-saved, custom-variable-reset-standard)
8474 (custom-face-set, custom-face-save, custom-face-reset-saved)
8475 (custom-face-reset-standard, customize-save-customized): Handle
8476 custom comments.
8477 (custom-comment-face, custom-comment-tag-face): New face.
8478 (custom-comment): New widget.
8479 (custom-comment-create, custom-comment-delete)
8480 (custom-comment-value-set, custom-comment-show)
8481 ()custom-comment-invisible-p): New functions.
8482 (custom-variable-value-create, custom-face-value-create): Create a
8483 comment field widget.
8484 (custom-variable-menu, custom-face-menu): New entry for custom
8485 comment.
8486 (custom-face-value-create): Remove compatibility code.
8487 (custom-save-variables, custom-save-faces): Possibly save custom
8488 comments.
8489
8490 * cus-face.el (custom-face-attributes): Simplify :underline,
8491 :overline, :inverse-video cases. Fix up :box case (probably needs
8492 more work).
8493
8494 Change from Didier Verna:
8495 (custom-set-faces): The arguments can now have a custom comment as
8496 fourth argument.
8497
8498 * custom.el: Don't define-widget-keywords.
8499 Change from Didier Verna:
8500 (custom-set-variables): The arguments can now have a
8501 custom comment as fifth element.
8502
8503 1999-09-13 Richard Stallman <rms@gnu.org>
8504
8505 * info.el (Info-find-node): Cope better if guesspos is too large.
8506
8507 1999-09-12 Gerd Moellmann <gerd@gnu.org>
8508
8509 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
8510 of buffer-substring because buffer-string doesn't copy the
8511 prompt.
8512
8513 * faces.el (mode-line): Replaces `modeline'.
8514 (toplevel): Make `modeline' an alias for `mode-line'.
8515
8516 1999-09-12 Gerd Moellmann <gerd@gnu.org>
8517
8518 * gs.el: Change `ghostscript' to `postscript' in comment.
8519
8520 1999-09-11 Rob Riepel <riepel@Stanford.EDU>
8521
8522 * emulation/tpu-edt.el (tpu-version): New version.
8523 (tpu-search-overlay, tpu-replace-overlay): New variables.
8524 (tpu-search-highlight, tpu-toggle-direction): New functions.
8525 (tpu-lm-replace): Set tpu-replace-overlay.
8526 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
8527 command hook.
8528
8529 1999-09-11 Richard Stallman <rms@gnu.org>
8530
8531 * isearch.el (isearch-mode-map): Undo previous change.
8532
8533 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
8534 use all of that as the sexp.
8535
8536 * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
8537 and use the initial argument as file name directly.
8538 Likewise if nothing matches.
8539
8540 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no>
8541
8542 * winner.el: Major changes. Avoid changing point and mark.
8543 Save configurations after they change, not before.
8544
8545 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
8546
8547 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
8548 Bind print-continuous-numbering and print-number-table.
8549
8550 1999-09-10 Dave Love <fx@gnu.org>
8551
8552 * bindings.el (debug-ignored-errors): Restore BBDB stuff.
8553
8554 1999-09-09 Richard Stallman <rms@gnu.org>
8555
8556 * whitespace.el: Finish making it fit Emacs conventions.
8557 Add autoloads.
8558
8559 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il>
8560
8561 * generic-x.el (bat-generic-mode): "::"-style comments don't
8562 need to begin with "-". Fix the font-lock definitions of ON/OFF
8563 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO
8564 from the list of keywords. Add DO to the list of keywords.
8565
8566 1999-09-09 Dave Love <fx@gnu.org>
8567
8568 * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
8569 (byte-optimize-backward-word): New optimizations.
8570 (side-effect-free-fns, side-effect-and-error-free-fns): Add
8571 entries.
8572
8573 1999-09-09 Gerd Moellmann <gerd@gnu.org>
8574
8575 * image.el (put-image): Remove optional buffer parameter.
8576
8577 * faces.el (face-italic-p): Return t only for values `italic'
8578 and `oblique'.
8579
8580 * mouse.el (mouse-drag-mode-line-1): Extension of former
8581 mouse-drag-mode-line that also drags the header line.
8582 (mouse-drag-mode-line): Call it.
8583 (mouse-drag-header-line): New.
8584 (toplevel): Bind down-mouse-1 on header lines to
8585 mouse-drage-header-line.
8586
8587 1999-09-08 Gerd Moellmann <gerd@gnu.org>
8588
8589 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
8590 (make-mode-line-mouse-sensitive): Replace `top-line' by
8591 `header-line'.
8592
8593 1998-09-08 Michael Ernst <mernst@alum.mit.edu>
8594
8595 * help.el (describe-function-1): Don't return empty string for keymaps.
8596
8597 * fill.el (fill-region-as-paragraph, canonically-space-region):
8598 Respect colon-double-space at end of line.
8599
8600 1999-09-08 Stephen Gildea <gildea@alum.mit.edu>
8601
8602 * files.el (backup-by-copying-when-privileged-mismatch): New variable.
8603 (backup-buffer): Use it.
8604
8605 1999-09-08 Peter Breton <pbreton@ne.mediaone.net>
8606
8607 * generic-x.el (generic-define-unix-modes): Added new modes:
8608 inetd-conf-generic-mode, etc-services-generic-mode,
8609 etc-passwd-generic-mode. These are all defined for Unix by default.
8610 (apache-generic-mode): Use an imenu-generic-expression to list
8611 Configuration keywords.
8612 (samba-generic-mode): Use both ; and # as comment characters.
8613 (samba-generic-mode): Font-lock expressions now highlight name
8614 value pairs.
8615 (bat-generic-mode): Keywords are now case-insensitive through
8616 font-lock-defaults setting.
8617 (java-properties-generic-mode): Supports both ! and # as comment
8618 characters.
8619 (java-properties-generic-mode): Added an imenu-generic-expression
8620 (java-properties-generic-mode): Reworked to support the various
8621 different ways to separate name and value (viz, '=', ':' and
8622 whitespace).
8623 (show-tabs-generic-mode): Added this new generic-mode.
8624
8625 1999-09-08 Richard Stallman <rms@gnu.org>
8626
8627 * progmodes/inf-lisp.el: Moved from top directory.
8628
8629 * tar-mode.el (tar-header-block-tokenize):
8630 Use `when' instead of `and'. Fix some clobbered text.
8631
8632 * gud.el (gud-make-debug-menu): Make a child for the
8633 local menu, for its menu bar, and the debug menu.
8634 (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
8635 Use the history in the simple way.
8636
8637 1999-09-07 Kenichi Handa <handa@etl.go.jp>
8638
8639 * language/korea-util.el (default-korean-keyboard): Initialize it
8640 according to the environment variable HANGUL_KEYBOARD_TYPE.
8641
8642 1999-09-07 Richard Stallman <rms@gnu.org>
8643
8644 * subr.el (make-temp-file): New function.
8645
8646 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
8647
8648 * font-lock.el (font-lock-multiline): New text property contains
8649 a boolean to indicate if the char is part of a multiline match.
8650 (font-lock-default-fontify-region): Extend the region appropriately
8651 for multiline keywords.
8652 (font-lock-default-unfontify-region): Also remove the new
8653 font-lock-multiline text property.
8654 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
8655 (font-lock-fontify-keywords-region): Mark multiline regexp matches.
8656
8657 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8658
8659 * diary-lib.el (list-diary-entries): Make sure two-digit years
8660 have leading zeros.
8661
8662 1999-09-07 Gerd Moellmann <gerd@gnu.org>
8663
8664 * faces.el (face-set-after-frame-default): Initialize some
8665 attributes of some faces from frame parameters.
8666
8667 * faces.el (scroll-bar, border, cursor, mouse): New faces.
8668
8669 1999-09-07 Gerd Moellmann <gerd@gnu.org>
8670
8671 * faces.el (fringe): Replaces face `margin'.
8672
8673 1999-09-07 Dave Love <fx@gnu.org>
8674
8675 * tar-mode.el (tar-header-block-tokenize): Bind linkname.
8676
8677 1999-09-07 Richard Stallman <rms@gnu.org>
8678
8679 * subr.el (push): Doc fix.
8680
8681 1999-09-06 Richard Stallman <rms@gnu.org>
8682
8683 * vc.el (vc-annotate-display): Use < 69 not < 70
8684 to distinguish 20YY from 19YY.
8685
8686 * timezone.el (timezone-parse-date): Use < 69 not < 70
8687 to distinguish 20YY from 19YY.
8688
8689 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
8690
8691 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk>
8692
8693 * quickurl.el: (quickurl-list-focused-line): Removed.
8694 (quickurl-list-insert): Now works out the focused line using
8695 `count-lines' instead of using `quickurl-list-focused-line'.
8696
8697 1999-09-06 Richard Stallman <rms@gnu.org>
8698
8699 * mail/rmail.el (rmail-retry-failure): Unconditionally move
8700 to beginning of message.
8701
8702 1999-09-06 Dave Love <fx@gnu.org>
8703
8704 * isearch.el (isearch-mode-map): Add mouse-2.
8705
8706 * mail/rmail.el (rmail-read-password): Deleted.
8707 (rmail-get-pop-password): Use read-password.
8708
8709 * quickurl.el: Don't conditionally define caddr.
8710 (quickurl-url-comment): Use nth, not caddr in function and
8711 defsetf.
8712
8713 1999-09-06 Richard Stallman <rms@gnu.org>
8714
8715 * auto-show.el: Doc fixes.
8716
8717 1999-09-06 Stephen Eglen <stephen@gnu.org>
8718
8719 * progmodes/octave-inf.el (inferior-octave-startup-args): Add
8720 --no-line-editing so that TABs in source files are not interpreted
8721 as completion requests.
8722
8723 1999-09-06 Gerd Moellmann <gerd@gnu.org>
8724
8725 * hscroll.el, auto-show.el: Remove all code, keep the public
8726 interface as no-ops.
8727
8728 * faces.el (face-bold-p): Don't return t if face has lighter
8729 weight than normal.
8730
8731 1999-09-06 Eli Zaretskii <eliz@gnu.org>
8732
8733 * startup.el (command-line): Make small-temporary-file-directory
8734 be nil except on ms-dos.
8735
8736 * files.el (small-temporary-file-directory): Ditto. Also doc fix.
8737
8738 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
8739 is defined.
8740
8741 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
8742 letters with a colon after d or l.
8743
8744 1999-09-06 Dave Love <fx@gnu.org>
8745
8746 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now
8747 primitive.)
8748
8749 1999-09-05 Richard Stallman <rms@gnu.org>
8750
8751 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
8752
8753 * textmodes/paragraphs.el (backward-kill-sentence):
8754 Don't test minibuffer-prompt-end here.
8755 (forward-sentence): Do handle it here.
8756 (backward-kill-paragraph): Don't test it here.
8757 (forward-paragraph): Handle it here.
8758
8759 * mouse.el (font-menu-add-default): Simplify code.
8760
8761 1999-09-05 Gerd Moellmann <gerd@gnu.org>
8762
8763 * faces.el (header-line): Renamed from `top-line'.
8764
8765 1999-09-05 Gerd Moellmann <gerd@gnu.org>
8766
8767 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
8768
8769 1999-09-04 Richard Stallman <rms@gnu.org>
8770
8771 * whitespace.el: New file.
8772
8773 1999-09-04 Dave Love <fx@gnu.org>
8774
8775 * paths.el: Make some doc strings obey the make-docfile convention.
8776
8777 * bindings.el: Likewise.
8778 (debug-ignored-errors): Remove BBDB ones.
8779
8780 1999-09-03 Richard Stallman <rms@gnu.org>
8781
8782 * mail/mh-comp.el (mh-forward): Get new subject line from the original,
8783 not from the draft to forward.
8784
8785 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
8786
8787 1999-09-03 Dave Love <fx@gnu.org>
8788
8789 * double.el (double-mode): Customize the variable.
8790
8791 1999-09-03 Kenichi Handa <handa@etl.go.jp>
8792
8793 * international/characters.el: Delete duplicated code.
8794
8795 1999-09-02 Richard Stallman <rms@gnu.org>
8796
8797 * indent.el (indent-relative): Doc fix.
8798
8799 * quickurl.el (quickurl): Doc fix.
8800
8801 1999-09-02 Gerd Moellmann <gerd@gnu.org>
8802
8803 * faces.el (margin): Change background to "gray" for mono (this is
8804 drawn with a stipple pattern).
8805
8806 1999-09-02 Gerd Moellmann <gerd@gnu.org>
8807
8808 * simple.el (next-history-element): Use minibuffer-prompt-end once
8809 again. Remove test for minibuffer-prompt-in-buffer.
8810
8811 1999-09-02 Eli Zaretskii <eliz@gnu.org>
8812
8813 * files.el (small-temporary-file-directory): New variable.
8814
8815 * startup.el (command-line): Compute the value of
8816 small-temporary-file-directory.
8817
8818 * ediff-init.el (ediff-temp-file-prefix): Use
8819 small-temporary-file-directory if non-nil.
8820
8821 * vc.el (vc-update-change-log): Likewise.
8822
8823 * progmodes/cmacexp.el (c-macro-expansion): Likewise.
8824
8825 * simple.el (shell-command, shell-command-on-region): Use
8826 make-temp-name properly. Use small-temporary-file-directory if
8827 non-nil, otherwise temporary-file-directory, to generate temporary
8828 files.
8829
8830 * dos-w32.el (direct-print-region-helper): Use
8831 temporary-file-directory. (From Stefan Monnier.)
8832
8833 1999-09-02 Richard Stallman <rms@gnu.org>
8834
8835 * progmodes/asm-mode.el (asm-mode): Set comment-start properly
8836 from asm-comment-char.
8837 (asm-font-lock-keywords): Recognize instruction width suffixes.
8838
8839 1999-09-01 Richard Stallman <rms@gnu.org>
8840
8841 * play/fortune.el: New file.
8842
8843 1999-08-31 Dave Love <fx@gnu.org>
8844
8845 * help.el (help-make-xrefs): Don't lose on non-empty blank line
8846 after key table.
8847
8848 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
8849 redisplay variables.
8850
8851 * subr.el (push): Fix typo.
8852
8853 1999-08-30 Kevin Blake <kblake@ticnet.com>
8854
8855 * emacs-lisp/ring.el: Many doc fixes.
8856 (ring-size, ring-copy): New functions.
8857
8858 1999-08-29 Richard Stallman <rms@gnu.org>
8859
8860 * progmodes/etags.el (tags-loop-continue):
8861 After tags-loop-operate returns, force skip to next file.
8862
8863 * mail/mail-extr.el (mail-extr-all-letters-but-separators)
8864 (mail-extr-first-letters, mail-extr-last-letters):
8865 Use character classes [:alpha:] and [:alnum:].
8866
8867 * subr.el (push, pop): New macros.
8868
8869 * progmodes/compile.el (compilation-error-regexp-alist):
8870 New item for SGI IRIX MipsPro compilers.
8871
8872 * speedbar.el (speedbar-directory-buttons): Recognize
8873 device names when checking for file names.
8874
8875 * array.el (array-reconfigure-rows): Use generate-new-buffer.
8876
8877 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
8878 and specially handle defvar inside their expansions.
8879 (eval-defun-1): New subroutine.
8880
8881 * progmodes/compile.el (compilation-error-regexp-alist):
8882 Fix the Perl -w entry to allow period after line number.
8883 Don't allow newlines in file name, but allow them after line number
8884 for Perl debugging traces.
8885
8886 * which-func.el (which-func-cleanup-function): New variable.
8887 (which-function): Call that function.
8888
8889 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
8890 to end a function name.
8891
8892 * informat.el (Info-tagify): Don't insert more than one newline
8893 before the tag table.
8894
8895 1999-08-29 Stefan Monnier <monnier@cs.yale.edu>
8896
8897 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
8898 than make-temp-name, use match-string-no-properties, and eliminate
8899 a quadratic behavior when building bibtex-strings.
8900
8901 1999-08-29 Alex Schroeder <alex@gnu.org>
8902
8903 * comint.el (comint-input-ring-separator): New variable.
8904 (comint-read-input-ring): Doc change; use
8905 comint-input-ring-separator when reading file.
8906 (comint-write-input-ring): Use
8907 comint-input-ring-separator when writing file.
8908
8909 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com>
8910
8911 * informat.el (Info-tagify): Start by widening.
8912 Match node headers that don't list the file name,
8913 and more kinds of page separations.
8914 Strip properties during tagification.
8915 Use start of node header line as tag's position.
8916 Fix the "done" message.
8917
8918 (Info-validate): Save and restore match data around narrowing down.
8919
8920 1999-08-28 Richard M. Stallman <rms@gnu.org>
8921
8922 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
8923 On repeated call, override previous values put into
8924 minor-mode-map-alist and minor-mode-alist.
8925
8926 1999-08-28 Michael Ernst <mernst@alum.mit.edu>
8927
8928 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
8929
8930 1999-08-27 Andreas Schwab <schwab@gnu.org>
8931
8932 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
8933 from cvs update.
8934
8935 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8936
8937 * calendar/calendar.el (calendar-move-hook): New hook.
8938
8939 * calendar/cal-move.el: Call the new hook in every movement function.
8940
8941 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
8942 the right function name.
8943
8944 1999-08-26 Stephen Gildea <gildea@alum.mit.edu>
8945
8946 * time-stamp.el: Put quote-backquote around all symbol names
8947 in doc strings, for mousing.
8948 (time-stamp): Support multi-line patterns.
8949 (time-stamp-inserts-lines): New variable.
8950 (time-stamp-count): New variable.
8951 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
8952 "Thu" instead of "%a".
8953
8954 1999-08-25 Gerd Moellmann <gerd@gnu.org>
8955
8956 * simple.el (kill-word): Undo previous change.
8957
8958 1999-08-25 Gerd Moellmann <gerd@gnu.org>
8959
8960 * jit-lock.el (jit-lock-function): Extend the fontified range
8961 to the beginning of the line containing the range start and
8962 the beginning of the line following the range end.
8963
8964 1999-08-24 Dave Love <fx@gnu.org>
8965
8966 * timezone.el: Move provide to end.
8967 (timezone-parse-date): Simplify somewhat. Assume 2-digit years
8968 <70 are 2000+.
8969 (timezone-parse-time): Simplify somewhat.
8970
8971 1999-08-24 Gerd Moellmann <gerd@gnu.org>
8972
8973 * faces.el (margin): Renamed from bitmap-area.
8974
8975 1999-08-24 Alex Schroeder <alex@gnu.org>
8976
8977 * sql.el: Doc changes.
8978 (sql-sybase): Use sql-server instead of sql-database.
8979
8980 1999-08-23 Dave Love <fx@gnu.org>
8981
8982 * rect.el: Add/fix various doc strings. Add `*' to all the
8983 interactive specs.
8984
8985 1999-08-21 Gerd Moellmann <gerd@gnu.org>
8986
8987 * jit-lock.el (jit-lock-function): Use line-beginning-position.
8988 Don't unwind-protect font-lock-fontify-region.
8989
8990 * paragraphs.el (backward-kill-paragraph): Don't move
8991 point into mini-buffer prompt.
8992 (backward-kill-sentence): Ditto.
8993
8994 * simple.el (next-history-element): Use minibuffer-prompt-end.
8995 Remove test for minibuffer-prompt-in-buffer.
8996 (kill-word): Don't move point into mini-buffer prompt.
8997
8998 1999-08-21 Dave Love <fx@gnu.org>
8999
9000 * Makefile: Exclude CVS dirs like RCS.
9001
9002 1999-08-19 Dave Love <fx@gnu.org>
9003
9004 * tooltip.el (tooltip-mode): Customize this, per convention.
9005 (tooltip-active): Option deleted.
9006
9007 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize.
9008
9009 * hanoi.el, page-ext.el: Declare dynamic vars.
9010
9011 * term.el: Avoid ange-ftp related compilation warnings.
9012
9013 1999-08-18 Gerd Moellmann <gerd@gnu.org>
9014
9015 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
9016 the default so that beginners can benefit from it without
9017 searching in manuals.
9018
9019 1999-08-18 Ray Blaak <blaak@gnu.org>
9020
9021 * progmodes/delphi.el: Consider assembly sections as blocks, to
9022 indent them better. Make auto-indent on newline optional.
9023
9024 1999-08-17 Gerd Moellmann <gerd@gnu.org>
9025
9026 * bindings.el (mode-line-modified): Look up key binding for C-x
9027 C-q. If it's bound call that binding, otherwise call
9028 toggle-read-only.
9029
9030 1999-08-17 Dave Love <fx@gnu.org>
9031
9032 * info.el (info): Doc fix.
9033
9034 * finder.el (finder-known-keywords): Add `multimedia'.
9035
9036 * apropos.el: Don't capitalize custom group name.
9037
9038 * info-look.el: Remove compatibility code.
9039 (info-lookup-guess-default*): DTRT for point at start of symbol.
9040 (info-complete): Don't lose with point not at end of symbol.
9041
9042 1999-08-16 Gerd Moellmann <gerd@gnu.org>
9043
9044 * term.el (toplevel): Make face `term-default' an empty face.
9045 The code relied on the fact that Emacs ignored invalid faces in
9046 face text properties in 20.4.
9047
9048 1999-08-16 Richard M. Stallman <rms@gnu.org>
9049
9050 * subr.el (point-at-eol, point-at-bol): New aliases.
9051
9052 * simple.el: Functions reordered.
9053
9054 * rect.el (delete-rectangle-line): Use line-end-position.
9055
9056 1999-08-16 Karl Heuer <kwzh@gnu.org>
9057
9058 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
9059 here from simple.el.
9060
9061 1999-08-16 Dave Love <fx@gnu.org>
9062
9063 * mouse.el: Provide `mldrag' for compatibility.
9064 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
9065 marked obsolete.
9066
9067 * mldrag.el: Removed since the features are in mouse.el.
9068
9069 * jka-compr.el (auto-compression-mode): New variable for
9070 customization.
9071
9072 * bindings.el (mode-line-mule-info): Doc fix.
9073
9074 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
9075 name comparisons.
9076
9077 * files.el (interpreter-mode-alist): Add make, guile, clisp.
9078 (find-file): Doc fix.
9079
9080 1999-08-16 Carsten Dominik <cd@gnu.org>
9081
9082 * textmodes/reftex.el: Most of the code moved to other files.
9083 * textmodes/reftex-auc.el: New file, split out from reftex.el
9084 * textmodes/reftex-cite.el: New file, split out from reftex.el
9085 * textmodes/reftex-global.el: New file, split out from reftex.el
9086 * textmodes/reftex-index.el: New file, split out from reftex.el
9087 * textmodes/reftex-parse.el: New file, split out from reftex.el
9088 * textmodes/reftex-ref.el: New file, split out from reftex.el
9089 * textmodes/reftex-sel.el: New file, split out from reftex.el
9090 * textmodes/reftex-toc.el: New file, split out from reftex.el
9091 * textmodes/reftex-vars.el: New file, split out from reftex.el
9092 * textmodes/reftex-vcr.el: New file, split out from reftex.el
9093
9094 1999-08-16 Carsten Dominik <cd@gnu.org>
9095
9096 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
9097 conflict with pop-up-frames.
9098 (reftex-special-environment-parsers): New constant.
9099 (reftex-label-alist): car of an entry can also be a function.
9100 (reftex-what-special-env): Cew function.
9101 (reftex-label-location): Call `reftex-what-special-env'.
9102 (reftex-compile-variables): Check for symbol in
9103 `reftex-label-alist'.
9104 (reftex-what-environment): Fixed bug with stacked environments of
9105 same kind (e.g. enumerate).
9106 (reftex-process-string): Preserve default directory.
9107 (reftex-label-alist-builtin): Changed prefixes of endnote and
9108 footnote. Also the magic words.
9109 (reftex-reference): Interprete new option
9110 `reftex-fref-is-default'.
9111 (reftex-replace-prefix-escapes): Interprete new `%S' format.
9112 (reftex-toc-mouse-view-line): Command removed (had no binding).
9113 (reftex-everything-regexp): New function.
9114 (reftex-nearest-match): Made better.
9115 (reftex-toc-find-section): Use new version of
9116 `reftex-nearest-match'.
9117 (reftex-insert-docstruct): Adapted to work with the index stuff.
9118 (reftex-parse-from-file): Find index entries as well.
9119 (reftex-toc-toggle-index): New function
9120 (reftex-toc-map): `i' is now used to togle the index, File
9121 boundaries has been moved to `F'.
9122 (reftex-select-label-map): Toggling display of file boundaries is
9123 now on the `F' key, for consistency with `reftex-toc-map'.
9124 (reftex-erase-all-selection-and-index-buffers): Renamed from
9125 `reftex-erase-all-selection-buffer'. Now also kills the index
9126 buffers.
9127 (reftex-viewing-cross-references): Customization group renamed
9128 from reftex-viewing-cross-references-and-citations.
9129 (reftex-index-macro-regexp,
9130 reftex-find-index-entry-regexp-format): New variables
9131 (reftex-macros-with-index): New variable
9132 (reftex-add-index-macros): New function
9133 (reftex-renumber-simple-labels, reftex-translate): Allow for
9134 multiple labels in a single ref command.
9135 (reftex-index-support): New customization group
9136 (reftex-support-index, reftex-index-special-chars,
9137 reftex-index-macros, reftex-index-default-macro,
9138 reftex-index-default-tag, reftex-index-math-format,
9139 reftex-index-section-letters, reftex-index-include-context,
9140 reftex-index-follow-mode, reftex-index-header-face,
9141 reftex-index-section-face, reftex-index-tag-face,
9142 reftex-index-face): New options
9143 (reftex-index-map, reftex-index-menu, reftex-last-index-file,
9144 reftex-index-tag, reftex-index-return-marker,
9145 reftex-index-restriction-indicator, reftex-index-restriction-data,
9146 reftex-index-macro-regexp, reftex-index-level-re,
9147 reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
9148 reftex-everything-regexp-no-index, reftex-index-re,
9149 reftex-macros-with-index, reftex-index-macro-alist): New variables
9150 (reftex-index-help, reftex-index-macros-builtin,
9151 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
9152 reftex-query-index-macro-help): New constants
9153 (reftex-index-selection-or-word, reftex-index,
9154 reftex-default-index, reftex-update-default-index,
9155 reftex-index-complete-tag, reftex-index-select-tag,
9156 reftex-index-complete-key, reftex-index-update-taglist,
9157 reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
9158 reftex-display-index, reftex-insert-index,
9159 reftex-index-insert-new-letter, reftex-get-restriction,
9160 reftex-index-pre-command-hook, reftex-index-post-command-hook,
9161 reftex-index-show-help, reftex-index-next, reftex-index-previous,
9162 reftex-index-toggle-follow, reftex-index-toggle-context,
9163 reftex-index-view-entry, reftex-index-goto-entry-and-hide,
9164 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
9165 reftex-index-quit, reftex-index-quit-and-kill,
9166 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
9167 reftex-index-revert, reftex-index-switch-index-tag,
9168 reftex-index-restrict-to-section, reftex-index-widen,
9169 reftex-index-restriction-forward,
9170 reftex-index-restriction-backward, reftex-index-visit-location,
9171 reftex-index-analyze-entry, reftex-index-globalize,
9172 reftex-index-edit, reftex-index-toggle-range-beginning,
9173 reftex-index-toggle-range-end, reftex-index-edit-key,
9174 reftex-index-edit-attribute, reftex-index-edit-visual,
9175 reftex-index-edit-part, reftex-index-level-down,
9176 reftex-index-level-up, reftex-index-kill, reftex-index-undo,
9177 reftex-index-change-entry, reftex-index-goto-letter,
9178 reftex-add-index-macros, reftex-ensure-index-support,
9179 reftex-index-info-safe, reftex-index-info): New functions.
9180
9181
9182 1999-08-15 Richard M. Stallman <rms@gnu.org>
9183
9184 * paren.el (show-paren-mode): Support making show-paren-mode
9185 a buffer-local variable. Don't check for a window system.
9186 (show-paren-function): Check whether show-paren-function is
9187 enabled in current buffer; do the right thing if not.
9188 Don't check for a window system.
9189 (show-paren-mode): Make it a user variable.
9190
9191 * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
9192 Handle `enum' like `struct'.
9193
9194 * server.el (server-process-filter): If a client visits no buffers,
9195 close it immediately before recording it.
9196
9197 * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
9198 Optimize by calling concat just once. Handle =\n sequence.
9199 (mail-unquote-printable-region): New command.
9200 (mail-quote-printable): Make it autoload.
9201
9202 1999-08-15 Karl Heuer <kwzh@gnu.org>
9203
9204 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
9205
9206 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
9207
9208 * lisp/texinfmt.el: Handle @ifnottex.
9209
9210 1999-08-15 Eli Zaretskii <eliz@gnu.org>
9211
9212 * frame.el (blink-cursor): Don't turn on cursor blinking for
9213 ms-dos.
9214
9215 * faces.el (face-valid-attribute-values): Look in
9216 x-bitmap-file-path only for x and w32 window systems.
9217
9218 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
9219 Do that if width is nil as well.
9220 (x-display-mm-height, x-display-mm-width): Update values.
9221 (x-colors): Compute the list from msdos-color-values.
9222 (x-select-enable-clipboard): Doc fix.
9223 (x-frob-font-weight, x-font-family-list): New functions.
9224
9225 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk>
9226
9227 * window.el (shrink-window-if-larger-than-buffer): Don't try to
9228 back up from beginning of buffer.
9229
9230 1999-08-13 Karl Heuer <kwzh@gnu.org>
9231
9232 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
9233
9234 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>
9235
9236 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G
9237 doomsday clock, speed control is added and changes are made to
9238 allow large numbers of rings: rings now show the whole ring
9239 number, not just the last digit; consecutive rings are allowed to
9240 be the same size when necessary to fit all the rings in the
9241 window; and poles can be oriented horizontally. Face support is
9242 thrown in gratuitously.
9243 (hanoi): Changed default number of rings back to 3.
9244 (hanoi-unix, hanoi-unix-64): New commands
9245 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
9246 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
9247 hanoi-odd-ring-face): New variables.
9248 (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
9249 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
9250 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
9251 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
9252 (hanoi-topos, hanoi-draw-ring): Removed.
9253
9254 1999-08-12 Gerd Moellmann <gerd@gnu.org>
9255
9256 * faces.el (face-valid-attribute-values): Return an alist for
9257 families on ttys.
9258 (face-read-integer): Handle unspecified face attributes. Add
9259 completion for `unspecified'.
9260 (read-face-attribute): Handle unspecified font attributes.
9261 (face-valid-attribute-values): Add `unspecified' to lists so that
9262 it can be chosen via completion.
9263 (face-read-string): Don't recognize "none" as input.
9264
9265 1999-08-10 Dave Love <fx@gnu.org>
9266
9267 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
9268 string.
9269
9270 * sun-curs.el: Require sun-fns.
9271
9272 1999-08-10 Dave Love <fx@gnu.org>
9273
9274 * autorevert.el (auto-revert-mode): Add autoload cookie.
9275
9276 * hscroll.el, auto-show.el: Files deleted -- we have built-in
9277 hscroll.
9278
9279 * simple.el (hscroll-step, hscroll-point-visible)
9280 (hscroll-window-column): Remove now we have the mentioned real
9281 horizontal autoscrolling.
9282
9283 1999-08-10 Richard M. Stallman <rms@gnu.org>
9284
9285 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
9286 control use of -f option.
9287 (mail-specify-envelope-from): New variable.
9288 (mail-from-style): Doc fix.
9289
9290 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
9291 (easy-menu-get-map): New arg TO-MODIFY helps choose
9292 between local and global maps.
9293 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
9294 (easy-menu-change): Doc fix.
9295
9296 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
9297 (info-lookup-guess-default): Simplified and cleaned up.
9298 (info-lookup-guess-default*): Preserve point.
9299
9300 * view.el (view-mode-disable): If buffer-read-only is nil,
9301 don't change it.
9302
9303 * files.el (after-find-file): Disable View mode if buffer is no
9304 longer read-only.
9305
9306 * view.el (view-mode-enable, view-mode-disable):
9307 Call force-mode-line-update.
9308
9309 1999-08-10 Karl Heuer <kwzh@gnu.org>
9310
9311 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
9312 * array.el, play/landmark.el, international/latin-3.el: Likewise.
9313 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
9314
9315 1999-08-10 Alex Schroeder <asc@bsiag.com>
9316
9317 * ansi-color.el (ansi-color-to-text-properties): Added New state 5
9318 to prevent m-eating-bug.
9319
9320 1999-08-10 Eli Zaretskii <eliz@gnu.org>
9321
9322 * term/pc-win.el (msdos-bg-mode): Remove. Call
9323 frame-set-background-mode instead. All callers changed.
9324 (msdos-face-setup): Don't force color display parameter, it is set
9325 by frame-set-background-mode.
9326 (make-msdos-frame): Call x-handle-reverse-video and
9327 face-set-after-frame-default. Delete frame if creation failed.
9328
9329 * faces.el (face-set-after-frame-default): Don't call
9330 make-face-x-resource-internal for the pc window-system.
9331
9332 1999-08-10 Dave Love <fx@melange.gnu.org>
9333
9334 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
9335 case with no docstring specially.
9336
9337 1999-08-09 Eli Zaretskii <eliz@gnu.org>
9338
9339 * complete.el (PC-do-completion): If completing on file name,
9340 reproduce str by concatenating its directory and basename parts.
9341
9342 1999-08-07 Dave Love <fx@gnu.org>
9343
9344 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid
9345 unibyte to multibyte conversion of search-forward (from Handa),
9346 but avoid the replacement if the language is Latin-N.
9347
9348 1999-08-06 Richard Stallman <rms@gnu.org>
9349
9350 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
9351 of eval-buffer.
9352
9353 * international/mule.el (load-with-code-conversion):
9354 Pass t to eval-buffer for DO-ALLOW-PRINT.
9355
9356 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
9357
9358 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
9359 of filenames and attributes.
9360 (ls-lisp-insert-directory): Use directory-files-and-attributes
9361 for speed.
9362
9363 1999-08-05 Dave Love <fx@gnu.org>
9364
9365 * auto-show.el (auto-show-mode): Fix :set.
9366
9367 * widget.el (define-widget-keywords): Make dummy definition and
9368 comment-out its use.
9369
9370 1999-08-04 Richard Stallman <rms@gnu.org>
9371
9372 * progmodes/tcl.el: Customized.
9373
9374 * sql.el (sql-accumulate-and-indent): Instead of testing
9375 whether this is Emacs 20 before calling comint-accumulate,
9376 test whether comint-accumulate is defined.
9377
9378 1999-08-04 Dave Love <fx@gnu.org>
9379
9380 * sgml-mode.el: Require outline when compiling.
9381 (sgml-mode-hook, html-mode-hook): Customize.
9382 (sgml-validate-command): Fix :version.
9383 (html-autoview-mode): Doc fix.
9384
9385 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
9386 nothing in Latin-N environment.
9387
9388 * info.el (Info-find-node): Call info-initialize here.
9389 (info): Not here.
9390 (Info-file-list-for-emacs): Add message, dired-x, c, viper.
9391
9392 1999-08-04 Richard Stallman <rms@gnu.org>
9393
9394 * ansi-color.el: New file.
9395
9396 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
9397
9398 * dired.el (dired-string-replace-match): Return `nil' when no match
9399 found with global search.
9400
9401 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
9402 * terminal.el (te-terminfo-directory):
9403 * mail/mailpost.el (post-mail-send-it):
9404 * mail/metamail.el (metamail-region):
9405 * progmodes/ada-mode.el (ada-tmp-directory):
9406 Use temporary-file-directory.
9407
9408 * progmodes/compile.el (compilation-parsing-end,compilation-setup)
9409 (compilation-filter, compilation-forget-errors)
9410 (compilation-parse-errors): Use a marker instead of an integer for
9411 `compilation-parsing-end'.
9412
9413 * progmodes/diff.el (diff-parse-differences):
9414 Use a marker instead of an integer for `compilation-parsing-end'.
9415 * textmodes/tex-mode.el (tex-compilation-parse-errors):
9416 Use a marker instead of an integer for `compilation-parsing-end'.
9417
9418 1999-08-03 Richard Stallman <rms@gnu.org>
9419
9420 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
9421 (Buffer-menu-mode): Doc fix.
9422 (Buffer-menu-view): New command.
9423 (Buffer-menu-view-other-window): New command.
9424
9425 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com>
9426
9427 * replace.el (query-replace-regexp-eval)
9428 (replace-eval-replacement, replace-loop-through-replacements)
9429 (replace-match-string-symbols): New functions.
9430 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
9431 Use replace-loop-through-replacements.
9432
9433 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk>
9434
9435 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
9436 (5x5): Doc fix.
9437
9438 1999-08-03 Dave Love <fx@gnu.org>
9439
9440 * fortran.el (fortran-indent-new-line): Make it an alias
9441 for reindent-then-newline-and-indent.
9442
9443 1999-08-03 Didier Verna <verna@inf.enst.fr>
9444
9445 * rect.el: All functions rewritten, except when noted above
9446 their declaration. Below is a list of interface changes.
9447 (apply-on-rectangle): New function, mostly replaces
9448 `operate-on-rectangle'. All callers changed.
9449 (move-to-column-force): Pass new second argument to `move-to-column'.
9450 (kill-rectangle): Added optional prefix arg to fill lines.
9451 (delete-rectangle): Ditto.
9452 (delete-whitespace-rectangle): Ditto.
9453 (delete-extract-rectangle): Ditto.
9454 (open-rectangle): Ditto.
9455 (clear-rectangle): Ditto.
9456 (delete-whitespace-rectangle-line): New function.
9457 (delete-rectangle-line): Added third arg FILL.
9458 (delete-extract-rectangle-line): Ditto.
9459 (open-rectangle-line): Ditto.
9460 (clear-rectangle-line): Ditto.
9461
9462 1999-08-03 Ray Blaak <blaak@gnu.org>
9463
9464 * progmodes/delphi.el: New file.
9465
9466 1999-08-02 Richard Stallman <rms@gnu.org>
9467
9468 * textmodes/outline.el (outline-previous-heading): New function.
9469 (outline-up-heading-all): Use outline-previous-heading.
9470 (outline-next-heading): Delete definition inserted yesterday.
9471
9472 1999-08-01 Richard Stallman <rms@gnu.org>
9473
9474 * textmodes/outline.el (outline-next-heading): New function.
9475 (outline-up-heading-all): New function.
9476 (outline-font-lock-level): Using outline-up-heading-all.
9477 Tell outline-back-to-heading to accept invisible headings.
9478
9479 * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
9480
9481 * mail/mh-utils.el (mh-find-path-run): New variable.
9482 (mh-find-path): Test and set that.
9483 Set mail-user-agent only the first time this function is run.
9484 (mail-user-agent): Defvar deleted.
9485
9486 * info.el (info-initialize): New function.
9487 (info): Call info-initialize.
9488 (Info-directory-list): Initialize to nil,
9489 so info-initialize will set it up for real.
9490
9491 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9492
9493 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
9494 does not interpret a time as the year in a day-month entry.
9495
9496 * calendar/diary-lib.el: Change syntax table entry for colon in
9497 the diary as part of the european-date-diary-pattern fix.
9498
9499 1999-08-01 Eli Zaretskii <eliz@gnu.org>
9500
9501 * international/mule.el (set-auto-coding): Allow whitespace before
9502 and after the "variable: value" pair.
9503
9504 1999-07-30 Ken'ichi Handa <handa@gnu.org>
9505
9506 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
9507 (default-sendmail-coding-system): Doc-string fixed.
9508
9509 1999-07-30 Dave Love <fx@gnu.org>
9510
9511 * subr.el (assoc-delete-all): New function, renamed from
9512 frame-delete-all.
9513
9514 * frame.el: Change comments to doc strings and other doc fixes.
9515 (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
9516 Callers changed.
9517 (set-background-color, set-foreground-color, set-cursor-color)
9518 (set-mouse-color, set-border-color): Offer completion of colours.
9519 (cursor): Add :version to defgroup.
9520
9521 * facemenu.el (list-colors-display): Make it work on ttys.
9522 (facemenu-read-color): Likewise.
9523
9524 1999-07-30 Richard M. Stallman <rms@gnu.org>
9525
9526 * frame.el (frame-notice-user-settings): If background
9527 color has been changed, update background-mode from it,
9528 then update faces.
9529
9530 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com>
9531
9532 * net-utils.el (finger): Don't do indirect fingering.
9533
9534 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9535
9536 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
9537 rules. Add separator at end of holidays.
9538 (cal-tex-rules): New customizable variable.
9539 (cal-tex-latexify-list): Add optional parameter to put separator
9540 at end.
9541
9542 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu>
9543
9544 * textmodes/fill.el (fill-individual-paragraphs): Calculate new
9545 fill prefix on each line while looping to the end of paragraph.
9546 End paragraph if it's longer than the existing fill prefix.
9547
9548 * textmodes/fill.el (fill-context-prefix): Doc fix.
9549
9550 1999-07-30 Dave Love <fx@gnu.org>
9551
9552 * font-lock.el (jit-lock): Fix :load, add :version.
9553
9554 1999-07-30 Eli Zaretskii <eliz@gnu.org>
9555
9556 * term/pc-win.el (msdos-face-setup): Register standard colors in
9557 Vface_tty_color_alist.
9558 (face-color-supported-p, face_color_gray_p): New functions.
9559
9560 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
9561 is bound.
9562
9563 * startup.el (command-line): Don't register default colors for
9564 MSDOS window-system.
9565
9566 1999-07-29 Dave Love <fx@gnu.org>
9567
9568 * f90.el (f90-mode-syntax-table): Change backslash to escape, not
9569 charquote.
9570
9571 * lisp-mode.el (eval-defun): Re-written to avoid
9572 capturing variables.
9573
9574 * picture.el (picture-beginning-of-line): Don't call
9575 hscroll-point-visible now we have real autoscrolling.
9576 (picture-end-of-line, picture-newline, picture-open-line):
9577 Likewise.
9578
9579 * international/latin-8.el: New file.
9580 * international/latin-9.el: New file.
9581
9582 1999-07-28 Dave Love <fx@gnu.org>
9583
9584 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
9585
9586 * msb.el: Require cl only when compiling.
9587 (msb--home-dir): Deleted.
9588 (msb--format-title): Use abbreviate-file-name.
9589 (msb--choose-file-menu): Simplify string comparison.
9590
9591 1999-07-28 Gerd Moellmann <gerd@gnu.org>
9592
9593 * faces.el (toolbar): Add face definition for mono displays.
9594
9595 1999-07-27 Richard M. Stallman <rms@gnu.org>
9596
9597 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
9598
9599 * frame.el (frame-initialize): When setting frame-initial-frame-alist,
9600 force copying of default-frame-alist.
9601
9602 1999-07-26 Ken'ichi Handa <handa@gnu.org>
9603
9604 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
9605
9606 1999-07-26 Richard M. Stallman <rms@gnu.org>
9607
9608 * frame.el (set-mouse-color): If new color is nil,
9609 really respecify the current color.
9610
9611 1999-07-26 Gerd Moellmann <gerd@gnu.org>
9612
9613 * faces.el (bitmap-area): Change background of face `bitmap-area'
9614 to white for mono displays.
9615
9616 1999-07-26 Kenichi Handa <handa@etl.go.jp>
9617
9618 * international/ccl.el (ccl-embed-symbol): New function.
9619 (ccl-program-p): Deleted. Now it's implemented in C code.
9620 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
9621 (ccl-compile-translate-character): Likewise.
9622 (ccl-compile-map-single): Likewise.
9623 (ccl-compile-multiple-map-function): Likewise.
9624 (declare-ccl-program): Doc-string modified.
9625 (check-ccl-program): Check compiled CCL code by ccl-program-p.
9626
9627 1999-07-25 Ken'ichi Handa <handa@etl.go.jp>
9628
9629 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
9630
9631 1999-07-25 Markus Rost <rost@gnu.org>
9632
9633 * cus-edit.el (custom-save-variables, custom-save-faces): Sort
9634 the entries to make custom-file more readable.
9635
9636 1999-07-25 Richard M. Stallman <rms@gnu.org>
9637
9638 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
9639
9640 * emacs-lisp/edebug.el: Delete compatibility code.
9641 (edebug-next-token-class): If . is followed by a digit,
9642 return `symbol' for the token class.
9643
9644 * startup.el (command-line): If we don't find the user's init file,
9645 set user-init-file to nil.
9646
9647 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9648
9649 * info-look.el (info-lookup-interactive-arguments): Add optional
9650 argument query for new choice of help mode.
9651 (info-lookup-symbol): Use it.
9652 (info-lookup-file): Ditto.
9653 (info-lookup): Don't switch to other window, if already in Info
9654 buffer.
9655
9656 1999-07-23 Dave Love <fx@gnu.org>
9657
9658 * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
9659 syntax.
9660 (fortran-fontify-string, fortran-match-!-comment): Deleted.
9661 (fortran-font-lock-syntactic-keywords): New variable.
9662 (fortran-mode): Use it.
9663 (fortran-font-lock-keywords-1): Don't do comments.
9664 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
9665 match data.
9666
9667 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
9668
9669 * msb.el (msb-menu-bar-update-buffers): Renamed from
9670 menu-bar-update-buffers.
9671 (msb-custom-set, msb--toggle-menu-type): Call
9672 msb-menu-bar-update-buffers.
9673 (msb-mode): Revise the hook setting.
9674
9675 * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
9676
9677 1999-07-23 Gerd Moellmann <gerd@gnu.org>
9678
9679 * font-lock.el, help.el, simple.el: Re-integrate previously
9680 described changes that were lost due to errors while checking them
9681 in.
9682
9683 1999-07-23 Kevin Blake <kblake@ticnet.com>
9684
9685 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
9686
9687 1999-07-23 Ken'ichi Handa <handa@etl.go.jp>
9688
9689 * international/encoded-kb.el
9690 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
9691 but push it to unread-command-events.
9692 (encoded-kbd-self-insert-iso2022-8bit): Likewise.
9693 (encoded-kbd-self-insert-sjis): Likewise.
9694 (encoded-kbd-self-insert-big5): Likewise.
9695
9696 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
9697 before left margin and fill-prefix by fill-find-break-point.
9698
9699 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
9700
9701 * info-look.el (info-lookup-setup-mode): Don't give up, if
9702 info-lookup-make-completions returns an error.
9703 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
9704 name latex, not latex2e.
9705
9706 1999-07-21 Richard M. Stallman <rms@gnu.org>
9707
9708 * replace.el (perform-replace): Turn off case-fold-search
9709 if FROM-STRING argument has uppercase in it.
9710
9711 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9712
9713 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
9714 mode is on. Don't use end of changed text.
9715
9716 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9717
9718 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
9719 (cl-hash-table-p): Renamed from hash-table-p.
9720 (cl-hash-table-count): Renamed from hash-table-count.
9721 (maphash): Alias to cl-maphash removed.
9722 (gethash): Likewise.
9723 (puthash): Likewise.
9724 (remhash): Likewise.
9725 (clrhash): Likewise.
9726
9727 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9728
9729 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
9730 third arg non-nil. See comment there why this isn't a good idea.
9731
9732 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9733
9734 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
9735
9736 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
9737 sit-for with 3rd arg non-nil to prevent redisplay.
9738
9739 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9740
9741 * image.el (image-type-from-file-header): If file doesn't
9742 have a directory part, add data-directory.
9743
9744 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9745
9746 * tooltip.el (tooltip-gud-tips-p): Set default to nil.
9747 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
9748 motion handling when tooltip-gud-tips-p is nil.
9749
9750 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9751
9752 * tooltip.el (tooltip-mode): Don't use `plusp'.
9753 (tooltip-active): Use initial value of nil.
9754
9755 * jit-lock.el (jit-lock-mode): Don't use `plusp'.
9756
9757 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9758
9759 * bindings.el (make-mode-line-mouse-sensitive): Add key
9760 definitions for `top-line'.
9761
9762 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9763
9764 * faces.el (top-line): New face.
9765
9766 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9767
9768 * image.el (image-type-regexps): Add regexp for PS files.
9769
9770 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9771
9772 * faces.el (set-face-attribute): Fix wrong handling of frame
9773 begin equal to t.
9774
9775 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9776
9777 * image.el (image-type-regexps): Add PNG format.
9778
9779 1999-07-21 Dave Love <fx@gnu.org>
9780
9781 * bindings.el (mode-line-modified): New variable.
9782 (mode-line-mode-menu-1): Switch to appropriate window before
9783 showing menu.
9784
9785 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9786
9787 * faces.el (face-underline): Removed.
9788 (face-underline-color): Ditto.
9789
9790 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9791
9792 * faces.el (face-x-resources): Fix typo.
9793
9794 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9795
9796 * faces.el: Remove handling of `:relief', extend handling of
9797 `:box'.
9798 (frame-set-background-mode): Choose new defface specs after
9799 frame parameters have changed.
9800
9801 * cus-face.el: Ditto.
9802
9803 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9804
9805 * custom.el (defface): Extend documentation to include new
9806 face attributes.
9807
9808 * cus-face.el (custom-face-attributes): Add overline,
9809 strike-through, box.
9810
9811 * faces.el (face-valid-attribute-values): Handle overline,
9812 strike-through, box.
9813 (face-attribute-name-alist): Add pairs for new face attributes.
9814 (describe-face): Handle new face attributes.
9815
9816 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9817
9818 * faces.el (face-x-resources): Add overline, strike-through, box.
9819
9820 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9821
9822 * enriched.el (enriched-translations): Add `display' and
9823 "x-display".
9824 (enriched-handle-display-prop): New.
9825 (enriched-decode-display-prop): New.
9826
9827 * format.el (top-level): Give `display' property
9828 `format-list-atomic-p.
9829 (format-annotate-single-property-change): Test that property.
9830 If present, treat list property values like atoms.
9831
9832 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9833
9834 * cus-face.el (custom-face-attributes): Use `choice' everywhere
9835 so that "*" can be entered.
9836
9837 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9838
9839 * cus-face.el (custom-face-attributes): Don't use `#''.
9840
9841 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
9842
9843 * cus-face.el (custom-face-attributes): Return underline
9844 face attribute directly from the second lambda of underline.
9845
9846 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9847
9848 * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
9849
9850 * frame.el (after-setting-font-hooks): New variable.
9851 (set-frame-font): Run those hooks.
9852
9853 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
9854
9855 * faces.el (set-face-attribute): Fix doc string.
9856
9857 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9858
9859 * cus-face.el (custom-face-attributes): Accept color name.
9860
9861 * faces.el (face-underline-p): Accept unspecified underlining.
9862 (face-underline): Ditto. Fix doc string.
9863
9864 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
9865
9866 * faces.el (face-underline-color): New function.
9867
9868 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
9869
9870 * cus-face.el (custom-face-attributes): Support underline coloring.
9871 Added slot to choose a color.
9872
9873 * faces.el (face-underline): New function.
9874 (face-underline-p): Support underline coloring.
9875 Return nil only if the underline attribute is 'normal.
9876 (set-face-underline): New function.
9877 (face-valid-attribute-values): Support underline coloring.
9878
9879 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9880
9881 * image.el (insert-image): Use `display' instead of `glyph'
9882 as text property name.
9883 (put-image): Ditto.
9884 (image-type-from-file-header): Use insert-file-contents-literally.
9885
9886 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9887
9888 * easymenu.el (easy-menu-do-add-item): Don't use the empty
9889 string to indicate separators.
9890
9891 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9892
9893 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
9894 instead of message-log.
9895
9896 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9897
9898 * faces.el (bitmap-area): New face.
9899
9900 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9901
9902 * image.el (insert-image): New.
9903
9904 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9905
9906 * frame.el (blink-cursor): Set the symbol's value.
9907 (show-trailing-whitespace): Change group to font-lock.
9908
9909 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9910
9911 * jit-lock.el: New.
9912 * font-lock.el: Add jit-mode as new support mode.
9913
9914 * font-lock.el (font-lock-fontify-keywords-region): Stop when
9915 reaching end instead of letting re-search-forward signal an error.
9916 (demand-lock-mode): New.
9917 (font-lock-turn-on-thing-lock): Add demand-lock-mode.
9918 (font-lock-turn-off-thing-lock): Ditto.
9919 (font-lock-after-fontify-buffer): Ditto.
9920 (font-lock-after-unfontify-buffer): Ditto.
9921
9922 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9923
9924 * gs.el: New file.
9925
9926 * startup.el (command-line-1): Activate tooltip mode if
9927 interactive.
9928
9929 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9930
9931 * faces.el (toolbar): Grey default background.
9932 (modeline): Ditto.
9933
9934 * image.el (image-type-regexps): New.
9935 (image-type-from-file-header): New.
9936 (create-image): Call it.
9937
9938 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9939
9940 * image.el: New file.
9941
9942 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9943
9944 * bindings.el (mode-line-format): Replace `mode-name' with
9945 `(:eval mode-line-mode-name)'.
9946 (mode-line-mode-name): New.
9947 (make-mode-line-mouse-sensitive): Don't change default value
9948 of `mode-name'.
9949
9950 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9951
9952 * tooltip.el: New file.
9953
9954 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9955
9956 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
9957 instead of mouse-3 to pop up menus.
9958 (mode-line-kill-buffer): Removed.
9959 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
9960 buffer name.
9961 (mode-line-buffer-menu-1): Removed.
9962
9963 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
9964
9965 * bindings.el (mode-line-buffer-identification-keymap): New.
9966 (mode-line-buffer-menu-keymap): New.
9967 (mode-line-mode-menu-keymap): New.
9968 (mode-line-unbury-buffer): New.
9969 (mode-line-other-buffer): New.
9970 (mode-line-kill-buffer): New.
9971 (mode-line-buffer-menu-1): New.
9972 (mode-line-mode-menu-1): New.
9973 (make-mode-line-mouse-sensitive): New.
9974
9975 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9976
9977 * help.el (describe-key-briefly): Handle mode line strings
9978 with local-map properties.
9979 (describe-key): Ditto.
9980 (mode-line-key-binding): New.
9981
9982 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9983
9984 * scroll-bar.el (scroll-bar-timer): New.
9985 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
9986
9987 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9988
9989 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
9990 and `bottom'.
9991
9992 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9993
9994 * scroll-bar.el (scroll-bar-toolkit-scroll): New.
9995 (global): Use different key bindings if using tookit scroll bars.
9996
9997 1999-07-21 Gerd Moellmann <gerd@gnu.org>
9998
9999 * faces.el (modeline): Define mode line face with relief for
10000 class color, only.
10001 (toolbar): New face.
10002
10003 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10004
10005 * frame.el (frame-initialize): Set frame-creation-function to
10006 tty-create-frame-with-faces.
10007
10008 * faces.el (frame-set-background-mode): Make it work for
10009 window-system nil.
10010
10011 * faces.el (tty-create-frame-with-faces): New.
10012 (face-set-after-frame-default): Make it work for TTY frames.
10013
10014 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10015
10016 * faces.el (face-valid-attribute-values): Use tty-defined-colors.
10017 Return a list of one font family for TTYs. Don't return bitmap
10018 file paths for TTY frames.
10019
10020 * faces.el: Add face specs for tty displays to basic faces.
10021
10022 * font-lock.el (font-lock-comment-face): Add spec for color tty.
10023 (font-lock-string-face): Ditto.
10024 (font-lock-keyword-face): Ditto.
10025 (font-lock-builtin-face): Ditto.
10026 (font-lock-function-name-face): Ditto.
10027 (font-lock-variable-name-face): Ditto.
10028 (font-lock-type-face): Ditto.
10029 (font-lock-constant-face): Ditto.
10030 (font-lock-warning-face): Ditto.
10031
10032 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10033
10034 * startup.el (command-line): Register default tty colors.
10035
10036 * faces.el (face-spec-set-match-display): Recognize `type tty'.
10037
10038 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10039
10040 * faces.el (modeline): For X frames, use a modeline with relief.
10041
10042 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10043
10044 * faces.el (frame-update-faces): Copied from 20.2.
10045 (frame-update-face-colors): Ditto. Code removed that isn't
10046 applicable in the new face implementation.
10047
10048 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10049
10050 * frame.el (show-trailing-whitespace): New.
10051
10052 * faces.el (trailing-whitespace): New basic face.
10053
10054 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10055
10056 * cus-face.el (custom-facep): Always define as alias for facep.
10057
10058 * cus-face.el (custom-face-attributes): Use choice widgets.
10059 Remove :bold and :italic.
10060
10061 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10062
10063 * faces.el (face-charset-registries): Removed since fontset.el
10064 is no always loaded.
10065
10066 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10067
10068 * faces.el (internal-get-face): Added as obsolete function for
10069 compatibility.
10070
10071 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10072
10073 * frame.el (blink-cursor-end): Call show-cursor.
10074 (blink-cursor-mode): Ditto.
10075
10076 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10077
10078 * faces.el (face-spec-reset-face): Reset all attributes to
10079 `unspecified'.
10080 (face-spec-set): Use it.
10081
10082 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10083
10084 * faces.el (read-all-face-attributes): Bug fix.
10085 (face-read-integer): Allow nil default value.
10086 (face-valid-attribute-values): Use symbol names of attribute
10087 values for completion list.
10088
10089 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10090
10091 * faces.el (internal-find-face): Define for compatibility with
10092 20.2.
10093 (face-id): Likewise.
10094
10095 * faces.el (face-id): Return the ID of a realized face for ASCII.
10096
10097 * fontset.el (x-charset-registries): Removed. Now in faces.el.
10098 (x-complement-fontset-spec): Use face-charset-registries.
10099
10100 * faces.el (face-font-selection-order): Set font selection order
10101 from Lisp.
10102 (face-alternative-font-family-alist): Set alternative font
10103 families from Lisp.
10104
10105 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10106
10107 * faces.el (set-face-charset-registries): Set symbol value.
10108
10109 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10110
10111 * faces.el (face-set-after-frame-default): Call function
10112 internal-merge-in-global-face.
10113
10114 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10115
10116 * faces.el (face-list): Return symbols from face-global-alist.
10117
10118 * faces.el (face-list): Return a copy of the face name list so
10119 that it cannot be modified from outside (facemenu.el uses
10120 nreverse, for example).
10121
10122 * cus-face.el (custom-face-attributes): Add :bold and :italic
10123 for compatibility with old code.
10124
10125 * faces.el (set-face-attributes-from-resources): Additional
10126 frame parameter.
10127 (make-face-x-resource-internal): Set attributes from resources
10128 for a given frame or all frames.
10129
10130 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10131
10132 * faces.el (all-faces): Removed.
10133
10134 * custom.el (defface): Add new face attributes to function
10135 comment.
10136
10137 * font-lock.el (font-lock-comment-face): Use new face attribute
10138 names.
10139 (font-lock-string-face): Ditto.
10140 (font-lock-keyword-face): Ditto.
10141 (font-lock-builtin-face): Ditto.
10142 (font-lock-function-name-face): Ditto.
10143 (font-lock-variable-name-face): Ditto.
10144 (font-lock-type-face): Ditto.
10145 (font-lock-reference-face): Ditto.
10146 (font-lock-warning-face): Ditto.
10147 ((boundp 'font-lock-face-attributes)): Ditto.
10148
10149 * cus-face.el (custom-face-attributes): Use new face attributes.
10150
10151 * faces.el (set-face-attribute-from-resource): Initialize
10152 from resources only for X and W32.
10153
10154 * cus-face.el (custom-declare-face): Don't make frame-local
10155 faces.
10156
10157 * faces.el (describe-face): Use princ instead of insert.
10158
10159 * faces.el: Add XLFD manipulation functions from 20.2 again
10160 because fontset.el uses them.
10161 (face-set-after-frame-default): Add empty definition.
10162
10163 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10164
10165 * faces.el (make-face): Correct typo.
10166 (set-face-attribute-from-resource): Use let*.
10167 (face-underline-p): Correct typo.
10168 (face-inverse-video-p): Ditto.
10169 (set-face-stipple): Ditto.
10170 (face-read-string): Make completion-list optional parameter.
10171
10172 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10173
10174 * faces.el (face-charset-registries): Alist mapping charset
10175 symbols to registries and encoding.
10176
10177 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10178
10179 * frame.el (blink-cursor-mode): Use interactive spec "P".
10180
10181 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10182
10183 * frame.el (blink-cursor-mode): Function to toggle blinking cursor
10184 mode. The cursor of selected_window blinks if the mode is enabled.
10185
10186 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10187
10188 * simple.el (next-history-element): Set point to the end of the
10189 prompt if minibuffer-prompt-in-buffer.
10190
10191 1999-07-21 Gerd Moellmann <gerd@gnu.org>
10192
10193 * faces.el (x-font-regexp): Add sub-expression parentheses for
10194 several font name components.
10195
10196 1999-07-21 Gerd Moellmann <gerd@acm.org>
10197
10198 * faces.el (set-face-relief): Use index 12 for relief.
10199 (face-fill-in): Set relief from data.
10200 (internal-make-face): Init relief to zero.
10201
10202 * faces.el (face-spec-set): Call modify-face with additional
10203 parameters for relief and fixed-p.
10204
10205 1999-07-21 Gerd Moellmann <gerd@acm.org>
10206
10207 * cus-face.el: ':fixed and ':relief added.
10208
10209 * faces.el (describe-face): Add fixed font attribute and relief.
10210 (face-attr-match-p): Ditto.
10211 (face-attr-construct): Ditto.
10212 (face-spec-set): Ditto.
10213
10214 1999-07-21 Gerd Moellmann <gerd@acm.org>
10215
10216 * faces.el (internal-make-face): Function to create a Lisp vector
10217 suitable for representing a face.
10218 (make-face): Use it instead of make-vector.
10219 (x-create-frame-with-faces): Use it instead of vector.
10220 (internal-facep): Increase vector size to 14.
10221 (internal-make-face): Ditto.
10222 (face-relief): Access relief thickness.
10223 (face-fixed-p): Access fixed font attribute.
10224 (set-face-fixed-p): Set fixed font attribute.
10225 (set-face-relief): Set relief attribute.
10226 (internal-face-interactive-int): Read int attribute of face.
10227 (modify-face): Add fixed-p and relief parameters.
10228 (copy-face): Handle fixed-p and relief.
10229 (face-equal): Compare fixed-p and relief.
10230 (face-differs-from-default-p): Ditto.
10231 (face-nontrivial-p): Add fixed-p and relief.
10232
10233 1999-07-21 Gerd Moellmann <gerd@acm.org>
10234
10235 * faces.el (eval-when-compile): Add set-face-shadow-thickness.
10236 (internal-facep): Increase vector size.
10237 (make-face): Ditto.
10238 (face-shadow-thickness): Added.
10239 (set-face-shadow-thickness): Added.
10240 (modify-face): Add optional shadow-thickness parameter.
10241 (make-face-x-resource-internal): Add shadows.
10242 (copy-face): Ditto.
10243 (face-equal): Ditto.
10244 (face-differs-from-default-p): Ditto.
10245 (face-nontrivial-p): Ditto.
10246 (face-attr-match-p): Ditto.
10247 (face-attr-construct): Ditto.
10248 (face-spec-set): Ditto.
10249 (face-fill-in): Ditto.
10250
10251 1999-07-21 Gerd Moellmann <gerd@acm.org>
10252
10253 * bench.el (bench-mark-split-window): New bench mark.
10254
10255 1999-07-21 Gerd Moellmann <gerd@acm.org>
10256
10257 * faces.el (set-face-font): Don't pass default font to
10258 x-resolve-font so that font will not have to be of the same
10259 size.
10260
10261 1999-07-20 Dave Love <fx@gnu.org>
10262
10263 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
10264 unconditionally t.
10265
10266 1999-07-20 Karl Heuer <kwzh@gnu.org>
10267
10268 * font-lock.el (c++-font-lock-extra-types): Add "type_info".
10269
10270 1999-07-20 Dave Love <fx@gnu.org>
10271
10272 * help.el (describe-variable): Fix test for customizability.
10273
10274 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
10275 Check for readonly buffer in interactive spec.
10276 (zap-to-char, kill-line, kill-region, comment-region, kill-word)
10277 (backward-kill-word): Add * to interactive spec.
10278
10279 * underline.el (underline-region, ununderline-region): Add * to
10280 interactive spec.
10281
10282 * fill.el (canonically-space-region, justify-current-line): Add *
10283 to interactive spec.
10284 (fill-region-as-paragraph, fill-paragraph, fill-region)
10285 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
10286 readonly buffer in interactive spec.
10287
10288 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
10289 (backward-kill-sentence, kill-sentence): Add * to interactive
10290 spec.
10291
10292 1999-07-19 Richard M. Stallman <rms@gnu.org>
10293
10294 * dired-aux.el (dired-do-shell-command): Doc fix.
10295
10296 * shell.el (shell-unquote-argument): New function.
10297 (shell-directory-tracker): Use shell-unquote-argument.
10298 * comint.el (comint-arguments): Handle \ followed by space or tab.
10299
10300 1999-07-19 John Wiegley <jwiegley@borland.com>
10301
10302 * term.el (ansi-term-fg-faces-vector): Added support for ANSI
10303 color codes 39 and 49, which by the way lynx uses them seem to
10304 mean "foreground reset" and "background reset".
10305
10306 1999-07-19 Karl Heuer <kwzh@gnu.org>
10307
10308 * font-lock.el (c++-keywords): Add "typeid".
10309
10310 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
10311 selects no font, treat that as zero selections, not one.
10312
10313 1999-07-19 Dave Love <fx@gnu.org>
10314
10315 * info.el (Info-search): Don't lose with empty regexp.
10316
10317 * version.el: Cater for (free) `ident' program, not `which'.
10318
10319 * hl-line.el: New file.
10320
10321 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
10322 for modes which don't define menus.
10323
10324 1999-07-16 Richard M. Stallman <rms@gnu.org>
10325
10326 * webjump.el (webjump-sample-sites): Update some URLs.
10327
10328 1999-07-14 Richard Stallman <rms@gnu.org>
10329
10330 * Version 20.4 released.
10331
10332 1999-07-14 Andreas Schwab <schwab@gnu.org>
10333
10334 * compare-w.el (compare-windows): Try to find the next window in
10335 the current frame before looking at the other frames.
10336
10337 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
10338
10339 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
10340 Use cyrillic-jcuken as default input method.
10341
10342 1999-07-12 Richard Stallman <rms@gnu.org>
10343
10344 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
10345 Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
10346
10347 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
10348 (ispell-local-dictionary-alist): Add koi8-r for character set.
10349
10350 * textmodes/flyspell.el (flyspell-get-word):
10351 Add special handling for when ispell-otherchars is empty.
10352
10353 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no>
10354
10355 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
10356 when having nested functons.
10357 (pascal-indent-nested-functions) (pascal-indent-line)
10358 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
10359 indenting nested functions.
10360
10361 1999-07-09 Richard Stallman <rms@gnu.org>
10362
10363 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
10364
10365 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no>
10366
10367 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
10368 the `end' keyword was in the very beginning of the buffer.
10369
10370 1999-07-08 Richard Stallman <rms@gnu.org>
10371
10372 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
10373
10374 * term.el (term-emulate-terminal): Avoid infinite loop
10375 in strange case where minibuffer window is selected but not active.
10376
10377 1999-07-07 Stephen Eglen <stephen@gnu.org>
10378
10379 * progmodes/octave-inf.el (inferior-octave-directory-tracker):
10380 Change regexp so that it doesn't match commands beginning with `cd'.
10381
10382 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
10383
10384 * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
10385
10386 1999-07-06 Richard Stallman <rms@gnu.org>
10387
10388 * hscroll.el (hscroll-minibuffer-hook): New function.
10389 (hscroll-global-mode): Add and remove that hook.
10390 Set hscroll-old-truncate-was-global's default value.
10391
10392 1999-07-05 Richard Stallman <rms@gnu.org>
10393
10394 * files.el (revert-buffer): Don't preserve point here.
10395 (revert-buffer-insert-file-contents-function): Doc fix.
10396
10397 * isearch.el (isearch-process-search-char): Write octal 200 correctly.
10398
10399 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
10400 doing a `stat' when it isn't necessary because that can cause
10401 trouble when an NFS server is down.
10402
10403 1999-07-04 Richard Stallman <rms@gnu.org>
10404
10405 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
10406
10407 1999-07-03 Richard Stallman <rms@gnu.org>
10408
10409 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
10410 for \200...\240 also.
10411 (isearch-printing-char): Use unibyte-char-to-multibyte.
10412
10413 1999-07-02 Richard Stallman <rms@gnu.org>
10414
10415 * frame.el (minibuffer-frame-alist): Use defcustom.
10416 (pop-up-frame-alist): Likewise.
10417 (initial-frame-alist): Specify * in the doc string.
10418
10419 * hscroll.el (hscroll-mode): Make it a permanent local.
10420 (hscroll-mode): Don't cancel the timer
10421 if HScroll mode is enabled in some other buffer.
10422
10423 * isearch.el (isearch-done): If search ends in middle of intangible
10424 text (due to text property), move on to the limit of that text.
10425
10426 1999-07-01 Andrew Innes <andrewi@gnu.org>
10427
10428 * man.el (Man-build-man-command): Use value of null-device,
10429 instead of hard-coding "/dev/null".
10430
10431 * dos-w32.el (untranslated-canonical-name): Avoid expanding
10432 ange-ftp file names, which might force ange-ftp to prompt for a
10433 password.
10434
10435 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
10436 to prevent references to temp files.
10437
10438 1999-06-30 Richard Stallman <rms@gnu.org>
10439
10440 * progmodes/sh-script.el (sh-feature): If nothing is known
10441 about the given shell, use the values for `sh'.
10442
10443 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de>
10444
10445 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
10446 to make it non-recursive.
10447
10448 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
10449
10450 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10451
10452 * auto-show.el (auto-show-mode): Fix Typo in :set.
10453
10454 1999-06-29 Richard M. Stallman <rms@gnu.org>
10455
10456 * progmodes/sh-script.el (sh-mode): When setting syntax
10457 table, default to the standard one.
10458
10459 1999-06-27 Richard M. Stallman <rms@gnu.org>
10460
10461 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
10462
10463 1999-06-27 Stefan Monnier <monnier@cs.yale.edu>
10464
10465 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
10466 a frame when `return' is requested (even if pop-up-frames = t)
10467 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
10468 should only be set for the bibtex buffer.
10469
10470 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
10471
10472 * progmodes/compile.el: Deal with compilation-error-screen-columns
10473 being buffer-local.
10474
10475 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
10476
10477 * comint.el (comint-password-prompt-regexp): Allow "(again)".
10478
10479 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10480
10481 * cal-x.el (calendar-only-one-frame-setup): New function.
10482 * calendar.el (calendar): Call it if requested.
10483
10484 1999-06-24 Karl Heuer <kwzh@gnu.org>
10485
10486 * startup.el (iso-8859-n-locale-regexp): Doc fix.
10487
10488 1999-06-22 Richard M. Stallman <rms@gnu.org>
10489
10490 * mail/supercite.el (sc-emacs-features): Doc fix.
10491
10492 1999-06-22 Karl Heuer <kwzh@gnu.org>
10493
10494 * files.el (auto-mode-alist): Add pike-mode.
10495
10496 1999-06-20 Paul R. Eggert <eggert@twinsun.com>
10497
10498 * tar-mode.el (tar-header-block-tokenize): Don't assume that the
10499 last byte of a numeric field is a space or a NUL. Parse it as
10500 potentially part of the number. This is used by GNU tar
10501 1.12.64012 to handle larger values.
10502
10503 1999-06-20 Karl Heuer <kwzh@gnu.org>
10504
10505 * custom.el (custom-handle-keyword): Fix error message.
10506
10507 1999-06-18 Andrew Innes <andrewi@gnu.org>
10508
10509 * mail/smtpmail.el (smtpmail-send-it): Use
10510 convert-standard-filename to make file names for queued mail safe
10511 on Windows (`:' is invalid in file names on Windows).
10512
10513 1999-06-17 Kenichi Handa <handa@etl.go.jp>
10514
10515 * international/mule-cmds.el (describe-current-input-method):
10516 Current-input-method is string.
10517 (toggle-input-method): Docstring fixed.
10518
10519 * international/mule-diag.el
10520 (describe-current-coding-system-briefly): Fix format string.
10521
10522 * international/mule-util.el (coding-system-eol-type-mnemonic):
10523 Docstring modified. Return a string.
10524
10525 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch>
10526
10527 * sql.el (sql-input-ring-file-name): Doc fix.
10528
10529 1999-06-17 Richard M. Stallman <rms@gnu.org>
10530
10531 * calendar/cal-x.el (special-display-buffer-names):
10532 Don't put (get-file-buffer diary-file) on this list.
10533
10534 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov>
10535
10536 * play/mpuz.el (mpuz-try-proposal): Fix message call.
10537 Don't penalize player for certain impossible guesses.
10538
10539 1999-06-16 Andrew Innes <andrewi@gnu.org>
10540
10541 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
10542 return the string "Unk 0 0000" so at least it appears to be a
10543 valid timestamp to `dired-move-to-filename-regexp'.
10544
10545 1999-06-15 Ken'ichi Handa <handa@gnu.org>
10546
10547 * ps-print.el (ps-control-character): Fix previous change.
10548
10549 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10550
10551 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
10552 multiple output of the last message.
10553
10554 1999-06-14 Eli Zaretskii <eliz@gnu.org>
10555
10556 * term/internal.el (IT-display-table-setup): Do not remap \222 to
10557 the ASCII apostrophe, as most DOS codepages have some other glyph
10558 there.
10559
10560 1999-06-14 Ken'ichi Handa <handa@gnu.org>
10561
10562 * language/ethio-util.el (setup-ethiopic-environment-internal):
10563 Use quail-activate-hook instead of obsolete hook quail-mode-hook.
10564 (exit-ethiopic-environment): Likewize.
10565
10566 1999-06-12 Richard M. Stallman <rms@gnu.org>
10567
10568 * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
10569
10570 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10571
10572 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
10573 custom-initialize-default to avoid infinite loop.
10574 (crisp-mode): (defun) Call transient-mark-mode here, not when
10575 loading the file. Run crisp-mode-hook here, and run
10576 crisp-load-hook when loading the file.
10577
10578 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
10579 rmail-summary buffer, search for pattern in rmail-file.
10580
10581 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
10582
10583 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
10584
10585 * ps-print.el (ps-printer-name): Fix custom type.
10586
10587 1999-06-12 Reto Zimmermann <reto@synopsys.com>
10588
10589 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
10590 (vhdl-port-paste-generic-map): Fix indentation bug.
10591 (vhdl-port-paste-port-map): Fix indentation bug.
10592 (vhdl-scan-file-contents): Make scanning case insensitive.
10593
10594 1999-06-11 Richard M. Stallman <rms@gnu.org>
10595
10596 * files.el (write-file): When buffer is not already visiting a file,
10597 don't put buffer name in the minibuffer, just make it the default.
10598 Also handle just directory as arg usefully in that case.
10599
10600 * simple.el (sendmail-user-agent-compose):
10601 Ignore case when inserting the rest of the "other" headers.
10602
10603 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n.
10604
10605 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
10606 (info-lookup-interactive-arguments): Never insert the default
10607 into the minibuffer automatically.
10608
10609 * emacs-lisp/cl-extra.el (getf): Don't call get*.
10610
10611 1999-06-09 Richard M. Stallman <rms@gnu.org>
10612
10613 * simple.el (shell-command): Avoid printing "mark set" message.
10614
10615 1999-06-09 Dave Love <fx@gnu.org>
10616
10617 * progmodes/compile.el (compilation-error-regexp-alist): Allow
10618 digits in program name in first pattern.
10619
10620 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de>
10621
10622 * vc.el (vc-dired-mode): Don't match anything before the date in
10623 dired-move-to-filename-regexp.
10624
10625 1999-06-07 Ken'ichi Handa <handa@gnu.org>
10626
10627 * international/quail.el (quail-define-rules): Fix typo in
10628 docstring.
10629
10630 1999-06-05 Stephen Eglen <stephen@gnu.org>
10631
10632 * iswitchb.el (iswitchb-default-keybindings): Add
10633 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
10634 than when package is loaded.
10635
10636 1999-06-04 Richard M. Stallman <rms@gnu.org>
10637
10638 * startup.el (command-line): Don't set user-init-file directly;
10639 tell `load' to set it.
10640
10641 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
10642
10643 * simple.el (next-history-element):
10644 Handle minibuffer-text-before-history properly when reading sexps.
10645
10646 * disp-table.el (standard-display-european):
10647 For an interactive call by the user,
10648 don't set enable-multibyte-characters,
10649 and don't set the terminal coding system.
10650
10651 * textmodes/refbib.el: Don't print any messages or display
10652 a buffer when loading the library.
10653 (r2b-help): Doc fix.
10654 (r2b-help-message): Update the documentation.
10655 (r2b-load-quietly): Variable deleted.
10656 (r2b-convert-buffer): Doc fix.
10657
10658 1999-06-04 Dave Love <fx@gnu.org>
10659
10660 * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
10661
10662 * auto-show.el: Don't change hooks on loading.
10663 (auto-show-mode): Autoload. Default to nil. Add :set &c.
10664 (auto-show-mode): Add to hooks here.
10665
10666 1999-06-04 Richard Sharman <rsharman@pobox.com>
10667
10668 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
10669 recursion on bogus input.
10670
10671 1999-06-04 Eric M. Ludlam <zappo@ultranet.com>
10672
10673 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
10674 does not select a buffer from the buffers menu, then the attached
10675 frame is not switched to anything.
10676
10677 1999-06-03 Ken'ichi Handa <handa@gnu.org>
10678
10679 * language/vietnamese.el (ccl-encode-vscii): Typo fixed
10680 (viet-viscii-...->viet-vscii...).
10681
10682 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
10683
10684 1999-06-01 Dave Love <fx@gnu.org>
10685
10686 * progmodes/fortran.el: Add :link to defgroup.
10687 (fortran-blink-matching-if): Match ELSE statements too.
10688 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
10689 that filling is always done.
10690
10691 1999-05-31 Richard M. Stallman <rms@gnu.org>
10692
10693 * simple.el (append-next-kill): Use an arg to distinguish
10694 interactive calls from Lisp calls, rather than (interactive-p).
10695
10696 * international/iso-transl.el (iso-transl-language-alist):
10697 Interchange n and N.
10698
10699 1999-05-31 Dave Love <fx@gnu.org>
10700
10701 * msb.el Add to minor-mode-map-alist. Remove hook installation
10702 and keymap munging on load.
10703 (msb-mode): New option.
10704 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
10705 Doc fix.
10706 (msb-mode-map): New variable.
10707 (msb-mode): New command.
10708
10709 1999-05-31 Dave Love <fx@gnu.org>
10710
10711 * ispell.el: (ispell-alternate-dictionary): Fix custom type.
10712 (ispell-complete-word-dict): Likewise.
10713
10714 1999-05-31 Eli Zaretskii <eliz@gnu.org>
10715
10716 * forms.el (forms-save-buffer): Call set-buffer-modified-p to
10717 force the data buffer to be saved, even if the data didn't
10718 change, in case the write filter was modified. Restore the
10719 current record after read-file-filter finishes.
10720
10721 1999-05-29 Karl Heuer <kwzh@gnu.org>
10722
10723 * ispell4.el: Obsolete; file deleted.
10724
10725 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
10726
10727 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
10728 VALUE is a syntax table.
10729
10730 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
10731
10732 * simple.el (zap-to-char): Doc fix.
10733
10734 1999-05-27 Ken'ichi Handa <handa@gnu.org>
10735
10736 * isearch.el (isearch-quote-char): Don't assume character codes
10737 0200 - 0237 stand for characters in some single-byte character
10738 charset.
10739
10740 1999-05-27 Dave Love <fx@gnu.org>
10741
10742 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
10743
10744 1999-05-27 Andreas Schwab <schwab@gnu.org>
10745
10746 * dired-aux.el (dired-insert-subdir-doinsert): Check that the
10747 headerline does not exist already.
10748
10749 1999-05-26 Richard Stallman <rms@gnu.org>
10750
10751 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
10752 Avoid nested null-loops.
10753
10754 1999-05-26 Ken'ichi Handa <handa@gnu.org>
10755
10756 * international/characters.el: Typo fixed; prefered->preferred.
10757
10758 * international/mule-cmds.el (find-coding-systems-for-charsets):
10759 Typo fixed; prefered->preferred.
10760
10761 * map-ynp.el (map-y-or-n-p): Don't inherit the current input
10762 method in read-event.
10763
10764 * international/mule.el (charset-info): Doc-string fixed.
10765
10766 1999-05-25 Ken'ichi Handa <handa@gnu.org>
10767
10768 * mail/smtpmail.el (smtpmail-send-it): Bind
10769 smtpmail-code-conv-from properly.
10770 (smtpmail-send-data-1): If DATA is a multibyte string, encode it
10771 by smtpmail-code-conv-from.
10772
10773 1999-05-24 Richard Stallman <rms@gnu.org>
10774
10775 * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
10776 Binding deleted also.
10777
10778 1999-05-24 Karl Heuer <kwzh@gnu.org>
10779
10780 * comint.el (comint-bol-or-process-mark): Doc fix.
10781
10782 1999-05-23 Dave Love <fx@gnu.org>
10783
10784 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
10785 Enter it on minor-mode-map-alist.
10786 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed.
10787 Autoload. Add custom setter.
10788 (crisp-mark-line): Doc fix.
10789 (crisp-mode): Autoload. Re-write not to frob keymaps directly.
10790 (crisp-mode-hook): Define.
10791
10792 1999-05-23 Ken'ichi Handa <handa@gnu.org>
10793
10794 * files.el (recover-file): Recover buffer-file-coding-system.
10795
10796 1999-05-22 Richard Stallman <rms@gnu.org>
10797
10798 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
10799 regexp match the date, to avoid treating date as file size.
10800 Add YYYY S option to WESTERN/
10801
10802 * bookmark.el: Delete some XEmacs compatibility code.
10803 (bookmark-jump-noselect): Check vc-backend.
10804
10805 * subr.el (add-to-list): Doc fix.
10806
10807 1999-05-21 Stephen Eglen <stephen@gnu.org>
10808
10809 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
10810
10811 1999-05-18 Richard Stallman <rms@gnu.org>
10812
10813 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
10814 non-space after the @anchor command.
10815 (texinfo-format-var): Handle other nested constructs, using
10816 texinfo-parse-expanded-arg and texinfo-discard-command, not
10817 texinfo-parse-arg-discard.
10818
10819 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
10820 (debug): Bind and use debugger-outer-inhibit-redisplay.
10821 Bind inhibit-redisplay to nil.
10822 (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
10823
10824 1999-05-17 Dave Love <fx@gnu.org>
10825
10826 * help.el (describe-function-1): Extra arg, interactive-p.
10827 (describe-key, describe-function): Use it.
10828
10829 1999-05-17 Karl Heuer <kwzh@gnu.org>
10830
10831 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
10832
10833 1999-05-16 Dave Love <fx@gnu.org>
10834
10835 * cus-start.el (all): Delete selective-display. Add scroll-margin,
10836 scroll-preserve-screen-position, scroll-conservatively.
10837
10838 1999-05-16 Dave Love <fx@gnu.org>
10839
10840 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
10841
10842 1999-05-15 Reto Zimmermann <reto@Synopsys.COM>
10843
10844 * progmodes/vhdl-mode.el: Completely revised and massively extended.
10845
10846 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
10847
10848 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
10849 magic number and is not associated with a file.
10850
10851 1999-05-14 Richard M. Stallman <rms@gnu.org>
10852
10853 * files.el (find-file-noselect-1): Fix previous change.
10854
10855 1999-05-14 Simon Marshall <simon@gnu.org>
10856
10857 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
10858
10859 1999-05-13 Ken'ichi Handa <handa@gnu.org>
10860
10861 * international/mule-diag.el (mule-diag): Change MULE to Mule in
10862 docstring.
10863
10864 * international/mule-cmds.el: Change MULE to Mule in docstrings
10865 and menus.
10866
10867 1999-05-10 Kenichi HANDA <handa@etl.go.jp>
10868
10869 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
10870 to correctly reflect the value of BaseLineOffset in
10871 RelativeCompose. Now the value of RelativeCompose is an array of
10872 low and high positions.
10873 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
10874 RLC for the above change.
10875
10876 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org>
10877
10878 * comint.el (comint-password-prompt-regexp): Modified to match the
10879 output of ksu and ssh-add.
10880
10881 1999-05-11 Kenichi HANDA <handa@etl.go.jp>
10882
10883 * language/korea-util.el (isearch-toggle-korean-input-method):
10884 Adjusted for the change of input method handling in isearch.el.
10885 (isearch-hangul-switch-symbol-ksc): Likewise.
10886 (isearch-hangul-switch-hanja): Likewise.
10887
10888 1999-05-10 Dave Love <fx@gnu.org>
10889
10890 * help.el (help-make-xrefs): Fix typo.
10891
10892 1999-05-10 Andreas Schwab <schwab@gnu.org>
10893
10894 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
10895 unibyte-display-via-language-environment.
10896
10897 * help.el (help-make-xrefs): Handle more cases when looking for
10898 commands in a keymap description.
10899
10900 1999-05-10 Eli Zaretskii <eliz@gnu.org>
10901
10902 * loadup.el: For ms-dos systems, load ccl and codepage.
10903
10904 1999-05-09 Ken'ichi Handa <handa@gnu.org>
10905
10906 * ps-print.el (ps-control-character): Call
10907 ps-mule-prepare-ascii-font to setup ASCII fonts.
10908
10909 * ps-mule.el (ps-mule-begin-job): Redo this change "if
10910 ps-multibyte-buffer is nil, use
10911 ps-mule-font-info-database-default."
10912
10913 1999-05-08 Ken Stevens <k.stevens@ieee.org>
10914
10915 * ispell.el (ispell-local-dictionary-alist): New variable for
10916 customizing local dictionaries not accessable by everyone.
10917 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
10918 (ispell-required-version): Changed format `(major minor
10919 revision)' to support general pattern matching.
10920 (ispell-tex-skip-alists): AMS Tex block comment and `\author'
10921 skip region commented out due to incorrect skip potential in std latex.
10922 (ispell-word): Removed `when' macro. Fixed bug of not restoring
10923 cursor point on small words for calls from `ispell-minor-mode'.
10924 (check-ispell-version): Tests and accepts versions major.minor
10925 and above, with adjustments for interactions in 3.1.0-3.1.11.
10926 (ispell-get-line): No longer skips ispell process special characters.
10927 (ispell-comments-and-strings): Removed `when' macro call.
10928 (ispell-minor-check): Requires ispell-word to restore cursor point.
10929 (ispell-buffer-local-parsing): Supports checking comments only.
10930
10931 1999-05-08 Karl Heuer <kwzh@gnu.org>
10932
10933 * comint.el (comint-password-prompt-regexp): Fix last change to be
10934 more specific.
10935
10936 1999-05-07 Richard M. Stallman <rms@gnu.org>
10937
10938 * subr.el (with-temp-message): Fix the other call to message
10939 to use %s.
10940
10941 1999-05-07 Michael Ernst <mernst@alum.mit.edu>
10942
10943 * gud.el (gud-format-command): "%F" means file sans extension.
10944 (jdb): Use %F, not %f, for gud-break.
10945
10946 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org>
10947
10948 * comint.el (comint-password-prompt-regexp): Modified so that it
10949 matches the output of kinit.
10950
10951 1999-05-06 Greg Stark <gsstark@mit.edu>
10952
10953 * timezone.el (timezone-parse-date): Recognize new format used in
10954 internet cookies.
10955
10956 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu>
10957
10958 * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
10959
10960 1999-05-04 Andrew Innes <andrewi@gnu.org>
10961
10962 * time.el (display-time-update): Allow for wrap-around when
10963 checking against display-time-server-down-time.
10964
10965 1999-05-04 Ken'ichi Handa <handa@gnu.org>
10966
10967 * international/mule-diag.el (describe-coding-system): Fix English
10968 message.
10969
10970 1999-05-03 Jason Rumney <jasonr@altavista.net>
10971
10972 * term/w32-win.el: Change the x-charset-registry property for the
10973 Japanese charsets that are supported by Japanese Windows fonts.
10974
10975 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10976
10977 * diary-lib.el (diary-remind): Rewritten to behave sensibly for
10978 diary-block diary entries for which the reminders and the diary
10979 entries can overlap.
10980
10981 1999-05-02 Jason Rumney <jasonr@altavista.net>
10982
10983 * term/w32-win.el (mouse-set-font): Ensure constructed fontset
10984 matches the font selected in the dialog.
10985
10986 1999-05-02 Dave Love <fx@gnu.org>
10987
10988 * browse-url.el (browse-url-browser-function): Add :version.
10989
10990 * international/mule.el (auto-coding-alist): Add .tgz.
10991
10992 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il>
10993
10994 * international/codepage.el (cp-coding-system-for-codepage-1):
10995 Make the magnification parameter for the -dos encoder be 2.
10996
10997 1999-05-2 Andrew Innes <andrewi@gnu.org>
10998
10999 * term/w32-win.el (w32-drag-n-drop): Select file in window where
11000 it is dropped, rather than current window.
11001
11002 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
11003 after switching buffer, as case-fold-search is a buffer local
11004 variable.
11005
11006 * w32-fns.el (convert-standard-filename): Only convert directory
11007 separators to backslash if the interactive shell is one of the
11008 standard Windows shells that has DOS semantics.
11009
11010 * ls-lisp.el (ls-lisp-format-time): Trap errors from
11011 format-time-string, and return a suitable string to indicate the
11012 timestamp was invalid.
11013
11014 * hexl.el (hexlify-command): Apply shell-quote-argument after
11015 expanding hexl-program in case exec-directory contains a space.
11016 (dehexlify-command): Ditto.
11017
11018 * dos-w32.el (file-name-buffer-file-type-alist): Remove various
11019 file extension regexps which aren't necessarily binary files.
11020 (direct-print-region-helper): Use subst-char-in-string instead of
11021 binding directory-sep-char to convert filenames to DOS syntax.
11022 (direct-print-region-use-command-dot-com): New variable.
11023 (direct-print-region-helper): Use it to control whether to invoked
11024 command.com to print on Windows 9x.
11025
11026 * browse-url.el (browse-url-browser-function): Default to
11027 browse-url-default-windows-browser on windows-nt.
11028 (browse-url-default-windows-browser): New function.
11029
11030 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il>
11031
11032 * forms.el (forms-mode): Don't call forms-first-record or
11033 forms-last-record if the data file has zero records.
11034
11035 1999-04-29 Richard M. Stallman <rms@gnu.org>
11036
11037 * files.el (find-file-noselect-1): If buffer-file-name has changed
11038 after find-file-not-found-hooks runs, recompute the truename.
11039 And don't use FILENAME after that point.
11040
11041 1999-04-27 Dave Love <fx@gnu.org>
11042
11043 * paren.el (show-paren-mode)
11044 * which-func.el (which-func-mode-global)
11045 * type-break.el (type-break-mode)
11046 * time.el (display-time-mode)
11047 * rsz-mini.el (resize-minibuffer-mode)
11048 * mouse-sel.el (mouse-sel-mode)
11049 * icomplete.el (icomplete-mode)
11050 * hscroll.el (hscroll-global-mode)
11051 * help.el (temp-buffer-resize-mode)
11052 * font-lock.el (global-font-lock-mode)
11053 * delsel.el (delete-selection-mode)
11054 * avoid.el (mouse-avoidance-mode)
11055 * autoinsert.el (auto-insert-mode)
11056 * winner.el (winner-mode): Doc fix.
11057
11058 1999-04-26 Karl Heuer <kwzh@gnu.org>
11059
11060 * mail/rmail.el (rmail-next-same-subject): When searching, ignore
11061 the same whitespace that was ignored in choosing the subject string.
11062
11063 1999-04-26 Richard M. Stallman <rms@gnu.org>
11064
11065 * info.el (Info-find-node): Position properly after finding anchor.
11066
11067 * cus-start.el (all): Handle unibyte-display-via-language-environment.
11068
11069 * simple.el (indent-new-comment-line): Fix previous change.
11070
11071 * complete.el: Delete the wildcard expansion feature
11072 since that is now standard in find-file.
11073 (PC-try-load-many-files): Function deleted.
11074 (PC-after-load-many-files): Function deleted.
11075 (PC-many-files-list): Variable deleted.
11076 (PC-disable-wildcards): Variable deleted.
11077 (partial-completion-mode): Don't enable the wildcard feature.
11078
11079 * complete.el (PC-look-for-include-file): Don't set global variables
11080 `error', `buf' and `filename' here.
11081
11082 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
11083
11084 1999-04-26 John Wiegley <johnw@oneworld.new-era.com>
11085
11086 * textmodes/outline.el (outline-regexp): Doc fix.
11087
11088 1999-04-26 John Wiegley <johnw@borland.com>
11089
11090 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
11091 C++Builder 4.0 error message syntax.
11092
11093 1999-04-26 Mark Diekhans <markd@Grizzly.COM>
11094
11095 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
11096 supported, use find -exec.
11097
11098 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
11099
11100 * textmodes/texinfmt.el (texinfo-format-buffer): Bind
11101 coding-system-for-write, to avoid hanging when non-interactive.
11102
11103 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
11104
11105 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
11106 start with a newline.
11107
11108 1999-04-13 Ken'ichi Handa <handa@gnu.org>
11109
11110 * international/mule-conf.el (x-ctext): New coding system.
11111
11112 1999-04-12 Richard M. Stallman <rms@gnu.org>
11113
11114 * international/mule-cmds.el (input-method-function):
11115 Add permanent-local property.
11116
11117 1999-04-12 Dave Love <fx@gnu.org>
11118
11119 * jka-compr.el (jka-compr-insert-file-contents): Fix previous
11120 change to use jka-compr-byte-compiler-base-file-name.
11121
11122 * supercite.el (sc-scan-info-alist): Revert last change.
11123 (sc-attrib-selection-list): Fix :type here instead.
11124
11125 1999-04-11 Eli Zaretskii <eliz@gnu.org>
11126
11127 * international/mule.el (auto-coding-alist-lookup): Include ms-dos
11128 in the list of case-insensitive filesystems.
11129
11130 1999-04-09 Kenichi Handa <handa@etl.go.jp>
11131
11132 * international/fontset.el (create-fontset-from-fontset-spec):
11133 Don't register duplicated alias fontset names.
11134
11135 1999-04-08 Richard Stallman <rms@gnu.org>
11136
11137 * international/mule.el (auto-coding-alist-lookup): New function.
11138 (set-auto-coding): Use auto-coding-alist-lookup.
11139
11140 * jka-compr.el (jka-compr-insert-file-contents):
11141 Use auto-coding-alist-lookup to check for files that
11142 should not have eol conversion, in the unibyte case.
11143
11144 1999-04-07 Dave Love <fx@gnu.org>
11145
11146 * help.el (describe-variable): Check custom-loads property as well
11147 as custom-type.
11148
11149 * abbrev.el (abbrev-mode): Customizing sets the default value.
11150
11151 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de>
11152
11153 * vc.el (vc-backend-revert): For CVS files that were made
11154 writeable with "cvs edit", call "cvs unedit" to undo that.
11155
11156 1999-04-08 Dave Love <fx@gnu.org>
11157
11158 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
11159 more.
11160 (sc-emacs-features): Recognize Emacs 20.
11161 (sc-read-string): Use history arg.
11162 (sc-scan-info-alist): Check for rtnvalue a cons.
11163
11164 1999-04-08 Kenichi HANDA <handa@etl.go.jp>
11165
11166 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
11167 coding system to encode the message by
11168 select-message-coding-system.
11169
11170 1999-04-07 Richard Stallman <rms@gnu.org>
11171
11172 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
11173
11174 * winner.el: Reorder definitions.
11175
11176 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
11177
11178 * mail/rmail.el (rmail-decode-babyl-format):
11179 Undo previous change.
11180
11181 1999-04-06 Richard Stallman <rms@gnu.org>
11182
11183 * info.el (Info-find-node): Check for an anchor at the
11184 proper place, before reading an indirect file.
11185
11186 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
11187
11188 * jka-compr.el (jka-compr-insert-file-contents):
11189 Use raw-text-unix when we want no conversion.
11190
11191 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
11192
11193 * timezone.el (timezone-parse-date): Corrected regexp for
11194 style (5) date format so that tenths of seconds are optional.
11195
11196 1999-04-05 Eli Zaretskii <eliz@gnu.org>
11197
11198 * term/internal.el (dos-cpNNN-setup): New function, with the guts
11199 of dos-codepage-setup.
11200 (cjk-codepages-alist): New variable, an alist of Far-Eastern
11201 codepages for which there's no need to set up cpNNN coding
11202 systems.
11203 (dos-codepage-setup): Support Far-Eastern DOS terminals.
11204
11205 1999-04-05 Richard Stallman <rms@gnu.org>
11206
11207 * mail/rmail.el (rmail-ignored-headers): Doc fix.
11208
11209 1999-04-02 Richard Stallman <rms@gnu.org>
11210
11211 * progmodes/compile.el (compilation-handle-exit): Do right thing
11212 if (car status) doesn't end in a newline.
11213
11214 1999-04-01 Dave Love <fx@gnu.org>
11215
11216 * progmodes/sql.el (SQL): Add defgroup :version.
11217
11218 1999-03-31 Richard M. Stallman <rms@gnu.org>
11219
11220 * emacs-lisp/bytecomp.el (byte-compile-file): Clear
11221 buffer-file-coding-system. If the coding system used is raw-text,
11222 etc., make the *Compiler Input* buffer unibyte.
11223
11224 * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
11225
11226 * loadup.el: Don't write the fns-...el file if not dumping.
11227
11228 1999-03-31 Dave Love <fx@gnu.org>
11229
11230 * snmp-mode.el (snmp): Fix defgroup :version.
11231
11232 * hilit-chg.el (highlight-changes): Add defgroup :version.
11233
11234 1999-03-31 Andreas Schwab <schwab@gnu.org>
11235
11236 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
11237 the gnus-save-hidden-threads macro.
11238
11239 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk>
11240
11241 * faces.el (face-set-after-frame-default): Obey the
11242 `customized-face' for new faces.
11243
11244 1999-03-30 Dave Love <fx@gnu.org>
11245
11246 * international/mule-cmds.el (current-language-environment): Doc fix.
11247 * abbrev.el (abbrev-mode): Doc fix.
11248 * autoinsert.el (auto-insert-mode): Doc fix.
11249 * complete.el (partial-completion-mode): Doc fix.
11250 * avoid.el (mouse-avoidance-mode): Doc fix.
11251 * delsel.el (delete-selection-mode): Doc fix.
11252 * font-lock.el (global-font-lock-mode): Doc fix.
11253 * help.el (temp-buffer-resize-mode): Doc fix.
11254 * hscroll.el (hscroll-global-mode): Doc fix.
11255 * icomplete.el (icomplete-mode): Doc fix.
11256 * mouse-sel.el (mouse-sel-mode): Doc fix.
11257 * paren.el (show-paren-mode): Doc fix.
11258 * rsz-mini.el (resize-minibuffer-mode): Doc fix.
11259 * time.el (display-time-mode): Doc fix.
11260 * type-break.el (type-break-mode): Doc fix.
11261 * which-func.el (which-func-mode-global): Doc fix.
11262 * winner.el (winner-mode): Doc fix.
11263
11264 1999-03-30 Michael Ernst <mernst@alum.mit.edu>
11265
11266 * wid-edit.el (widget-before-change): Signal text-read-only rather
11267 than an ordinary error.
11268
11269 1999-03-30 Richard M. Stallman <rms@gnu.org>
11270
11271 * repeat.el: Don't require advice.
11272 (repeat): Do function-indirection in check for kbd macro.
11273 In self-insert case, use the *last* char in INSERTION.
11274
11275 1999-03-30 Karl Heuer <kwzh@gnu.org>
11276
11277 * progmodes/cc-cmds.el (c-indent-command): Doc fix.
11278
11279 1999-03-29 Andreas Schwab <schwab@gnu.org>
11280
11281 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
11282 comint-input-filter-functions. Make variables related to shell
11283 directory tracking local.
11284
11285 1999-03-26 Andreas Schwab <schwab@gnu.org>
11286
11287 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
11288
11289 * simple.el (shell-command-on-region): Cope with exit-status being
11290 nil, which happens if call-process-region was interrupted.
11291
11292 1999-03-26 Richard M. Stallman <rms@gnu.org>
11293
11294 * simple.el (indent-new-comment-line): Handle use at a point
11295 after a comment-end. Handle multiple comments.
11296
11297 * mail/rmail.el (rmail-decode-babyl-format):
11298 To prevent locking, bind buffer-file-name to nil.
11299
11300 1999-03-26 Karl Fogel <kfogel@red-bean.com>
11301
11302 * mail-hist.el (mail-hist-current-header-name): Don't make
11303 off-by-one-error when determining if in message body.
11304
11305 1999-03-25 Andrew Innes <andrewi@gnu.org>
11306
11307 * w32-fns.el (set-default-process-coding-system): Copied from
11308 dos-w32.el, but modified to use Unix line endings for process
11309 input, and to add a suitable entry to process-coding-system-alist
11310 for DOS shells.
11311
11312 * dos-fns.el (set-default-process-coding-system): Copied from
11313 dos-w32.el.
11314
11315 * dos-w32.el (set-default-process-coding-system): Move function to
11316 dos-fns.el; a different version is used in w32-fns.el.
11317
11318 1999-03-24 Dave Love <fx@gnu.org>
11319
11320 * info.el (Info-directory-list): Revert change to re-writing
11321 Info-default-directory-list, but put `alternative' first.
11322 (Info-insert-dir): Modify selecting the top dir file as a consequence.
11323
11324 1999-03-23 Simon Marshall <simon@gnu.org>
11325
11326 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
11327 on the line by itself.
11328 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if
11329 it is not in a declarative context.
11330
11331 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk>
11332
11333 * cus-edit.el (custom-variable-prompt): Allow customization of
11334 autoloaded symbols.
11335
11336 1999-03-22 Kenichi HANDA <handa@etl.go.jp>
11337
11338 * simple.el (what-cursor-position): Don't cause error when point
11339 is at invalid multibyte sequence.
11340
11341 1999-03-21 Karl Heuer <kwzh@gnu.org>
11342
11343 * complete.el (partial-completion-mode): Doc fix.
11344
11345 1999-03-19 Richard M. Stallman <rms@gnu.org>
11346
11347 * progmodes/cplus-md.el (old-c++): Remove :group.
11348
11349 * progmodes/c-mode.el (old-c): Remove :group.
11350
11351 1999-03-18 Simon Marshall <simon@gnu.org>
11352
11353 * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
11354 (java-font-lock-keywords-2): Added "strictfp" keyword.
11355
11356 1999-03-17 Jason Rumney <jasonr@altavista.net>
11357
11358 * w32-fns.el (set-w32-system-coding-system) New function.
11359 (w32-system-coding-system) Initialize to 'iso-latin-1.
11360
11361 1999-03-17 Eli Zaretskii <eliz@gnu.org>
11362
11363 * international/mule-cmds.el (set-language-environment): Fix
11364 previous change: don't use dos-codepage when unbound.
11365
11366 1999-03-17 Karl Heuer <kwzh@gnu.org>
11367
11368 * calendar/appt.el (appt-make-list): Fix previous change.
11369
11370 1999-03-16 Richard M. Stallman <rms@gnu.org>
11371
11372 * window.el (shrink-window-if-larger-than-buffer):
11373 Don't try to redisplay with the cursor at the end
11374 on its own line--that would force a scroll and spoil things.
11375
11376 1999-03-16 Eli Zaretskii <eliz@gnu.org>
11377
11378 * international/mule-cmds.el (set-language-environment): Don't use
11379 cpNNN-nonascii-translation-table if it is unbound.
11380
11381 * term/internal.el (dos-codepage-setup): Compute the unibyte
11382 syntax table and bind unibyte-display-via-language-environment
11383 here, rather than at top level, so that resetting to unibyte in
11384 .emacs works as expected.
11385
11386 1999-03-15 Simon Marshall <simon@gnu.org>
11387
11388 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
11389
11390 1999-03-14 Milan Zamazal <pdm@pvt.net>
11391
11392 * abbrev.el (inverse-add-abbrev): Inherit the current input method.
11393
11394 1999-03-14 Kenichi Handa <handa@etl.go.jp>
11395
11396 * international/mule-util.el (detect-coding-with-priority):
11397 Restore the internal database.
11398
11399 1999-03-14 Stephen Eglen <stephen@gnu.org>
11400
11401 * mail/sendmail.el (sendmail-send-it): Fix typo in error string
11402 if mail-from-style has invalid value.
11403
11404 1999-03-12 Karl Heuer <kwzh@gnu.org>
11405
11406 * vc.el (vc-delete-logbuf-window): New var.
11407 (vc-finish-logentry): Use it.
11408
11409 1999-03-12 Richard M. Stallman <rms@gnu.org>
11410
11411 * startup.el (command-line-1): Improve startup msg.
11412
11413 1999-03-12 Eric M. Ludlam <zappo@ultranet.com>
11414
11415 * speedbar.el: Added commentary about stealthy functions.
11416 (speedbar-message) new function.
11417 (speedbar-y-or-n-p): New function
11418 (speedbar-with-attached-buffer) Moved macro before reference.
11419 Now uses `save-selected-window'.
11420 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
11421 speedbar-generic-item-info, speedbar-item-info-file-helper,
11422 speedbar-item-delete, speedbar-insert-generic-list,
11423 speedbar-timer-fn, speedbar-check-vc-this-line,
11424 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
11425 speedbar-buffers-item-info) Use speedbar-message.
11426 (speedbar-item-info) Limit `message-log-max'.
11427 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
11428 speedbar-item-delete, speedbar-item-object-delete,
11429 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
11430
11431 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp>
11432
11433 * server.el (server-start): Set coding system for the server
11434 process to raw-text.
11435 (server-process-filter): Decode file names if necessary.
11436
11437 1999-03-12 Dave Love <fx@gnu.org>
11438
11439 * textmodes/fill.el (sentence-end-double-space): Doc fix.
11440
11441 * textmodes/paragraphs.el (sentence-end): Doc fix.
11442
11443 1999-03-11 Karl Heuer <kwzh@gnu.org>
11444
11445 * comint.el (comint-password-prompt-regexp): Accept "login password:"
11446
11447 1999-03-09 Karl Heuer <kwzh@gnu.org>
11448
11449 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
11450 (ispell-dictionary-alist-2): Likewise.
11451 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
11452 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
11453 (ispell-dictionary-alist): Build from six pieces, not just two.
11454
11455 * ps-bdf.el (bdf-directory-list): Doc fix.
11456
11457 * enriched.el (enriched-mode): Make var permanent-local.
11458
11459 1999-03-09 Dave Love <fx@gnu.org>
11460
11461 * textmodes/sgml-mode.el (html-mode): Use
11462 sentence-end-double-space when setting sentence-end.
11463
11464 1999-03-09 Ken'ichi Handa <handa@gnu.org>
11465
11466 * language/thai.el (tis-620): New alias coding system for thai-tis620.
11467
11468 1999-03-08 Felix Lee <flee@cygnus.com>
11469
11470 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
11471
11472 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
11473
11474 1999-03-08 Karl Heuer <kwzh@gnu.org>
11475
11476 * dired-aux.el (dired-do-copy-regexp): Doc fix.
11477 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
11478
11479 * dired.el (dired-do-copy-regexp): Doc fix.
11480 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
11481
11482 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com>
11483
11484 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
11485
11486 1999-03-08 Jason Rumney <jasonr@altavista.net>
11487
11488 * international/codepage.el (cp1250-decode-table)
11489 (cp1251-decode-table, cp1253-decode-table)
11490 (cp1257-decode-table): New translation tables for MS Windows codepages.
11491 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
11492
11493 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
11494
11495 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
11496
11497 1999-03-07 Eli Zaretskii <eliz@gnu.org>
11498
11499 * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
11500
11501 * term/internal.el (top level): Display character 255 as 8bit as well.
11502
11503 1999-03-06 Dave Love <fx@gnu.org>
11504
11505 * progmodes/cc-cmds.el (c-outline-level): Bind
11506 buffer-invisibility-spec.
11507
11508 * progmodes/c-mode.el (c-outline-level): Likewise.
11509
11510 * progmodes/ada-mode.el (ada-outline-level): Likewise.
11511
11512 1999-03-05 Felix Lee <flee@cygnus.com>
11513
11514 * textmodes/outline.el (outline-get-last-sibling): Doc fix.
11515
11516 1999-03-05 Richard M. Stallman <rms@gnu.org>
11517
11518 * bindings.el (complete-symbol): Invert meaning of prefix arg.
11519
11520 1999-03-05 Andrew Innes <andrewi@gnu.org>
11521
11522 * w32-fns.el (convert-standard-filename): Convert directory
11523 separators to Windows format.
11524
11525 1999-03-05 Andreas Schwab <schwab@gnu.org>
11526
11527 * international/skkdic-cnv.el: Provide skkdic-cnv.
11528 (skkdic-convert): Emit code to require skkdic-cnv at compile time.
11529 (batch-skkdic-convert): Doc fix.
11530
11531 1999-03-04 Dave Love <fx@gnu.org>
11532
11533 * custom.el (custom-set-variables): Protect against setter errors.
11534
11535 1999-03-04 Eli Zaretskii <eliz@gnu.org>
11536
11537 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
11538 the file sizes from overflowing.
11539 (ls-lisp-format): If file size is a float, use %8.0f to print it.
11540 Under -s, print the size in blocks with %4.0f, in case they have
11541 a *really* huge file.
11542
11543 1999-03-03 Dave Love <fx@gnu.org>
11544
11545 * options.el (edit-options): Doc fix.
11546 (list-options): Don't lose with unbound symbols. Maintain
11547 Edit-options-mode.
11548
11549 1999-03-01 Dave Love <fx@gnu.org>
11550
11551 * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
11552
11553 1999-02-28 Richard M. Stallman <rms@gnu.org>
11554
11555 * ispell.el (ispell-dictionary-alist-override): New variable.
11556 (ispell-dictionary-alist): Don't setq it,
11557 if ispell-dictionary-alist-override is set.
11558
11559 * simple.el (shell-command-default-error-buffer): Renamed from
11560 shell-command-on-region-default-error-buffer.
11561 (shell-command-on-region): Mention in echo area when there
11562 is some error output. Mention success or failure, too.
11563 Accumulate multiple error outputs
11564 going forward, with formfeed in between. Display the error buffer
11565 when we have put something in it.
11566 (shell-command): Add the ERROR-BUFFER argument feature.
11567
11568 1999-02-28 Karl Heuer <kwzh@gnu.org>
11569
11570 * mail/mh-utils.el (mh-lib): Doc fix.
11571 (mh-lib-progs, mh-nmh-p): New vars.
11572 (mh-find-progs): Set mh-lib-progs along with other vars.
11573 (mh-path-search): New arg FUNC-P; if specified, use that instead
11574 of mh-file-command-p.
11575 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
11576
11577 * mail/mh-comp.el (mh-repl-formfile): New var.
11578 (mh-smail-batch): Don't ignore all arguments.
11579 (mh-reply): Do the right thing when using nmh.
11580
11581 1999-02-27 Kenichi Handa <handa@etl.go.jp>
11582
11583 * international/mule-cmds.el (select-safe-coding-system): Be sure
11584 to show a buffer being decoded.
11585
11586 1999-02-26 Ken'ichi Handa <handa@gnu.org>
11587
11588 * ps-bdf.el (bdf-directory-list): Initialize it to
11589 '("/usr/local/share/emacs/fonts/bdf").
11590
11591 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11592
11593 * ps-print.el: PostScript programming fix.
11594 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
11595 setpagedevice operator).
11596
11597 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11598
11599 * ps-print.el: Doc fix, font size specifies landscape and portrait
11600 sizes.
11601 (ps-print-version): New version number (4.1.4).
11602 (ps-font-size, ps-header-font-size, ps-header-title-font-size):
11603 Specifies landscape and portrait sizes.
11604 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
11605 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
11606 fix.
11607 (ps-get-font-size): New fun.
11608 (ps-font-size-internal, ps-header-font-size-internal)
11609 (ps-header-title-font-size-internal): New vars.
11610
11611 * ps-mule.el: Change of ps-print font size variable name.
11612 (ps-mule-generate-font): Fun fix.
11613 (ps-mule-begin-job): Programming uniformization.
11614
11615 1999-02-25 Dave Love <fx@gnu.org>
11616
11617 * help.el (help-xref-info-regexp): Allow linebreaks and capital.
11618 (help-make-xrefs): Do Info case first.
11619
11620 * repeat.el: Don't require advice.
11621 (repeat-last-kill-command): Variable deleted.
11622
11623 1999-02-25 Richard Stallman <rms@gnu.org>
11624
11625 * simple.el (shell-command-on-region): Don't go into the REPLACE = t
11626 case just because the current buffer is the output buffer.
11627
11628 1999-02-25 Kenichi Handa <handa@etl.go.jp>
11629
11630 * simple.el (what-cursor-position): To show the character's
11631 encoding, use encoded-string-description instead of information
11632 of chaset-origin-alist.
11633
11634 * international/mule-cmds.el (iso-2022-control-alist): New variable.
11635 (encoded-code-description): New function.
11636 (encoded-string-description): New function.
11637 (encode-coding-char): New function.
11638
11639 1999-02-25 Andrew Innes <andrewi@gnu.org>
11640
11641 * startup.el (command-line) [windows-nt]: Fix typo in regexp
11642 checking for .emacs[.el[c]].
11643
11644 1999-02-24 Richard Stallman <rms@gnu.org>
11645
11646 * help.el (describe-function-1): Don't print a whole lambda-function.
11647
11648 1999-02-23 Ken'ichi Handa <handa@gnu.org>
11649
11650 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
11651 inputting ?\240.
11652
11653 1999-02-23 Karl Heuer <kwzh@gnu.org>
11654
11655 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
11656
11657 * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
11658 (clean-buffer-list-kill-buffer-names): Doc fix.
11659
11660 * gud.el (gud-jdb-massage-args): Spelling fix.
11661
11662 1999-02-23 Richard M. Stallman <rms@gnu.org>
11663
11664 * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
11665
11666 1999-02-22 Eli Zaretskii <eliz@gnu.org>
11667
11668 * arc-mode.el (archive-set-buffer-as-visiting-file): Save
11669 excursion while calling set-auto-coding-function.
11670
11671 * play/handwrite.el (handwrite): Require ps-print, and use
11672 ps-printer-name and ps-lpr-command. Call ps-print-region-function
11673 if it's defined, instead of forking ps-lpr-command unconditionally.
11674
11675 1999-02-22 Kenichi Handa <handa@etl.go.jp>
11676
11677 * international/codepage.el (cp-coding-system-for-codepage-1): Put
11678 charset-origin-alist property to a coding system for the codepage.
11679
11680 * international/mule.el: Modify comment for charset-origin-alist
11681 property of a coding system.
11682
11683 * simple.el (what-cursor-position): charset-origin-alist property
11684 of a coding system may be a translation table or a symbol of which
11685 `translation-table' property is a translation table.
11686
11687 1999-02-21 Richard Stallman <rms@gnu.org>
11688
11689 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
11690 to the "html" template.
11691
11692 1999-02-21 Peter Breton <pbreton@ne.mediaone.net>
11693
11694 * dirtrack.el (dirtrack): Added docstring. Now returns input.
11695
11696 1999-02-18 Peter Breton <pbreton@ne.mediaone.net>
11697
11698 * dirtrack.el (dirtrack): Check for the prompt in the input string
11699 instead of the buffer.
11700
11701 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch>
11702
11703 * sql.el: Set version to 1.4.1. Changed mail address to
11704 alex@gnu.org. Mention the mailing list sql.el@gnu.org.
11705 (sql-input-ring-separator): Doc fix.
11706 (sql-mode-syntax-table): double-dash starts comments is defined as
11707 ". 56" instead of ". 12b" for XEmacs.
11708 (sql-stop, sql-interactive-mode): Doc fixes.
11709 (sql-postgres): Queries for database and server, not just one.
11710 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
11711
11712 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
11713 changed. This is needed for master.el to work.
11714 (sql-set-sqli-buffer): Use the new hook.
11715
11716 * sql.el (sql-make-alternate-buffer-name): Function that sets
11717 sql-alternate-buffer-name.
11718 (sql-alternate-buffer-name): Possible name of SQLi buffers.
11719 (sql-interactive-mode): Set sql-alternate-buffer-name.
11720 (sql-rename-buffer): New command.
11721 (sql-interactive-mode-menu): Menu for SQLi buffers.
11722
11723 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator
11724 and sql-input-ring-file-name are used to temporarily set
11725 comint-input-ring-file-name and comint-input-ring-separator when
11726 reading and writing input history files.
11727
11728 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
11729 (sql-input-ring-file-name): New variable with customization.
11730 (sql-input-ring-separator): New variable with customization.
11731 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
11732 Callers changed.
11733 (sql-show-sqli-buffer): The message for "sql-buffer is not set"
11734 now includes the name of the current buffer.
11735
11736 (sql-mode): Set paragraph-separate and paragraph-start so that
11737 sql-send-paragraph sends the entire SQL statements, even if it
11738 contains indented lines.
11739
11740 1999-02-18 Dave Love <fx@gnu.org>
11741
11742 * format.el (format-encode-run-method, format-decode-run-method):
11743 Fix previous change.
11744
11745 1999-02-18 Ken'ichi Handa <handa@gnu.org>
11746
11747 * international/mule.el (coding-system-list): Moved here from
11748 mule-util.el to avoid autoloading mule-util by the call of
11749 select-safe-coding-system.
11750
11751 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
11752
11753 * simple.el (turn-on-auto-fill): Mark it as an option for
11754 `text-mode-hook'.
11755
11756 1999-02-17 Richard Stallman <rms@gnu.org>
11757
11758 * emacs-lisp/easymenu.el (easy-menu-get-map):
11759 Don't crash if (current-local-map) is nil.
11760
11761 1999-02-17 Peter Breton <pbreton@ne.mediaone.net>
11762
11763 * filecache.el (file-cache-filter-regexps): Added .class.
11764
11765 1999-02-17 Ken'ichi Handa <handa@gnu.org>
11766
11767 * international/mule-util.el (decompose-region): Use
11768 insert-buffer-substring instead of insert-buffer to avoid putting
11769 mark.
11770
11771 1999-02-17 Andreas Schwab <schwab@gnu.org>
11772
11773 * calendar/cal-move.el (scroll-calendar-left): Don't set
11774 displayed-month and displayed-year here, let generate-calendar do
11775 it, after range checking.
11776
11777 1999-02-17 Simon Marshall <simon@gnu.org>
11778
11779 * progmodes/cc-engine.el (c-at-toplevel-p): New function.
11780
11781 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
11782 correctly between an object declared via a constructor and a method.
11783 (font-lock-defaults-alist): Don't give `.' word syntax for Java.
11784 (java-font-lock-keywords-1): Fontify package names individually.
11785 (java-font-lock-extra-types): Ensure regexp matches capitalised only.
11786 (java-font-lock-keywords-2): Simplify type fontification.
11787 (java-font-lock-keywords-3): Likewise.
11788
11789 1999-02-17 Kenichi Handa <handa@etl.go.jp>
11790
11791 * language/japanese.el (iso-2022-jp-2): New coding system.
11792 ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
11793
11794 1999-02-16 Dave Love <fx@gnu.org>
11795
11796 * help.el (describe-function-1): Accept non-symbols.
11797
11798 1999-02-16 Paul Eggert <eggert@twinsun.com>
11799
11800 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
11801 find the last match if there are multiple matches.
11802
11803 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11804
11805 * tex-mode.el (tex-run-command, latex-run-command)
11806 (slitex-run-command, tex-command): Doc changes.
11807 (tex-start-options-string): Autoload it. Doc change. Provide
11808 a menu for customization. Allow nil. Quote backslashes only once.
11809 (tex-start-tex): Handle nil value of tex-start-options-string
11810 and apply shell-quote-argument to it.
11811
11812 1999-02-16 Eli Zaretskii <eliz@gnu.org>
11813
11814 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
11815 the size in blocks, since it can be a float.
11816 (ls-lisp-format): Likewise
11817
11818 1999-02-16 Ken'ichi Handa <handa@gnu.org>
11819
11820 * language/japanese.el (japanese-shift-jis): Add
11821 charset-origin-alist property.
11822
11823 1999-02-15 Richard Stallman <rms@gnu.org>
11824
11825 * progmodes/compile.el (compile-internal): Use save-selected-window.
11826
11827 * subr.el (momentary-string-display): Bind inhibit-read-only.
11828
11829 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
11830
11831 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il>
11832
11833 * mail/rmail.el (rmail-show-message): If an unseen message has a
11834 Summary-line in its header, get past one more line before looking
11835 for the X-Coding-System header.
11836
11837 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
11838
11839 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
11840 explicitly to accomodate Windows 9X lack of a useful copy program.
11841
11842 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
11843
11844 * wid-edit.el (widget-choice-value-create): Use `equal'
11845 instead of `eq'.
11846
11847 1999-02-14 Richard Stallman <rms@gnu.org>
11848
11849 * international/iso-transl.el:
11850 (iso-transl-ae): Renamed from iso-transl-e-slash.
11851 (iso-transl-a-ring): Renamed from iso-transl-a-slash.
11852 (iso-transl-AE): Renamed from iso-transl-E-slash.
11853 (iso-transl-A-ring): Renamed from iso-transl-A-slash.
11854 (iso-transl-char-map): Related changes.
11855
11856 * format.el (format-replace-strings): Fix value of TO in REVERSE case.
11857
11858 1999-02-13 Richard Stallman <rms@gnu.org>
11859
11860 * textmodes/texinfmt.el (texinfo-alias): New function.
11861 (texinfo-fold-nodename-case): Add defvar.
11862 (texinfo-format-node): Do case folding if specified.
11863
11864 * ffap.el (ffap-file-at-point): Test local file names
11865 immediately. Strip off line numbers.
11866
11867 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch>
11868
11869 * sql.el: Set version to 1.3.2
11870 (sql-solid-program): Added support for solid.
11871 (sql-help): Doc mentions sql-solid.
11872 (sql-solid): Entry function for Solid.
11873 (sql-buffer): Doc explains the use of the variable and how to
11874 change it.
11875 (sql-mode-menu): Included entries for sql-show-sqli-buffer and
11876 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
11877 disabled if sql-buffer doesn't have a process; sql-send-paragraph
11878 is new.
11879 (sql-show-sqli-buffer): New function to display the value of
11880 sql-buffer.
11881 (sql-change-sqli-buffer): New function to change sql-buffer.
11882 (sql-mode): Doc explains how to change sql-buffer.
11883 (sql-send-paragraph): New function to send a paragraph.
11884 (sql-mode-map): Added keybinding for sql-send-paragraph.
11885 (sql-mysql): Doc corrected.
11886 (sql-ms): Doc corrected.
11887
11888 * sql.el (sql-server): Doc fix.
11889 (sql-mysql): Added the use of sql-server to specify the host,
11890 sql-database now specifies database instead of host.
11891 (sql-mode-menu): Send... menu items are only active if sql-buffer
11892 is non-nil.
11893 (sql-help): Changed tag of entry functions a bit.
11894
11895 * sql.el: Added keywords from `finder-by-keyword'.
11896 (sql-mode): Made sql-buffer a local variable, changed the
11897 documentation: removed instructions to add *.sql files to
11898 auto-mode-alist, added documentation for having mutliple SQL
11899 buffers sending their stuff to different SQLi buffers, each
11900 running a different process.
11901 (sql-postgres): Quoted *SQL* in doc string.
11902 (sql-ms): Likewise.
11903 (sql-ingres): Likewise.
11904 (sql-ingres): Quoted *SQL* in doc string, added references to
11905 sql-user and sql-password used during login.
11906 (sql-sybase): Quoted *SQL* in doc string, added comma.
11907 (sql-oracle): Likewise.
11908 (sql-interactive-mode): Added extensive documentation for having
11909 mutliple SQL buffers sending their stuff to different SQLi
11910 buffers, each running a different process.
11911 (sql-buffer): Changed doc from *SQL* to SQLi.
11912 (sql-get-login): Doc fix.
11913
11914 1999-02-12 Ken'ichi Handa <handa@gnu.org>
11915
11916 * international/mule-conf.el (undecided): Set ascii in
11917 safe-charsets property.
11918
11919 1999-02-12 Richard Stallman <rms@gnu.org>
11920
11921 * textmodes/paragraphs.el (paragraph-separate): Doc fix.
11922
11923 1999-02-12 Ken'ichi Handa <handa@gnu.org>
11924
11925 * ps-mule.el (ps-mule-font-info-database-default): Set the initial
11926 value to ps-mule-font-info-database-latin.
11927
11928 1999-02-13 Kenichi HANDA <handa@etl.go.jp>
11929
11930 * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
11931 (ps-mule-font-info-database-default): New variable.
11932 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
11933 ps-mule-font-info-database-default.
11934
11935 1999-02-12 Dave Love <fx@gnu.org>
11936
11937 * timezone.el (timezone-make-date-sortable)
11938 (timezone-make-date-arpa-standard): Doc fix.
11939
11940 1999-02-12 Ken'ichi Handa <handa@gnu.org>
11941
11942 * international/quail.el (quail-show-kbd-layout): Bind
11943 blink-matching-paren to nil.
11944
11945 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
11946 for ASCII and Latin-1.
11947
11948 1999-02-12 Andreas Schwab <schwab@gnu.org>
11949
11950 * gud.el (jdb): Fix regexp for comint-prompt-regexp.
11951
11952 1999-02-12 Kenichi Handa <handa@etl.go.jp>
11953
11954 * international/mule-cmds.el (language-info-alist): Remove
11955 description about charset-origin-alist.
11956
11957 * international/mule.el: Comment added for a new coding system
11958 property `charset-origin-alit'.
11959 (make-translation-table): This variable deleted.
11960
11961 * language/chinese.el (chinese-big5): Add charset-origin-alist
11962 property.
11963 ("Chinese-CNS"): Remove charset-origin-alist property.
11964
11965 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
11966 property.
11967 (cyrillic-alternativnyj): Likewise.
11968 ("Cyrillic-KOI8"): Remove charset-origin-alist property.
11969 ("Cyrillic-ALT"): Likewise.
11970
11971 * language/vietnamese.el (vietnamese-viqr): Add
11972 charset-origin-alist property.
11973 ("Vietnamese"): Remove charset-origin-alist property.
11974
11975 * simple.el (what-cursor-position): Don't use the varialbe
11976 charset-origin-alist, but use charset-origin-alist property of
11977 buffer-file-coding-system to decide external character set code.
11978
11979 1999-02-10 Richard Stallman <rms@gnu.org>
11980
11981 * shadowfile.el: Don't turn on the mode when the file is loaded.
11982
11983 1999-02-09 Richard Stallman <rms@gnu.org>
11984
11985 * progmodes/compile.el (compile-auto-highlight): Customize.
11986
11987 * add-log.el (add-log-file-name-function): New variable.
11988 (add-change-log-entry): Call that function, if non-nil.
11989
11990 1999-02-09 Michael Ernst <mernst@alum.mit.edu>
11991
11992 * rmail.el (rmail-search): Track match with a marker, not an integer.
11993
11994 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11995
11996 * progmodes/compile.el (compilation-setup): Set value of
11997 compilation-directory-stack as in compilation-forget-errors.
11998 (compile-reinitialize-errors): Bind buffer-undo-list and
11999 deactivate-mark.
12000 (compilation-forget-errors): Likewise.
12001
12002 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com>
12003
12004 * textmodes/texinfo.el (texinfo-environment-regexp): Add the
12005 def... constructs.
12006
12007 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
12008 Remove calls to sleep-for.
12009
12010 1999-02-08 Eli Zaretskii <eliz@gnu.org>
12011
12012 * international/codepage.el (cp-coding-system-for-codepage-1): On
12013 MS-DOS, use dos-unsupported-char-glyph for characters not
12014 supported by the codepage.
12015 (cp-make-coding-systems-for-codepage): Likewise.
12016
12017 1999-02-08 Andreas Schwab <schwab@gnu.org>
12018
12019 * international/mule-util.el (coding-system-list): Don't sort
12020 coding-system-list here.
12021
12022 * international/mule.el (coding-system-lessp): Moved here from
12023 mule-util.el
12024 (add-to-coding-system-list): New function.
12025 (make-subsidiary-coding-system, make-coding-system,
12026 define-coding-system-alias): Use it instead of setting
12027 coding-system-list directly.
12028
12029 1999-02-07 Dave Love <fx@gnu.org>
12030
12031 * calendar/appt.el (appt-make-list): Don't splice quotes and date
12032 onto message.
12033
12034 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12035
12036 * imenu.el (imenu--last-menubar-index-alist): Add doc.
12037 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist.
12038
12039 1999-02-06 Richard Stallman <rms@gnu.org>
12040
12041 * language/european.el (setup-slovenian-environment): New function.
12042 ("Slovenian"): New language environment.
12043
12044 * progmodes/sql.el (sql-help): Doc fix.
12045 (sql-mysql): Doc fix.
12046
12047 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12048
12049 * tex-mode.el: When compiling, require compare-w and skeleton
12050 to pacify the byte-compiler. Move the def's of the tex-commands
12051 together. Add a comment on kill-process vs. quit-process.
12052
12053 1999-02-05 Dave Love <fx@gnu.org>
12054
12055 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
12056 null markers.
12057 (compile-goto-error): Likewise.
12058
12059 1999-02-05 Stephen Gildea <gildea@alum.mit.edu>
12060
12061 * time-stamp.el (time-stamp-format): Format doc tighter.
12062 (time-stamp-line-limit): 0 searches the entire buffer (careful!).
12063 (time-stamp): Don't re-write the time stamp if it didn't change.
12064
12065 1999-02-05 Alex Schroeder <asc@bsiag.com>
12066
12067 * progmodes/sql.el: Changed version to 1.2.1.
12068 (sql-pop-to-buffer-after-send-region): Improved documentation.
12069 (sql-mysql-program): Added MySQL support.
12070 (sql-prompt-length): Made prompt-length configurable.
12071 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
12072 (sql-help): Added MySQL support, changed documentation.
12073 (sql-send-region): A message is displayed if something is sent.
12074 (sql-mode): Added buffer-local comment-start.
12075 (sql-interactive-mode): Use sql-prompt-length to set left-margin.
12076 (sql-interactive-mode): Added buffer-local comment-start.
12077 (sql-oracle): Set sql-prompt-length.
12078 (sql-sybase): Set sql-prompt-length.
12079 (sql-mysql): Added MySQL support.
12080 (sql-ingres): Set sql-prompt-length.
12081 (sql-ms): Set sql-prompt-length.
12082 (sql-postgres): Set sql-prompt-length.
12083
12084 1999-02-04 Eli Zaretskii <eliz@gnu.org>
12085
12086 * term/internal.el (dos-codepage-setup): Set selection coding
12087 system to cpNNN-dos.
12088
12089 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12090
12091 * international/characters.el: Let ethiopic use iso-2022-7bit.
12092
12093 1999-02-02 Dave Love <fx@gnu.org>
12094
12095 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
12096 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
12097
12098 1999-02-02 Karl Heuer <kwzh@gnu.org>
12099
12100 * terminal.el (terminal-emulator): Doc fix.
12101
12102 1999-02-02 Ken'ichi Handa <handa@gnu.org>
12103
12104 * international/mule-util.el (compose-chars): Doc-string
12105 modified. Correctly handle a composition character in ARGS.
12106
12107 1999-02-01 Richard Stallman <rms@gnu.org>
12108
12109 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
12110 (makefile-menu-index-function): Function deleted.
12111 (makefile-mode): Use makefile-imenu-generic-expression.
12112
12113 1999-02-01 Geoff Voelker <voelker@cs.washington.edu>
12114
12115 * term/w32-win.el (w32-create-initial-fontsets): Back out previous
12116 change, invoke from before-init-hook.
12117
12118 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu>
12119
12120 * subr.el (remove-from-invisibility-spec): Cope with the case when
12121 buffer-invisibility-spec is t.
12122
12123 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu>
12124
12125 * calendar/calendar.el (calendar-mode-map): Fix bindings for
12126 appt-add and appt-delete.
12127
12128 1999-02-01 Eli Zaretskii <eliz@gnu.org>
12129
12130 * term/pc-win.el (msdos-approximate-color): New function.
12131 (msdos-color-translate): Call it to find a DOS color that best
12132 approximates an X-style "#NNNNNN" color specification.
12133
12134 1999-02-01 Ken'ichi Handa <handa@gnu.org>
12135
12136 * international/mule-util.el (compose-chars-component): Add
12137 autoload cookie.
12138
12139 1999-01-31 Ken'ichi Handa <handa@gnu.org>
12140
12141 * international/quail.el (quail-lookup-key): If cdr of MAP is a
12142 function, replace cdr of MAP by the return value of the function
12143 unconditionally.
12144
12145 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12146
12147 * progmodes/compile.el (compilation-next-error-locus): Don't
12148 decrease argument FIND-AT-LEAST of compilation-next-error-locus.
12149
12150 1999-01-31 Eli Zaretskii <eliz@gnu.org>
12151
12152 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
12153 and NLs before "charset", and allow the charset name be in double
12154 quotes.
12155
12156 1999-01-31 Richard Stallman <rms@gnu.org>
12157
12158 * imenu.el (imenu-sort-function): Fix custom type.
12159
12160 1999-01-30 Richard Stallman <rms@gnu.org>
12161
12162 * speedbar.el (speedbar-line-token): Match {...} instead of [...].
12163 (speedbar-line-token): Likewise.
12164
12165 * play/gametree.el (gametree-default-score): Use defcustom.
12166 (gametree-score-regexp, gametree-score-closer): Likewise.
12167 (gametree-score-manual-flag, gametree-score-opener): Likewise.
12168
12169 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12170
12171 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
12172 decoding.
12173
12174 1999-01-29 Markus Rost <rost@gnu.org>
12175
12176 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
12177 tex-validate-buffer.
12178 (plain-tex-mode, latex-mode, slitex-mode): Likewise.
12179 (tex-validate-buffer): Renamed from validate-tex-buffer. Works
12180 now with recent occur-mode.
12181 (tex-validate-region): Really walk through all Sexps.
12182 (tex-region): Bind shell-dirtrack-verbose.
12183 (tex-file, tex-bibtex-file): Likewise.
12184
12185 1999-01-29 Dave Love <fx@gnu.org>
12186
12187 * finder.el: (finder-commentary): Fix interactive spec. Try
12188 appending .el to file name.
12189 (finder-find-library, finder-commentary): Doc fixes.
12190
12191 1999-01-29 Andrew Innes <andrewi@gnu.org>
12192
12193 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
12194 where the userid contains directory separators.
12195
12196 1999-01-29 Dave Love <fx@gnu.org>
12197
12198 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
12199 (lm-commentary): Doc fix.
12200
12201 1999-01-29 Andreas Schwab <schwab@gnu.org>
12202
12203 * files.el (file-expand-wildcards): Never consider `.' and `..' a
12204 wildcard match. Fix regexp that tests if dirpart contains
12205 wildcard characters.
12206
12207 1999-01-28 Richard Stallman <rms@gnu.org>
12208
12209 * font-lock.el (font-lock-default-unfontify-region):
12210 If not font-lock-syntactic-keywords, don't remove syntax-table prop.
12211
12212 1999-01-27 Jason Rumney <jasonr@altavista.net>
12213
12214 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
12215 from FAMILY field.
12216 (w32-create-initial-fontsets): Do not use before-init-hook.
12217 (mouse-set-font): Document. Automatically create and use fontsets.
12218
12219 * dos-w32.el (direct-print-region-helper): Check for printer
12220 being t as well as a string.
12221
12222 1999-01-27 Kenichi Handa <handa@etl.go.jp>
12223
12224 * mail/rmail.el (rmail-decode-mime-charset): New variable.
12225 (rmail-mime-charset-pattern): New variable.
12226 (rmail-convert-to-babyl-format): Decode by MIME-charset if
12227 rmail-decode-mime-charset is non-nil.
12228
12229 1999-01-27 Ken'ichi Handa <handa@gnu.org>
12230
12231 * international/characters.el: Set category `q' for all characters
12232 in tibetan and tibetan-1-column.
12233
12234 1999-01-27 Andrew Innes <andrewi@gnu.org>
12235
12236 * frame.el (select-frame-by-name): Obey focus-follows-mouse.
12237 (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
12238
12239 1999-01-27 Dave Love <fx@gnu.org>
12240
12241 * international/mule-cmds.el (current-language-environment):
12242 Provide :link, :type (choices) and appropriate :get.
12243
12244 1999-01-27 Eli Zaretskii <eliz@gnu.org>
12245
12246 * startup.el (command-line): Set default eol-mnemonic-* strings to
12247 display end-of-line format in mode line.
12248
12249 * cus-start.el (all): Add eol-mnemonic-* variables.
12250
12251 1999-01-26 Dave Love <fx@gnu.org>
12252
12253 * startup.el (command-line-1): Up-date copyright.
12254
12255 * paths.el (Info-default-directory-list): Use configdir twice.
12256
12257 * info.el (Info-directory-list): Don't set path-separator now
12258 we're not shipped with Texinfo. Simplify path definition.
12259 Substitute all occurrences of instdir in Info-default-directory-list.
12260
12261 1999-01-25 Richard Stallman <rms@gnu.org>
12262
12263 * startup.el (normal-top-level-add-subdirs-to-load-path):
12264 Record the inode numbers of the dirs processed, to avoid loop.
12265
12266 * textmodes/tex-mode.el (tex-run-command): Doc fix.
12267
12268 1999-01-25 Dave Love <fx@gnu.org>
12269
12270 * browse-url.el (browse-url-netscape-program): Doc addition.
12271
12272 * help.el (help-make-xrefs): Default info references to an `(emacs)'
12273 prefix.
12274
12275 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
12276 auto-mode-alist.
12277
12278 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12279
12280 * calendar/diary-lib.el (mark-diary-entries): Use
12281 assoc-ignore-case and do not capitalize when matching month and
12282 day names.
12283
12284 * calendar/calendar.el (calendar-read-date): Ditto.
12285
12286 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
12287 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
12288
12289 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
12290
12291 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
12292
12293 * calendar/cal-islam.el (calendar-goto-islamic-date)
12294 (mark-islamic-diary-entries): Ditto.
12295
12296 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
12297
12298 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
12299 (calendar-read-mayan-tzolkin-date): Ditto.
12300
12301 * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
12302
12303 1999-01-22 Michael Ernst <mernst@alum.mit.edu>
12304
12305 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
12306
12307 1999-01-25 Karl Heuer <kwzh@gnu.org>
12308
12309 * faces.el (list-faces-display): Multiline case of previous fix.
12310
12311 1999-01-25 Andreas Schwab <schwab@gnu.org>
12312
12313 * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
12314
12315 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
12316
12317 * files.el (find-file): If find-file-noselect returns a list,
12318 do switch-to-buffer on each element.
12319 (find-file-other-window): Likewise for all but the first element.
12320 (find-file-other-frame): Same.
12321 (find-file-noselect): When we expand a wildcard, return a list
12322 of buffers.
12323
12324 1999-01-24 Eli Zaretskii <eliz@gnu.org>
12325
12326 * term/internal.el (dos-codepage-setup): Call prefer-coding-system
12327 to set the appropriate cpNNN-dos coding system as the
12328 highest-priority coding system.
12329
12330 1999-01-23 Ken'ichi Handa <handa@gnu.org>
12331
12332 * international/fontset.el (generate-fontset-menu): Return a
12333 sorted list by plain names of fontsets.
12334
12335 * international/mule-diag.el (list-fontsets): Sort fontsets by
12336 plain names.
12337
12338 * language/tibet-util.el (tibetan-vertical-stacking): If the arg
12339 FIRST is a composite character, decompose it at first.
12340
12341 1999-01-23 Dave Love <fx@gnu.org>
12342
12343 * format.el: Doc fixes.
12344 (format-encode-run-method): Have things happen in the right buffer.
12345 Deal with errors from method. Set coding-system-for-write.
12346 (format-decode-run-method): Have things happen in the right buffer.
12347 Deal with errors from method. Set coding-system-for-read.
12348 (format-alist): Use nil instead of unmatchable regexps.
12349
12350 * simple.el (shell-command-on-region): Return command's exit status.
12351
12352 1999-01-23 Eric Ludlam <zappo@gnu.org>
12353
12354 * speedbar.el (speedbar-item-info-file-helper): Add optional arg
12355 of the file whose info we want to display.
12356 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
12357 (speedbar-add-mode-functions-list) Improve doc.
12358 (speedbar-line-token) New function.
12359 (speedbar-dired) Fix order of directories in -shown-directories.
12360 (speedbar-line-path): Default return is default-directory
12361 (speedbar-buffers-line-path): Return is dir name only.
12362 (speedbar-mode-functions-list): New variable.
12363 (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
12364 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
12365 speedbar-files-item-info speedbar-buffers-item-info): New functions.
12366 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
12367 New functions.
12368 (speedbar-line-file): Broke out part that fetches file from a line.
12369 (speedbar-line-text): New function extracted from speedbar-line-file.
12370 (speedbar-line-path): Converted into a replaceable function.
12371 (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
12372
12373 1999-01-23 Ken'ichi Handa <handa@gnu.org>
12374
12375 * international/fontset.el (create-fontset-from-x-resource): Make
12376 style variants.
12377
12378 1999-01-22 Dave Love <fx@gnu.org>
12379
12380 * paths.el (Info-default-directory-list): Put sysdir after start.
12381
12382 1999-01-22 Sam Steingold <sds@goems.com>
12383
12384 * midnight.el (clean-buffer-list): Do not kill a buffer if it has
12385 a process associated with it.
12386
12387 1999-01-22 Jason Rumney <jasonr@altavista.net>
12388
12389 * term/w32-win.el (w32-standard-fontset-spec): Simplified.
12390
12391 1999-01-22 Felix Lee <flee@cygnus.com>
12392
12393 * vc.el (vc-annotate-display): Delete old overlays. Fix check for
12394 major-mode.
12395 (vc-annotate-mode): Delete variable.
12396
12397 1999-01-22 Andrew Innes <andrewi@gnu.org>
12398
12399 * startup.el (command-line): [windows-nt]: Check for existence of
12400 .emacs file so as to notice .emacs.el or .emacs.elc and use them
12401 in preference to _emacs.
12402
12403 1999-01-22 Dave Love <fx@gnu.org>
12404
12405 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
12406
12407 1999-01-20 Richard Stallman <rms@gnu.org>
12408
12409 * files.el (find-file-noselect): Do wildcard processing only
12410 if new arg WILDCARDS is non-nil.
12411 (find-file, find-file-other-window): New arg WILDCARDS.
12412 Default it to non-nil if interactive.
12413 (find-file-other-frame): Likewise.
12414 (find-file-read-only): Likewise.
12415 (find-file-read-only-other-window): Likewise.
12416 (find-file-read-only-other-frame): Likewise.
12417
12418 * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
12419 (widget-plist-convert-option): Delete spurious comma.
12420
12421 1999-01-19 Jason Rumney <jasonr@altavista.net>
12422
12423 * term/w32-win.el (w32-standard-fontspec-spec): Change
12424 iso8859-5 to koi8-r. Add iso8859-9.
12425
12426 1999-01-19 Dave Love <fx@gnu.org>
12427
12428 * browse-url.el (browse-url-maybe-new-window): Delete macro and
12429 its uses.
12430
12431 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
12432 is active.
12433 (fortran-indent-subprogram): Likewise.
12434
12435 1999-01-19 Dave Love <d.love@dl.ac.uk>
12436
12437 * paths.el (Info-default-directory-list): Perhaps add /usr/info.
12438
12439 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
12440
12441 * wid-edit.el (alist): Use sexp as default key-type.
12442
12443 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12444
12445 * textmodes/tex-mode.el (tex-define-common-keys):
12446 Remove key binding of tex-feed-input.
12447 (tex-mode-map): Bind tex-feed-input here.
12448 (tex-start-shell): Use compilation-shell-minor-mode. Set
12449 comint-input-filter-functions before running tex-shell-hook.
12450 (tex-start-tex): Forget compilation errors.
12451 (tex-compilation-parse-errors): Rewritten to work also with
12452 compile-mouse-goto-error and compile-goto-error. Adjusted to
12453 change in tex-region.
12454 (tex-region): For the temp file use file-name without directory.
12455 (tex-file): Expand file name of tex-print-file.
12456
12457 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12458
12459 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call.
12460
12461 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no>
12462
12463 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
12464 beginning could cause Emacs to hang. Fixed.
12465
12466 1999-01-18 Ken'ichi Handa <handa@gnu.org>
12467
12468 * international/ccl.el (ccl-compile-translate-character): Handle
12469 the case that a tranlation table is CCL register correctly.
12470
12471 * international/mule-cmds.el (select-safe-coding-system):
12472 Hightlight at most 256 characters.
12473
12474 1999-01-18 Dave Love <fx@gnu.org>
12475
12476 * startup.el (command-line): If the init file changes operation to
12477 unibyte, make all buffers unibyte and re-set language environment.
12478
12479 * disp-table.el (standard-display-european): Make all existing
12480 buffers unibyte. Fix doc.
12481
12482 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu>
12483
12484 * wid-edit.el (coding-system): Define this unconditionally.
12485
12486 * simple.el (shell-command-on-region-default-error-buffer): New var.
12487 (shell-command-on-region): Use that variable as interactive
12488 value of ERROR-BUFFER argument.
12489
12490 1999-01-17 Sam Steingold <sds@goems.com>
12491
12492 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
12493
12494 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12495
12496 * progmodes/compile.el (compilation-goto-locus): If already in the
12497 compilation buffer's window, keep it in that window.
12498 (compile-mouse-goto-error): Add Doc. Don't play with windows.
12499 (compile-goto-error): Don't play with windows.
12500
12501 * textmodes/tex-mode.el (latex-run-command): Doc fix.
12502 (tex-command): Doc fix.
12503 (tex-compilation-parse-errors): Doc fix.
12504 (tex-generate-zap-file-name): Don't start the name with -.
12505 (tex-expand-files): Works now also with strings ending with ":".
12506
12507 1999-01-17 Ian T Zimmerman <itz@transbay.net>
12508
12509 Patch failed to install:
12510 * gametree.el: Document scoring functionality.
12511 (gametree-score-regexp): Add optional plus sign.
12512 (gametree-score-opener): Replace `:' with `=' as the former
12513 conflicts with gametree-half-ply-regexp.
12514 (gametree-transpose-following-leaves): Add.
12515 (gametree-insert-new-leaf): Make modifying commands barf in read
12516 only buffers.
12517 (gametree-break-line-here): Add a call to
12518 `gametree-transpose-following-leaves'. This maintains the
12519 necessary invariant that on each level all leaf children precede
12520 all nonleaf children. This has always been implied, but left to
12521 the user, and, unfortunately, undocumented.
12522
12523 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk>
12524
12525 * wid-edit.el (plist, alist): New widget types.
12526
12527 1999-01-17 Dave Love <fx@gnu.org>
12528
12529 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
12530 fix scope of condition-case therein.
12531
12532 1999-01-17 Andrew Innes <andrewi@gnu.org>
12533
12534 * dos-w32.el: (find-buffer-file-type-coding-system): Use
12535 default-buffer-file-coding-system when file doesn't exist (and
12536 isn't covered by a special case) instead of forcing undecided-dos
12537 against the user's wishes.
12538
12539 * dos-w32.el (direct-print-region-helper): New function based on
12540 direct-print-region-function; sends data to specified printer port
12541 without further translation. Recognize and handle specially the
12542 standard `print' and `nprint' programs, as well as `lpr' and
12543 similar programs. Only write directly to the printer port if no
12544 print program is specified. Work around a bug in Windows 9x
12545 affecting Win32 version of Emacs by invoking command.com to write
12546 to the printer port instead of writing directly.
12547 (direct-print-region-function): Use direct-print-region-helper to
12548 do most of the work.
12549 (direct-ps-print-region-function): New function; analogue of
12550 direct-print-region-function for ps-print.
12551 (ps-lpr-command): Comment out setq; leave as example usage.
12552 (ps-lpr-switches): Ditto.
12553
12554 * lpr.el: (printer-name): Update docstring about usage on MS-DOS
12555 and MS-Windows.
12556 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
12557 DOS and Windows platforms, to indicate direct printing. Update
12558 the docstring accordingly.
12559
12560 * ps-print.el: (ps-printer-name): Update docstring about usage on
12561 MS-DOS and MS-Windows.
12562 (ps-lpr-command): Update docstring as for lpr-command.
12563 (ps-print-region-function): New variable.
12564 (ps-do-despool): Use it.
12565 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
12566 DOS/Windows.
12567
12568 * subr.el (subst-char-in-string): New function.
12569
12570 1999-01-17 Eli Zaretskii <eliz@gnu.org>
12571
12572 * international/codepage.el (cp852-decode-table): Fill a nil entry.
12573
12574 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
12575 (bdf-find-font-info): New function, looks for the first readable
12576 file from a list of alternatives.
12577 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
12578 instead of bdf-get-font-info.
12579 (bdf-generate-glyphs): If font-name is a cons cell, pass its car
12580 to ps-mule-generate-bitmap-glyph.
12581
12582 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
12583 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can
12584 now be a list of alternative names.
12585 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
12586 (ps-mule-prepare-font): Likewise.
12587
12588 * international/codepage.el (cp855-decode-table,
12589 cp850-decode-table): Fill some nil entries.
12590
12591 1999-01-16 Dave Love <fx@gnu.org>
12592
12593 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
12594 last change.
12595
12596 1999-01-15 Dave Love <fx@gnu.org>
12597
12598 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
12599 and change regexp for command names.
12600 (help-xref-go-back, function-called-at-point, symbol-file)
12601 (where-is): Doc fixes.
12602 (help-xref-go-back): Remove interactive spec.
12603 (describe-function-1): Fix message for alias. Buttomize alias
12604 name.
12605
12606 * simple.el (join-line): New alias.
12607
12608 1999-01-15 Johan Vromans <jvromans@squirrel.nl>
12609
12610 * forms.el: (forms--show-record): Convert integers to string
12611 expicitly since concat will no longer accept integers.
12612 (forms-print): Use local `total-nb-records' since
12613 `forms--total-records' will be inaccessible after buffer switching.
12614
12615 1998-01-14 Felix Lee <flee@cygnus.com>
12616
12617 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
12618
12619 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu>
12620
12621 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
12622
12623 1999-01-14 Eli Zaretskii <eliz@gnu.org>
12624
12625 * international/codepage.el (cp850-decode-table): Fix previous change.
12626
12627 1999-01-14 Simon Marshall <simon@gnu.org>
12628
12629 * shell.el (shell-dirtrack-verbose): New custom variable.
12630 (shell-dirstack-message): Use it.
12631
12632 1999-01-14 Kenichi Handa <handa@etl.go.jp>
12633
12634 * international/mule-conf.el: Coding system alias `dos' for
12635 `undecided-dos', `mac' for `undecided-mac'.
12636
12637 * international/mule-cmds.el (describe-language-environment):
12638 Don't alter input-method-alist.
12639
12640 1999-01-13 Eli Zaretskii <eliz@gnu.org>
12641
12642 * international/codepage.el (cp850-decode-table): Replace nil
12643 entries with codes of similary looking glyphs. (Suggested by
12644 Jason Rumney <jasonr@altavista.net>.)
12645
12646 1999-01-13 Dave Love <fx@gnu.org>
12647
12648 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
12649
12650 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
12651
12652 1999-01-12 Karl Heuer <kwzh@gnu.org>
12653
12654 * files.el (auto-save-hook): Defvar this.
12655
12656 1999-01-12 Alex Schroeder <asc@bsiag.com>
12657
12658 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
12659 faces, eliminating the need to load font-lock before loading sql.
12660 (sql-mode-oracle-font-lock-keywords): Likewise.
12661 (sql-mode-postgres-font-lock-keywords): Likewise.
12662
12663 1999-01-11 Dave Love <fx@gnu.org>
12664
12665 * cus-start.el: Add inhibit-eol-conversion.
12666
12667 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
12668 the values round.
12669
12670 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu>
12671
12672 * help.el (help-mode-finish): Renamed from help-mode-maybe.
12673 Don't switch to Help mode here.
12674 (temp-buffer-setup-hook): Use help-mode-finish.
12675 (help-mode-setup): New function.
12676 (temp-buffer-setup-hook): Use help-mode-setup.
12677
12678 * progmodes/sql.el: New file.
12679
12680 * files.el (auto-mode-alist): Add sql-mode.
12681
12682 * faces.el (list-faces-display): Improve the formatting
12683 by computing the maximum length required for any face-name.
12684
12685 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12686
12687 * progmodes/compile.el (compilation-shell-minor-mode): New function.
12688
12689 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu>
12690
12691 * term.el (term_send_home): Change the string to
12692 be the same as the one emitted by xterm and consistent with the
12693 ones emitted by prior and next.
12694 (term_send_end): Likewise.
12695
12696 1999-01-10 Dave Love <fx@gnu.org>
12697
12698 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
12699 bindings.
12700
12701 1999-01-10 Eli Zaretskii <eliz@gnu.org>
12702
12703 * international/codepage.el (codepage-setup): Doc fix.
12704 (cp-decoding-vector-for-codepage): Likewise.
12705
12706 1999-01-10 Markus Rost <rost@gnu.org>
12707
12708 * cus-edit.el (custom-save-delete): First scan the custom-file.
12709
12710 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu>
12711
12712 * international/iso-transl.el: Define a "function name" for
12713 each translation that isn't ASCII. Use these function names
12714 in iso-transl-char-map.
12715
12716 1999-01-08 Kenichi Handa <handa@etl.go.jp>
12717
12718 * international/mule-util.el (decompose-region): Do decomposition
12719 on temporary unibyte buffer.
12720
12721 * international/mule.el (make-char): Doc-string modified.
12722
12723 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu>
12724
12725 * simple.el (comment-region): Delete spaces only if we
12726 deleted a comment starter.
12727
12728 1999-01-07 Dave Love <fx@gnu.org>
12729
12730 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
12731
12732 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
12733 like eval-defun does.
12734
12735 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
12736
12737 * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
12738 constructions. Doc fixes.
12739 (generic-create-generic-function): Use defalias, not fset.
12740
12741 * find-func.el: More doc fixes.
12742
12743 1999-01-06 Stephen Eglen <stephen@gnu.org>
12744
12745 * files.el (save-buffers-kill-emacs): Show the list of current
12746 processes before prompting to kill them and exit.
12747
12748 1999-01-06 Dave Love <fx@gnu.org>
12749
12750 * emacs-lisp/find-func.el: Doc fixes.
12751 (find-function-regexp): Extend for define-generic-mode,
12752 define-derived-mode, easy-mmode-define-minor-mode.
12753
12754 1999-01-06 Dave Love <fx@gnu.org>
12755
12756 * progmodes/fortran.el (fortran-window-create): Account for scroll
12757 bar width.
12758
12759 * browse-url.el: Require (noerror) w3-auto when compiling.
12760 (browse-url-maybe-new-window): Make it a macro and revert last
12761 change to callers.
12762 (browse-url-w3): Require w3 for w3-fetch-other-window.
12763
12764 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12765
12766 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
12767 argument.
12768
12769 1999-01-06 Simon Marshall <simon@gnu.org>
12770
12771 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix.
12772
12773 * font-lock.el (font-lock-default-fontify-buffer): When using
12774 with-temp-message, use nil rather than current-message.
12775
12776 * lazy-lock.el (lazy-lock-unstall):
12777 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
12778 rather than current-message.
12779
12780 * fast-lock.el (fast-lock-save-cache-1):
12781 (fast-lock-cache-data): When using with-temp-message, use nil rather
12782 than current-message.
12783
12784 1999-01-06 Eli Zaretskii <eliz@gnu.org>
12785
12786 * international/codepage.el (cp-coding-system-for-codepage-1): Add
12787 the valid-codes property.
12788
12789 * international/mule-cmds.el (prefer-coding-system): Call
12790 set-coding-priority, so that the internal array of priorities is
12791 also updated.
12792
12793 * international/mule-util.el:
12794 (coding-system-change-eol-conversion,
12795 coding-system-change-text-conversion): Don't define here.
12796
12797 * international/mule-cmds.el: Define them here. Remove the
12798 autoload cookies.
12799
12800 1999-01-06 Andreas Schwab <schwab@gnu.org>
12801
12802 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
12803 if it was enabled before.
12804
12805 * view.el (View-revert-buffer-scroll-page-forward): Bind
12806 view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
12807
12808 * files.el (recover-session): Preserve point when inserting
12809 explanation.
12810
12811 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu>
12812
12813 * cus-edit.el (custom-save-delete): Don't delete whitespace
12814 and comments before the sexp that is replaced.
12815
12816 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12817
12818 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
12819
12820 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de>
12821
12822 * vc.el (vc-dired-hook): Use the original value of
12823 dired-move-to-filename-regexp on lines that have not been
12824 reformatted yet.
12825 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
12826 file lines have already been reformatted.
12827
12828 1999-01-05 Dave Love <fx@gnu.org>
12829
12830 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
12831 buffer-local.
12832
12833 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se>
12834
12835 * progmodes/f90.el: Change of regular expressions for type to
12836 correct highlighting and identation. Some small fixes for
12837 compatibility with XEmacs.
12838
12839 1999-01-05 Stephen Eglen <stephen@gnu.org>
12840
12841 * mspools.el (mspools-vm-system-mail): Provide an alternative
12842 value based on rmail-spool-directory if $MAIL is not defined.
12843
12844 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
12845
12846 * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
12847 (reftex-section-info): Handle negative section levels.
12848 (reftex-view-crossref-extra): New option.
12849 (reftex-view-crossref): Generalized to work in more places.
12850 (reftex-find-citation-regexp-format, reftex-find-reference-format,
12851 reftex-macros-with-labels, reftex-global-search-marker): New variables.
12852 (reftex-view-cite-locations-from-bibtex): New command.
12853 (reftex-view-regexp-match, reftex-global-search,
12854 reftex-global-search-continue): New functions.
12855 (reftex-extract-bib-entries): No error for non-existing BibTeX
12856 file, just a message.
12857 (reftex-extract-bib-entries): Better error handling.
12858 (reftex-select-with-char): Use `*RefTeX Select*' for selection
12859 help and force it on current frame.
12860 (reftex-default-bibliography): New function.
12861 (reftex-access-parse-file): Check consistency after loading a
12862 parse file. When inconsistent, enfore rescan.
12863 (reftex-check-parse-consistency): New function.
12864 (easy-menu-define): Options section drastically shortened.
12865
12866 1999-01-05 Kenichi Handa <handa@etl.go.jp>
12867
12868 * language/thai-util.el (thai-compose-string): New function.
12869
12870 1999-01-04 Inge Frick <inge@nada.kth.se>
12871
12872 * easymenu.el (easy-menu-define): Doc fix.
12873 (easy-menu-create-menu): New keyword :included.
12874 (easy-menu-do-add-item): New keyword :included. SUFFIX may
12875 be an expression, not only a string. Simulate style `button'.
12876 Use easy-menu-define-key-intern instead of easy-menu-define-key.
12877 (easy-menu-define-key-intern): New function.
12878 (easy-menu-add-item): Understand value returned from
12879 easy-menu-item-present-p and easy-menu-remove-item.
12880 (easy-menu-return-item): New function.
12881 (easy-menu-item-present-p, easy-menu-remove-item): Use it.
12882
12883 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu>
12884
12885 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
12886 Use rmail-output-read-rmail-file-name to read the file name.
12887 Always call rmail-output-to-rmail-file noninteractively.
12888 When count > 1, do the loop here.
12889 Handle rmail-delete-after-output here.
12890 (rmail-summary-output): Similar changes.
12891
12892 * mail/rmailout.el: Provide `rmailout'.
12893 (rmail-output-read-rmail-file-name): New function.
12894 (rmail-output-to-rmail-file): Use that.
12895 (rmail-output-read-file-name): New function.
12896 (rmail-output): Use that.
12897
12898 * files.el (find-file-noselect): Let /: suppress wildcard matching.
12899 Error if wildcard matches no files.
12900
12901 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu>
12902
12903 * menu-bar.el (clipboard-yank): Doc fix.
12904
12905 * info.el (Info-insert-dir): Chase symlinks for file-attributes.
12906
12907 1998-12-31 Markus Rost <rost@delysid.gnu.org>
12908
12909 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
12910
12911 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk>
12912
12913 * rmail.el (rmail-encode-string): Make sure mask value is
12914 positive; (emacs-pid) returns a negative number on Windows 9x
12915 which causes odd behaviour.
12916
12917 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org>
12918
12919 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
12920 and about w32-* variables unless on Windows/NT.
12921
12922 1998-12-31 Boris Goldowsky <boris@alum.mit.edu>
12923
12924 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
12925 if buffer is modified; ask about all modified buffers.
12926
12927 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu>
12928
12929 * simple.el (what-cursor-position): Fix previous change.
12930
12931 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu>
12932
12933 * mail/sendmail.el (mail-mode): Eliminate ambiguous match
12934 from paragraph-start.
12935
12936 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org>
12937
12938 * international/mule-cmds.el (prefer-coding-system): If the
12939 argument requires specific EOL conversion type, make the default
12940 coding systems use that.
12941
12942 1998-12-30 Drew Csillag <drew_csillag@geocities.com>
12943
12944 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
12945 Use shell-command-on-region.
12946 (m4-start-m4, m4-end-m4): Functions deleted.
12947
12948 1998-12-30 Michael Ernst <mernst@alum.mit.edu>
12949
12950 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
12951
12952 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12953
12954 * browse-url.el (browse-url-mail): Give argument SEND-ACTION
12955 to compose-mail in the correct places and as a list.
12956
12957 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp>
12958
12959 * page-ext.el: Added mouse-selection feature for pages directory buffer.
12960 (pages-directory-map): Bind mouse-2
12961 (pages-copy-header-and-position): Put text property.
12962 (pages-directory-goto-with-mouse): New function.
12963
12964 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org>
12965
12966 * international/codepage.el (cp-make-coding-systems-for-codepage):
12967 Doc fix.
12968 (cp-coding-system-for-codepage-1): Likewise.
12969
12970 1998-12-29 Kenichi Handa <handa@etl.go.jp>
12971
12972 * language/thai-util.el (thai-post-read-conversion): Handle Thai
12973 composition sequence correctly here instead of calling
12974 thai-compose-region.
12975
12976 * textmodes/fill.el (fill-region-as-paragraph): While deleting a
12977 newline in multibyte buffer, if previous or next character is a
12978 composite char, check the first component of the composite char.
12979
12980 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org>
12981
12982 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
12983 and track-mouse.
12984
12985 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12986
12987 * mail/sendmail.el (mail-yank-original): Remove text properties
12988 after insertion.
12989 (mail-yank-region): Barf if no mark is set in the message
12990 being replied to.
12991
12992 * help.el (function-called-at-point): First look for function at point.
12993
12994 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu>
12995
12996 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
12997
12998 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
12999
13000 * simple.el (what-cursor-position): Print character encoding also.
13001
13002 1998-12-26 Dave Love <fx@gnu.org>
13003
13004 * textmodes/flyspell.el: If local-maps work, don't put
13005 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
13006 in flyspell-mouse-map (only).
13007 (flyspell-use-local-map): New variable.
13008 Use a different mouse-2 binding in that case,
13009 and don't add to minor-mode-map-alist.
13010 (make-flyspell-overlay, flyspell-correct-word):
13011 Test flyspell-use-local-map.
13012
13013 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
13014
13015 * files.el (file-expand-wildcards): Handle wildcards in directory name.
13016 Be careful about whether to return a relative file name,
13017 and if so, relative to what directory.
13018
13019 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
13020
13021 * emacs-lisp/easymenu.el (easy-menu-get-map):
13022 Change global map only if this menu exists in the global map already,
13023 and not in the local map.
13024 (easy-menu-do-add-item): Fix error message.
13025
13026 * foldout.el (foldout-inhibit-key-bindings):
13027 Avoid concatenating onto outline-minor-mode-prefix.
13028 Make a new keymap for that prefix, if it does not already have one.
13029
13030 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu>
13031
13032 * cperl-mode.el:
13033 Can use linear algorithm for indentation if Emacs supports it.
13034 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp.
13035 (cperl-after-block-p): Likewise.
13036 (cperl-after-block-and-statement-beg): Likewise.
13037 (cperl-after-block-p): After END/BEGIN we are a block.
13038 (cperl-after-expr-p): Skip labels when checking
13039 (cperl-indent-region): Make a marker for END - text added/removed.
13040 Disable hooks during the call (how to call them later?).
13041 Now indents 820-line-long function in 6.5 sec (including
13042 syntaxification) the first time (when buffer has few
13043 properties), 7.1 sec the second time.
13044 (cperl-indent-region): Do not indent whitespace lines
13045 (cperl-style-alist)
13046 Include `cperl-merge-trailing-else' where the value is clear.
13047 (cperl-styles-entries): Likewise.
13048 (cperl-problems): Improvements to docs.
13049 (cperl-tips): Likewise.
13050 (cperl-non-problems): Likewise.
13051 (cperl-mode): Make lazy syntaxification possible.
13052 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
13053 `font-lock-unfontify-region-function' was set to a wrong function.
13054
13055 (cperl-find-pods-heres): Safe a position in buffer where it is safe to
13056 restart syntaxification. Changed so that -d ?foo? is a RE. Do
13057 not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
13058 but 1<<6 was considered as HERE-doc.
13059 <file/glob> made into a string.
13060 Postpone addition of faces after syntactic step.
13061 Recognition of <FH> was wrong.
13062 Highlight `gem' in s///gem as a keyword. `qr' recognized.
13063 Knows that split// is null-RE.
13064 Highlights separators in 3-parts expressions as labels.
13065 <> was considered as a glob.
13066 Would err if the last line is `=head1'.
13067 $a-1 ? foo : bar; was a considered a regexp.
13068 `<< (' was considered a start of HERE-doc.
13069 mark qq[]-etc sections as syntax-type=string
13070 Was not processing sub protos after a comment ine.
13071 Was treating $a++ <= 5 as a glob.
13072 Tolerate unfinished REx at end-of-buffer.
13073 `unwind-protect' was left commented.
13074 / and ? after : start a REx.
13075
13076 (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
13077 Better default, customizes to `message' too, off in text-mode.
13078
13079 (cperl-array-face): Renamed from `font-lock-emphasized-face',
13080 `defface'd.
13081 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
13082 `defface'd.
13083 (cperl-emacs-can-parse): New state variable.
13084 (cperl-indent-line): Corrected to use global state.
13085 (cperl-calculate-indent): Likewise.
13086 (cperl-fix-line-spacing): Likewise (not used yet).
13087 (cperl-calculate-indent): Did not consider `,' as
13088 continuation mark for statements.
13089 (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
13090 Remove another parse-data optimization at toplevel: would
13091 indent correctly.
13092 Correct for labels when calculating indentation of continuations.
13093 Docstring updated.
13094 (cperl-choose-color): Converted to a function (to be
13095 compilable in text-mode).
13096 (cperl-dark-background): Disable without window-system.
13097 Do `defface' only if window-system.
13098 (cperl-fix-line-spacing): Sped up to bail out early.
13099 (x-color-defined-p): Was not compiling on XEmacs
13100 Was defmacro'ed with a tick. Remove another def.
13101 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
13102 (cperl-unwind-to-safe): New function.
13103 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
13104 (cperl-fontify-syntaxically): Unwinds start and end to go out of
13105 long strings (not very successful).
13106 (cperl-forward-re): Highlight the trailing / in s/foo// as string.
13107 Highlight the starting // in s//foo/ as function-name.
13108 Emit a meaningful error instead of a cryptic one for an
13109 uncomplete REx near end-of-buffer.
13110
13111 (cperl-electric-keyword): `qr' recognized.
13112 (cperl-electric-else): Likewise
13113 (cperl-to-comment-or-eol): Likewise
13114 (cperl-make-regexp-x): Likewise
13115 (cperl-init-faces): Likewise, and `lock' (as overridable?).
13116 Corrected to use new macros;
13117 `if' for copying `reference-face' to `constant-face' was backward.
13118 remove init `font-lock-other-emphasized-face',
13119 `font-lock-emphasized-face', `font-lock-keyword-face'.
13120 Interpolate `cperl-invalid-face'.
13121 (cperl-make-regexp-x): Misprint in a message.
13122 (cperl-syntaxify-unwind): New configuration variable
13123 (cperl-fontify-m-as-s): New configuration variable
13124 (cperl-electric-pod): Check for after-expr was performed
13125 inside of POD too.
13126 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
13127 (cperl-clobber-mode-lists): New configuration variable.
13128 (cperl-not-bad-style-regexp): Updated.
13129 Init: `cperl-is-face' was busted.
13130 (cperl-make-face): New macros.
13131 (cperl-force-face): New macros.
13132 (font-lock-other-type-face): Done via `defface' too.
13133 (cperl-nonoverridable-face): New face. Renamed from
13134 `font-lock-other-type-face'.
13135 (cperl-init-faces-weak): Use `cperl-force-face'.
13136 (cperl-comment-indent): Commenting __END__ was not working.
13137 (cperl-indent-for-comment): Likewise.
13138 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'.
13139 When removing old TAGS info was not relativizing filename.
13140 (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
13141 Another try to work around XEmacs problems. Better progress messages.
13142 (toplevel): Require custom unprotected => failure on 19.28.
13143 (cperl-xemacs-p): Defined when compile too
13144 (cperl-find-tags): Was writing line/pos in a wrong order,
13145 pos off by 1 and not at beg-of-line.
13146 (cperl-etags-snarf-tag): New macro
13147 (cperl-etags-goto-tag-location): New macro
13148 (cperl-version): New variable. New menu entry
13149 random docstrings: References to "future" 20.3 removed.
13150 Menu was described as `CPerl' instead of `Perl'
13151 (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
13152 (cperl-toggle-construct-fix): Was toggling to t instead of 1.
13153 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face'
13154 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
13155 `font-lock-reference-face', `font-lock-keyword-face'.
13156 Use `eval-after-load'.
13157 Remove not-CPerl-related faces.
13158 (cperl-tips-faces): New variable and an entry into Mini-docs.
13159 (cperl-indent-exp): Was not processing else-blocks.
13160 (cperl-get-state): NOP line removed.
13161 (cperl-ps-print): New function and menu entry.
13162 (cperl-ps-print-face-properties): New configuration variable.
13163 (cperl-invalid-face): New configuration variable.
13164 (perl-font-lock-keywords): Highlight trailing whitespace
13165 (cperl-contract-levels): Documentation corrected.
13166 (cperl-contract-level): Likewise.
13167 (cperl-ps-extend-face-list): New macro.
13168 (cperl-invalid-face): Change to ''underline.
13169
13170 1998-12-25 Markus Rost <rost@delysid.gnu.org>
13171
13172 * mail/rmailout.el (rmail-output): Abbreviate name of default-file
13173 for read-file-name.
13174 (rmail-output-to-rmail-file): Likewise.
13175
13176 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
13177
13178 * emacs-lisp/easymenu.el (easy-menu-get-map):
13179 If MENU is nil, use global menu-bar map.
13180 (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
13181 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
13182
13183 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13184
13185 * ps-mule.el (ps-mule-begin-job): Programming uniformization.
13186
13187 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13188
13189 * ps-print.el (ps-print-version): New version number (4.1.3).
13190
13191 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org>
13192
13193 * international/mule-cmds.el: Use make-sparse-keymap instead of
13194 define-prefix-key when defining MULE menu items.
13195
13196 * info.el (Info-node-at-bob-matching): New function.
13197 (Info-find-node, Info-build-node-completions): Call it.
13198
13199 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org>
13200
13201 * help.el (describe-function-1): Say "keymap", not "Lisp macro",
13202 when this is an autoloaded keymap.
13203
13204 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org>
13205
13206 * international/codepage.el (cp-coding-system-for-codepage-1):
13207 Create separate encoders and decoders, for DOS and Unix. Make the
13208 usual family of 3 coding systems, so that automatic detection of
13209 EOL type works.
13210 (cp-make-coding-systems-for-codepage): Don't intern DOS- and
13211 Unix-specific symbols here, and don't call
13212 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi
13213 Handa <handa@etl.go.jp>.)
13214
13215 * dos-vars.el (dos-codepage-setup-hook): New defcustom.
13216
13217 * term/internal.el (IT-character-translations): New variable, an
13218 alist used to display characters for which there's no glyphs in
13219 the current codepage.
13220 (IT-display-table-setup): New function, sets up the DOS terminal
13221 for a given codepage.
13222 (dos-codepage-setup): New function, sets up the MULE environment
13223 for the current value of dos-codepage.
13224 (top-level if): In the multibyte mode, turn on
13225 unibyte-display-via-language-environment. In the unibyte mode,
13226 set up the special syntax tables to map lower- to upper case and
13227 back.
13228
13229 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org>
13230
13231 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
13232 (speedbar-frame-plist) Remove useless comments.
13233 (speedbar-frame-mode) Do not specify height if it is in the param list.
13234 Use default y position w/out changing it.
13235 If default x position is a list, keep, calculate the non-list X
13236 value when devining an initial position.
13237 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
13238 (speedbar-tag-group-name-minimum-length): New variable.
13239 (speedbar-frame-parameter): New compatibility function.
13240 (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
13241 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
13242 groups to keep things in the right order, and to help with some
13243 naming conventions.
13244 (speedbar-create-tag-hierarchy): Enable buffer local version of
13245 `speedbar-tag-hierarchy-method' in the buffer we are tagging.
13246 (speedbar-line-path) Make DEPTH param optional. Devine it if absent.
13247 the case, derive it from the cursor location in speedbar.
13248
13249 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org>
13250
13251 * international/mule-cmds.el (set-language-environment): On MS-DOS
13252 terminals, install DOS-specific nonascii-translation-table if the
13253 language info doesn't specify one. Pass the default eol-type to
13254 set-language-environment-coding-systems.
13255 (set-default-coding-systems): Copy the eol-type property for the
13256 new default values of {buffer-file,process}-coding-system from the
13257 old defaults.
13258 (set-language-environment-coding-systems): Accept an optional
13259 argument EOL-TYPE, and set the eol-type property of the default
13260 coding systems accordingly.
13261 (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
13262 (set-keyboard-coding-system): Likewise.
13263 (set-default-coding-systems): Don't set
13264 default-terminal-coding-system on MS-DOS to anything but nil.
13265 (prefer-coding-system): Describe in the doc string that
13266 default-terminal-coding-system is not changed on MS-DOS.
13267 (set-language-environment): For MS-DOS, set standard syntax table
13268 and display table for all characters with code above 127.
13269 (standard-display-european-internal): For MS-DOS, pass all
13270 characters with code above 127 directly to the terminal, and don't
13271 remap characters 160 and 146 in the unibyte case.
13272
13273 * international/codepage.el: New file.
13274
13275 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13276
13277 * diary-lib.el (diary-float): Fix end-of-year error and typos in
13278 comments.
13279
13280 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
13281
13282 * map-ynp.el (map-y-or-n-p): Ignore input methods.
13283
13284 * subr.el (read-passwd): Likewise.
13285
13286 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org>
13287
13288 * info.el (Info-find-node): Add 1 to the position read from the
13289 tag table. Don't fail if the node delimiter ^_ is the first
13290 character in the file.
13291 (Info-insert-dir): Don't fail when the node delimiter ^_ is the
13292 first character in the file.
13293 (Info-read-subfile): Likewise.
13294 (Info-select-node): Likewise.
13295 (Info-build-node-completions): Likewise.
13296
13297 1998-12-16 Richard Stallman <rms@gnu.org>
13298
13299 * term/x-win.el (x-cut-buffer-or-selection-value):
13300 If clipboard is enabled, try it before PRIMARY selection.
13301
13302 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
13303
13304 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
13305 insert c-cedilla and C-cedilla respectively, like in latin-1.
13306
13307 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org>
13308
13309 * language/hebrew.el: Don't use sublists in the flags argument
13310 passed to make-coding-system.
13311
13312 1998-12-15 Kenichi Handa <handa@etl.go.jp>
13313
13314 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
13315 list of character sets found by find-charset-region.
13316
13317 * ps-mule.el: Always require ps-print. Move some function
13318 definitions for Emacs 20.2 and the earlier to ps-print.el.
13319 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
13320
13321 * ps-print.el: Define several functions for Emacs 20.2 and the
13322 earlier version.
13323 (ps-printer-name): Check if printer-name is bound.
13324
13325 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13326
13327 * ps-mule.el: Programming uniformization and little code improvement.
13328 (ps-mule-prepare-font): Programming uniformization.
13329 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
13330 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
13331
13332 * ps-bdf.el: Programming uniformization and little code improvement.
13333 (bdf-search-and-read): New fun.
13334 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
13335 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
13336 (bdf-info-relative-compose, bdf-info-baseline-offset)
13337 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
13338 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
13339 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
13340 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
13341 improvement.
13342
13343 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13344
13345 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
13346 and mule related code extraction. Autoload ps-mule funs.
13347
13348 * ps-mule.el: Doc fix. Require ps-print only when compiled.
13349 (ps-mule-prologue-generated): New fun.
13350 (ps-mule-plot-string): Add autoload cookie.
13351 (ps-mule-begin-job): Call ps-mule-prologue-generated.
13352
13353 1998-12-15 Kenichi Handa <handa@etl.go.jp>
13354
13355 * ps-bdf.el: Require ps-mule instead of ps-print.
13356 (bdf-directory-list): Add autoload cookie.
13357
13358 * ps-mule.el: New file. Mule related code extracted from
13359 ps-print.el. Require ps-print, provide ps-mule.
13360 (ps-multibyte-buffer): Add autoload cookie.
13361 (ps-mule-prepare-ascii-font): New fun.
13362 (ps-mule-set-ascii-font): New fun.
13363 (ps-mule-skip-same-charset): Fun deleted.
13364 (ps-mule-plot-string): Set ps-mule-current-charset.
13365 (ps-mule-initialize): Add autload cookie. Don't set
13366 ps-mule-font-info-database here.
13367 (ps-mule-begin-job): Renamed from ps-mule-begin. Update
13368 ps-mule-font-info-database and ps-control-or-escape-regexp.
13369 (ps-mule-begin-page): New fun.
13370
13371 * ps-print.el: Mule related code moved to ps-mule.el.
13372 (ps-begin-job): While setting ps-control-or-escape-regexp, don't
13373 check ps-mule-charset-list.
13374 (ps-begin-page): Don't set ps-mule-current-charset, instead call
13375 ps-mule-begin-page.
13376 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
13377 (ps-plot-region): Don't set ps-mule-current-charset, instead call
13378 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset,
13379 instead skip same charsets by itself.
13380 (ps-generate): Call ps-mule-initialize of needs-begin-file is
13381 non-nil. Call ps-mule-begin-job.
13382
13383 1998-12-15 Kenichi Handa <handa@etl.go.jp>
13384
13385 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf
13386 instead of bdf.
13387
13388 * ps-print.el (ps-mule-font-info-database): Doc-string modified.
13389 (ps-mule-external-libraries): New element FEATURE.
13390 (ps-mule-init-external-library): Ajusted for the above change.
13391 (ps-mule-generate-font): Likewise.
13392 (ps-mule-generate-glyphs): Likewise.
13393 (ps-mule-prepare-font): Likewise.
13394 (ps-mule-initialize): Likewise.
13395 (ps-begin-file): Superfluous tailing parenthesis deleted.
13396
13397 1998-12-15 Kenichi Handa <handa@etl.go.jp>
13398
13399 * international/fontset.el (x-decompose-font-name): If PATTERN
13400 doesn't have any wild cards, return a vector made from a name that
13401 is found by x-resolve-font-name found. Comments added.
13402
13403 * international/mule-cmds.el (find-coding-systems-for-charsets):
13404 Handle the case of unknown charset.
13405 (find-multibyte-characters): If invalid multibyte characters are
13406 found, return the corresponding strings instead of character
13407 codes.
13408 (find-multibyte-characters): Adjusted for the above change.
13409 (select-safe-coding-system): For a unibyte buffer, always returns
13410 DEFAULT-CODING-SYSTEM.
13411 (get-charset-property): Fix previous change. Make it a function.
13412 (put-charset-property): Make it a function.
13413
13414 * international/mule.el (make-coding-system): Set mime-charset
13415 property of *-with-esc coding system to nil.
13416
13417 * international/quail.el (quail-point-in-conversion-region): New
13418 function.
13419 (quail-conversion-backward-delete-char): When a key sequence is
13420 being translated, call quail-delete-last-char.
13421
13422 * language/devan-util.el
13423 (devanagari-reorder-glyphs-for-decomposition): Fix the way to
13424 handle devanagari-decomposition-rules.
13425
13426 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org>
13427
13428 * textmodes/texinfo.el (texinfo-tex-buffer): Bind
13429 tex-start-options-string to empty string.
13430 (texinfo-tex-region): Use texinfo-tex-trailer as documented.
13431
13432 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org>
13433
13434 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
13435 5xx responses are already handled properly).
13436
13437 1998-12-13 Richard Stallman <rms@gnu.org>
13438
13439 * progmodes/compile.el (compilation-error-regexp-alist): Insist
13440 on a non-digit in the file name.
13441
13442 * simple.el (comment-region): Handle comment-padding
13443 separately for insertion and for deletion, in the right way for each.
13444
13445 1998-12-13 Felix Lee <flee@cygnus.com>
13446
13447 * progmodes/compile.el (compilation-error-regexp-alist): Fix
13448 regexp to match "ChangeLog:1:1998-12-09 ..."
13449
13450 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org>
13451
13452 * cus-start.el (dos-unsupported-char-glyph): Add.
13453
13454 1998-12-11 Dave Love <fx@gnu.org>
13455
13456 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
13457 forward-sexp in condition-case.
13458
13459 * emacs-lisp/find-func.el (find-function-search-for-symbol):
13460 Remove unnecessary test on `library' for explicit file name.
13461 Widen scope of save-match-data.
13462
13463 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org>
13464
13465 * international/mule.el (load-with-code-conversion): If the loaded
13466 file was inserted with no-conversion or raw-text coding system,
13467 make the buffer unibyte.
13468
13469 1998-12-09 Richard Stallman <rms@gnu.org>
13470
13471 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
13472 Get rid of nested loops.
13473
13474 * mouse.el (mouse-drag-vertical-line):
13475 If WHICH-SIDE is not `right', then scroll bars are on the left.
13476
13477 * loadhist.el (load-history-loaded): defvar moved to help.el.
13478
13479 * help.el (symbol-file-load-history-loaded): Variable renamed,
13480 and defvar moved from loadhist.el.
13481 (symbol-file): Renamed from describe-function-find-file.
13482 Load fns-VERSION.el here.
13483 (describe-variable, describe-function-1): Use symbol-file.
13484
13485 * textmodes/tex-mode.el (tex-generate-zap-file-name):
13486 Don't start the name with #.
13487
13488 * ispell.el: Take out the eval-when's.
13489
13490 1998-12-09 Peter Breton <pbreton@ne.mediaone.net>
13491
13492 * dirtrack.el (dirtrack-directory-change-hook): New hook.
13493 (dirtrack): Run it. Make debug message more verbose.
13494
13495 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
13496
13497 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
13498 name of the abbrev table, and provide support for XEmacs.
13499 (octave-xemacs-p): New variable.
13500
13501 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
13502
13503 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
13504 exit, when mail-interactive is nil.
13505
13506 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
13507
13508 * files.el (after-find-file): Message fix.
13509
13510 1998-12-09 Ken Stevens <stevens@kdstevens.com>
13511
13512 * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
13513
13514 1998-12-09 Geoff Voelker <voelker@cs.washington.edu>
13515
13516 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
13517 filenames using backslashes.
13518
13519 1998-12-09 Dave Love <fx@gnu.org>
13520
13521 * browse-url.el (browse-url-mail): Call compose-mail-other-window
13522 with correct number of args.
13523 (browse-url-maybe-new-window): New arg. Callers changed.
13524
13525 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
13526 comment.
13527
13528 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
13529
13530 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
13531
13532 1998-12-08 Markus Rost <rost@delysid.gnu.org>
13533
13534 * vc.el (vc-rcs-release): Fix Type.
13535 (vc-sccs-release): Fix Type.
13536 (vc-cvs-release): Fix Type.
13537
13538 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
13539 arg work right.
13540
13541 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
13542 output of last undeleted message.
13543
13544 1998-12-07 Geoff Voelker <voelker@cs.washington.edu>
13545
13546 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
13547 (buffer-undo-list) [windows-nt]: Use different relative path.
13548
13549 1998-12-07 Simon Marshall <simon@gnu.org>
13550
13551 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
13552
13553 1998-12-05 Markus Rost <rost@delysid.gnu.org>
13554
13555 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
13556
13557 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
13558
13559 1998-12-04 Markus Rost <rost@delysid.gnu.org>
13560
13561 * info.el (Info-menu): Don't return error if point is between menu
13562 header and first menu item.
13563
13564 1998-12-04 Dave Love <fx@gnu.org>
13565
13566 * help.el (describe-function-1): Fix description for alias.
13567
13568 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org>
13569
13570 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
13571 specifications from summary line.
13572
13573 * rect.el (delete-whitespace-rectangle): Mark for autoload.
13574 (close-rectangle): Define alias only once in loaddefs.el.
13575
13576 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org>
13577
13578 * term/internal.el: Remove code which sets up a special syntax
13579 table for non-ASCII characters.
13580
13581 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org>
13582
13583 * dos-w32.el (direct-print-region-function): Try to ensure that
13584 printer-name is expanded to a file name on a local drive;
13585 sometimes printing a file loaded from a network volume fails.
13586 (direct-print-region-function): Add a function to
13587 write-region-annotate-functions to append a formfeed character to
13588 the region being printed, if the region doesn't end with a
13589 formfeed already. This avoids creating a second print job
13590 containing a blank page when print spooling is enabled on Windows.
13591
13592 1998-12-02 Dave Love <fx@gnu.org>
13593
13594 * help.el (help-make-xrefs): Use `info', not the non-autoloaded
13595 `Info-goto-node'.
13596
13597 1998-12-02 Richard Stallman <rms@gnu.org>
13598
13599 * help.el (temp-buffer-resize-mode): Doc fix.
13600
13601 * cus-edit.el (custom-save-delete): Save point before
13602 reading a sexp, rather than backing up.
13603
13604 * international/iso-transl.el: Fix previous change.
13605
13606 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
13607
13608 * vc.el (vc-dired-window-configuration, vc-ediff-windows,
13609 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
13610 Added defvars to suppress compilation warnings.
13611
13612 1998-11-30 Ken Stevens <k.stevens@ieee.org>
13613
13614 * ispell.el: Improved and fixed customize for variables:
13615 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
13616 ispell-dictionary-alist, ispell-skip-sgml.
13617 Improved and fixed comments in variables and messages for
13618 functions: ispell-help-in-bufferp, ispell-local-dictionary,
13619 ispell-menu-map, ispell-checking-message, ispell-parser,
13620 ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
13621 ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
13622 ispell-comments-and-strings, ispell-continue, ispell-complete-word,
13623 ispell-message-text-end, ispell-add-per-file-word-list.
13624 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
13625 system is now required for all languages. Casechars improved for
13626 castellano, castellano8, and norsk dictionaries. Dictionary
13627 norsk7-tex added. Dictionary polish added.
13628 (ispell-dictionary-alist): Redefined at load-time to support
13629 dictionary changes.
13630 (ispell-menu-map): Redefined at load-time to support menu changes.
13631 (ispell-check-version): New alias for `check-ispell-version'.
13632 (ispell-parse-output): Fixed matching for ispell error messages.
13633 Correctly returns spelling suggestions in order generated by ispell
13634 process.
13635 (check-ispell-version): Ensure `case-fold-search' doesn't get
13636 redefined.
13637 (ispell-complete-word): Ensure `case-fold-search' doesn't get
13638 redefined. Fix bug that didn't respect case of word being completed.
13639 (ispell-init-process): Set process coding system to be compatible
13640 with emacs processes and the ispell process.
13641 (ispell-kill-ispell): Ensures ispell process has terminated before
13642 starting new process. This can otherwise confuse process filters
13643 and hang the ispell process.
13644 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
13645 skipping support for sgml.
13646 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r
13647 which could cause `ispell-complete-word' to hang.
13648 (ispell-message): Improved message reference matching. Ensure
13649 `case-fold-search' doesn't get redefined.
13650 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
13651 get redefined. Fixed bug in returning to nroff mode from tex mode.
13652 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
13653 get redefined.
13654
13655 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu>
13656
13657 * textmodes/flyspell.el (flyspell-check-word-p):
13658 Don't delay inside a kbd macro.
13659
13660 * subr.el (make-local-hook): Return the hook variable.
13661
13662 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
13663
13664 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
13665 Use a timer instead of post-command-hook.
13666 (hscroll-timer): New variable.
13667
13668 1998-11-30 Dave Love <fx@gnu.org>
13669
13670 * help.el (help-xref-button): Do nothing if text already has the
13671 help-xref property.
13672 (describe-variable): Revert previous change to hyperlink to source.
13673
13674 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
13675
13676 * bindings.el (features): Add `base64' to this list.
13677
13678 * loadhist.el (symbol-file): Doc fix.
13679
13680 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
13681
13682 * files.el (hack-one-local-variable): Cope with non-file buffers.
13683
13684 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu>
13685
13686 * help.el (describe-mode): Put major mode first.
13687
13688 * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
13689 to support special-display and same-window features.
13690
13691 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu>
13692
13693 * simple.el (transpose-subr, transpose-subr-1): Rename variables
13694 bound in one function and used in the other.
13695 (transpose-subr-start1, transpose-subr-start2): Add defvars.
13696 (transpose-subr-end1, transpose-subr-end2): Add defvars.
13697
13698 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu>
13699
13700 * autoinsert.el (auto-insert-alist): Use user-mail-address.
13701
13702 1998-11-26 Kenichi Handa <handa@etl.go.jp>
13703
13704 * international/ccl.el (ccl-dump-translate-character-const-tbl):
13705 Give format correct control string.
13706
13707 * international/mule.el (define-translation-table): Fix bug of
13708 setting incorrect translation-table-id. If the first element of
13709 ARGS is a translation table, just register it.
13710
13711 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
13712 property.
13713
13714 1998-11-24 Michael Ernst <mernst@alum.mit.edu>
13715
13716 * thingatpt.el (thing-at-point-url-at-point): Don't use current
13717 syntax table to determine what is whitespace.
13718
13719 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu>
13720
13721 * frame.el (frame-parameter): Doc fix.
13722
13723 * textmodes/tex-mode.el (tex-feed-input): New function.
13724 (tex-define-common-keys): Add binding for C-c C-m.
13725
13726 1998-11-23 Dave Love <fx@gnu.org>
13727
13728 * progmodes/fortran.el: Various minor doc fixes.
13729 (fortran-font-lock-keywords-1): Add `d' to comment-chars.
13730 (fortran-with-subprogram-narrowing): New macro.
13731 (fortran-check-for-matching-do): Use it.
13732 (fortran-end-do): Use fortran-check-end-prog-re.
13733 (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
13734 (fortran-calculate-indent, fortran-calculate-indent): Likewise.
13735
13736 1998-11-23 Simon Marshall <simon@gnu.org>
13737
13738 * font-lock.el (font-lock-defaults): Doc fix.
13739 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
13740 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
13741
13742 * lazy-lock.el (lazy-lock-unstall):
13743 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
13744
13745 * fast-lock.el (fast-lock-save-cache-1):
13746 (fast-lock-cache-data): Rewritten to use with-temp-message.
13747
13748 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org>
13749
13750 * mail/rmail.el (rmail-set-message-counters-counter): Detect
13751 messages that have been added with DOS line endings and convert
13752 the line endings for such messages.
13753
13754 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
13755
13756 * help.el: Add resizing of temporary buffers.
13757 (temp-buffer-resize-mode): New command and variable.
13758 (temp-buffer-max-height): New variable.
13759 (resize-temp-buffer-window): New function.
13760
13761 * window.el (window-buffer-height): New function, split from
13762 shrink-window-if-larger-than-buffer.
13763 (shrink-window-if-larger-than-buffer): Use window-buffer-height.
13764
13765 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu>
13766
13767 * frame.el (initial-frame-alist): Add defcustom.
13768
13769 * shell.el (shell-prompt-pattern): Add defcustom.
13770
13771 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13772
13773 * message.el (message-ignored-supersedes-headers): Remove
13774 NNTP-Posting-Date.
13775
13776 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu>
13777
13778 * help.el (describe-mode): Don't avoid loop indirecting thru
13779 value of INDICATOR.
13780
13781 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu>
13782
13783 * help.el (describe-variable): Allow any variable with a defcustom,
13784 even if it is not a user variable.
13785
13786 * mail/rmail.el (mail-unsent-separator): Additional alternative.
13787
13788 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org>
13789
13790 * gnus/nntp.el (nntp-request-group): Allow for failures when
13791 requesting a new group.
13792
13793 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu>
13794
13795 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
13796
13797 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13798
13799 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
13800
13801 1998-11-19 Simon Marshall <simon@gnu.org>
13802
13803 * subr.el (with-temp-message): New macro.
13804
13805 * emacs-lisp/lisp-mode.el (with-temp-message):
13806 Add lisp-indent-function property.
13807
13808 1998-11-18 Dave Love <fx@gnu.org>
13809
13810 * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
13811
13812 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu>
13813
13814 * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
13815 This is not obsolete.
13816
13817 1998-11-18 Kenichi Handa <handa@etl.go.jp>
13818
13819 * textmodes/picture.el: Make a new map by make-keymap.
13820 (picture-desired-column): New variable.
13821 (picture-update-desired-column): New function.
13822 (picture-beginning-of-line): Set picture-desired-column to 0.
13823 (picture-end-of-line): Set picture-desired-column to the current
13824 column.
13825 (picture-forward-column): Pay attention to multi-column character.
13826 (picture-backward-column): Likewise.
13827 (picture-move-down): Likewise.
13828 (picture-move-up): Likewise.
13829 (picture-movement-nw): With prefix arg, move twice columns.
13830 (picture-movement-ne): Likewise.
13831 (picture-movement-sw): Likewise.
13832 (picture-movement-se): Likewise.
13833 (picture-set-motion): Handle two-column movements.
13834 (picture-move): Call picture-move-down or picture-forward-column
13835 only when necessary.
13836 (picture-insert): Pay attention to picture-desired-column.
13837 (picture-self-insert): Likewise.
13838 (picture-clear-column): Pay attention to multi-column character.
13839 (picture-mode): Modify doc-string for two-column movement.
13840
13841 * rect.el (move-to-column-force): New function.
13842 (operate-on-rectangle): If coerce-tabs is non-nil, call
13843 move-to-column-force instead of move-to-column.
13844 (insert-rectangle): Call move-to-column-force instead of
13845 move-to-column.
13846 (open-rectangle-line): If begextra is not zero, call
13847 move-to-column-force.
13848
13849
13850 1998-11-16 Dave Love <fx@gnu.org>
13851
13852 * textmodes/sgml-mode.el Require skeleton when compiling.
13853 (sgml-font-lock-keywords-1): Accept single-letter tags.
13854 (v2): Defvar free variable.
13855
13856 1998-11-16 Sam Steingold <sds@goems.com>
13857
13858 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
13859 macro, not ELisp one.
13860
13861 1998-11-16 Kenichi Handa <handa@etl.go.jp>
13862
13863 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
13864 characters to symbol.
13865
13866 * language/japan-util.el (japanese-zenkaku-region): New optional
13867 arg KATAKANA-ONLY.
13868
13869 1998-11-16 Kenichi Handa <handa@etl.go.jp>
13870
13871 * international/mule.el
13872 (after-insert-file-set-buffer-file-coding-system): If the buffer
13873 is changed to unibyte, return inserted bytes.
13874
13875 * tar-mode.el (tar-header-block-tokenize): Decode codes of file
13876 and link names if necessary.
13877 (tar-header-block-summarize): Handle the case that file or link
13878 names are multibyte.
13879 (tar-summarize-buffer): At first set the current buffer unibyte,
13880 then if there are multibyte file names, change it to multibyte.
13881 (tar-mode): Get char position from tar-header-offset.
13882 (tar-extract): Avoid multibyte<->unibyte conversion in
13883 insert-buffer-subsring by setting both buffers unibyte
13884 temporarily.
13885 (tar-copy): Set the buffer unibyte while doing a work. Write
13886 without code conversion.
13887 (tar-expunge): Set the buffer unibyte while doing a work.
13888 (tar-alter-one-field): Likewise.
13889 (tar-clear-modification-flags): Compare byte position with
13890 tar-header-offset.
13891 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
13892 insert-buffer-subsring by setting both buffers unibyte
13893 temporarily. Pay attention to multibyteness while updating the
13894 descriptor-line.
13895 (tar-mode-write-file): Write without code conversion.
13896
13897 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13898
13899 * nngateway.el: Require cl.
13900
13901 1998-11-15 Dave Love <fx@gnu.org>
13902
13903 * progmodes/fortran.el: Fix previous change:
13904 (fortran-end-prog-re1): Changed.
13905 (fortran-check-end-prog-re): New function.
13906 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
13907
13908 1998-11-13 Tom Breton <tob@world.std.com>
13909
13910 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
13911 GNU Emacs.
13912
13913 1998-11-13 Carsten Dominik <cd@delysid.gnu.org>
13914
13915 * textmodes/reftex.el: (reftex-finding-files): Group documentation
13916 fixed.
13917 (reftex-toc-toggle-file-boundary,
13918 reftex-toc-toggle-labels,
13919 reftex-toc-toggle-context,reftex-find-start-point): New functions.
13920 (reftex-toc-include-labels, reftex-toc-include-context,
13921 reftex-toc-include-file-boundaries,
13922 reftex-toc-keep-other-windows): New options.
13923 (reftex-use-text-after-label-as-context): Option removed.
13924 (reftex-extract-bib-entries): Protect use in non-latex
13925 buffers.
13926 (reftex-toc-visit-location): Renamed from
13927 `reftex-toc-visit-line'.
13928 (reftex-latin1-to-ascii): Works now with and without Mule.
13929 (reftex-truncate): Removed special stuff for Emacs 20.2.
13930 (reftex-get-offset): Made more general.
13931 (reftex-show-label-location): Renamed from
13932 `reftex-select-label-callback'.
13933 (reftex-pop-to-label): Function removed (using
13934 `reftex-show-label-location' instead.
13935 (reftex-insert-docstruct): Renamed from
13936 `reftex-make-and-insert-label-list'. Function args changed.
13937 (reftex-toc): Now uses `reftex-insert-docstruct' and
13938 `reftex-find-start-point'.
13939 (reftex-select-item): Use `reftex-find-start-point'.
13940 (reftex-toc-visit-line): Can display labels and file
13941 boundaries.
13942 (reftex-TeX-master-file): `(TeX-master-file)' protected.
13943
13944 1998-11-12 Sam Steingold <sds@goems.com>
13945
13946 * browse-url.el (browse-url): Handle the case when
13947 `browse-url-browser-function' is a lambda list.
13948
13949 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org>
13950
13951 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
13952 version string.
13953 * loadhist.el (symbol-file): Likewise
13954
13955 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM>
13956
13957 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
13958
13959 1998-11-11 Sam Steingold <sds@goems.com>
13960
13961 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
13962 `run-lisp' instead of signalling an error.
13963
13964 1998-11-11 Karl Heuer <kwzh@gnu.org>
13965
13966 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
13967
13968 1998-11-11 Richard Stallman <rms@gnu.org>
13969
13970 * vc-hooks.el (vc-toggle-read-only): Doc fix.
13971
13972 1998-11-11 Per Starback <starback@update.uu.se>
13973
13974 * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
13975 renamed svenska8 to svenska, and fixed and extended CASECHARS
13976 for it.
13977
13978 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org>
13979
13980 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
13981 handling if setpagedevice is not available.
13982 (ps-begin-file): Fix typo.
13983
13984 1998-11-11 Kenichi Handa <handa@etl.go.jp>
13985
13986 * international/mule-util.el (compose-chars-component): Signal
13987 error if CH is a rule-based composition character.
13988 (compose-chars): Signal error if an already compsed character is
13989 going to be composed by rule-base.
13990
13991 * term/x-win.el: If a resolved ASCII font name doesn't conform to
13992 full XLFD, don't try to get information of WEIGHT and SLANT from
13993 that font name.
13994
13995 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
13996
13997 * dos-w32.el (set-default-process-coding-system): Use function on
13998 before-init-hook to set default-process-coding-system based on
13999 enable-multibyte-characters.
14000
14001 * term/w32-win.el ([language-change]): For now ignore
14002 keyboard language-change events.
14003
14004 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org>
14005
14006 * ediff-util.el (ediff-make-temp-file): Run the prefix through
14007 convert-standard-file-name, but leave the results of
14008 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2
14009 characters if the original name already exists, or has a special
14010 handler.
14011
14012 1998-11-10 Karl Heuer <kwzh@gnu.org>
14013
14014 * international/iso-insert.el: Delete autoload cookies.
14015
14016 * international/iso-transl.el: Add autoload cookies.
14017
14018 1998-11-10 Richard Stallman <rms@gnu.org>
14019
14020 * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
14021 (ispell-process-line): Don't treat multibyte
14022
14023 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk>
14024
14025 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
14026 setpagedevice to specify the page size if setpagedevice is
14027 available. This is necessary to select the correct paper tray on
14028 Level 2 printers with multiple paper sizes available.
14029
14030 (ps-begin-file): Cope with font names that contain spaces, and
14031 call BeginDoc in a BeginSetup/EndSetup block.
14032
14033 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org>
14034
14035 * loadup.el (buffer-undo-list): Run fns-VERSION.el through
14036 convert-standard-filename.
14037
14038 * loadhist.el (symbol-file): Run fns-VERSION.el through
14039 convert-standard-filename.
14040
14041 1998-11-06 Richard Stallman <rms@gnu.org>
14042
14043 * textmodes/texinfmt.el (texinfo-format-scan):
14044 Detect the case of two @-commands in a row; process just the first.
14045 (texinfo-append-refill): If line has a @c, insert the @refill
14046 before it.
14047 (texinfo-format-refill): Return with point where the @refill was.
14048
14049 * files.el (hack-local-variables): Test local-enable-local-variables.
14050 (hack-local-variables-prop-line): Likewise.
14051 (set-auto-mode): Don't test local-enable-local-variables here.
14052 (enable-local-variables): Doc fix.
14053 (local-enable-local-variables): Doc fix.
14054 (normal-mode): Doc fix.
14055
14056 1998-11-06 Karl Heuer <kwzh@gnu.org>
14057
14058 * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
14059
14060 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM>
14061
14062 * simple.el (line-number-mode): Doc fix.
14063
14064 1998-11-06 Kenichi Handa <handa@etl.go.jp>
14065
14066 * international/fontset.el (create-fontset-from-fontset-spec):
14067 Give correct arg to `error'.
14068
14069 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org>
14070
14071 * textmodes/sgml-mode.el (html-mode): Doc fix.
14072 (sgml-name-8bit-mode): Fix missing format character in message string.
14073
14074 1998-11-05 Karl Heuer <kwzh@gnu.org>
14075
14076 * mail/sendmail.el (sendmail-send-it): Check for failure.
14077
14078 1998-11-05 Richard Stallman <rms@gnu.org>
14079
14080 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
14081
14082 * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
14083 (close-rectangle): Define as alias.
14084
14085 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu>
14086
14087 * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
14088
14089 1998-11-05 Dave Love <fx@gnu.org>
14090
14091 * help.el (describe-variable): Don't quote link to source.
14092
14093 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu>
14094
14095 * gud.el (gud-common-init): Use pop-to-buffer.
14096 (same-window-regexps): Add an element that matches all gud buffers.
14097
14098 1998-11-04 Jason Rumney <jasonr@altavista.net>
14099
14100 * term/w32-win.el (x-get-selection-value): Alias to
14101 x-cut-buffer-or-selection-value.
14102 (w32-standard-fontset-spec): New variable.
14103 (w32-create-initial-fontsets, mouse-set-font): Check whether
14104 new-fontset is available.
14105 (w32-use-w32-font-dialog): Enable use of set-variable.
14106
14107 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
14108
14109 * vc.el (with-vc-file, edit-vc-file): New macros.
14110
14111 1998-11-04 Kenichi Handa <handa@etl.go.jp>
14112
14113 * international/quail.el (quail-show-guidance-buf): Call
14114 set-minibuffer-window to set minibuffer window of the current
14115 frame correctly.
14116
14117 1998-11-03 Theodore Jump <tjump@tertius.com>
14118
14119 * term/w32-win.el: Require fontset.
14120
14121 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org>
14122
14123 * faces.el (set-face-font): Call resolve-fontset-name on w32.
14124 (set-face-font-auto): Ditto.
14125
14126 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
14127
14128 * mouse.el (mouse-drag-region): Fix typo.
14129
14130 1998-11-02 Dave Love <fx@gnu.org>
14131
14132 * progmodes/fortran.el Fix for fontification of strings lost somehow:
14133 (fortran-fontify-string): New function.
14134 (fortran-font-lock-keywords-1): Use it.
14135
14136 1998-11-02 Markus Rost <rost@delysid.gnu.org>
14137
14138 * comint.el (comint-file-name-quote-list): Doc fix.
14139
14140 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
14141
14142 * loadup.el (buffer-undo-list): Write fns-VERSION.el into
14143 build directory, not source directory.
14144
14145 * mouse.el (mouse-drag-region): Fake up a mouse-motion event
14146 if we did not get one for the final move.
14147
14148 1998-11-01 Dave Love <fx@gnu.org>
14149
14150 * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
14151 Don't funcall browse-url-browser-function.
14152
14153 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
14154 Don't funcall browse-url-browser-function.
14155
14156 * fortran.el (fortran-end-prog-re1): Fix the regexp.
14157
14158 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
14159
14160 * files.el (revert-buffer): Doc fix.
14161
14162 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
14163
14164 * textmodes/tex-mode.el (tex-start-options-string):
14165 Quote the backslashes with more backslashes.
14166
14167 1998-10-31 Dave Love <fx@gnu.org>
14168
14169 * webjump.el (webjump-sample-sites): Fix Lisp archive site.
14170 (webjump): Don't funcall browse-url-browser-function.
14171
14172 1998-10-30 Kenichi Handa <handa@etl.go.jp>
14173
14174 * international/quail.el (quail-start-translation): Handle
14175 switching of the frame in read-key-sequence.
14176 (quail-start-conversion): Likewise.
14177 (quail-show-guidance-buf): Detach quail-guidance-buf from any
14178 windows before setting an appropriate window for it.
14179 (quail-hide-guidance-buf): Use window-minibuffer-p. Set
14180 quail-guidance-win to nil.
14181 (quail-update-guidance): If quail-guidance-buf is not in the
14182 selected frame, call quail-show-guidance-buf again.
14183
14184 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no>
14185
14186 * progmodes/pascal.el (pascal-mode):
14187 `blink-matching-paren-dont-ignore-comments' set to t.
14188
14189 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
14190
14191 * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
14192
14193 1998-10-30 Dave Love <fx@gnu.org>
14194
14195 * vc.el (vc-backend-merge-news): Check for "P" output.
14196
14197 * help.el (describe-variable): Hyperlink the definition.
14198
14199 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
14200
14201 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
14202 (sh-set-shell): Likewise.
14203
14204 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
14205
14206 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
14207 (edebug-on-error): Fix customize type to match that of
14208 debug-on-error.
14209
14210 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
14211
14212 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
14213 report-emacs-bug-address instead of undefined bug-gnu-emacs.
14214
14215 * international/mule-cmds.el (select-message-coding-system): Doc
14216 fix.
14217
14218 * international/mule-diag.el (describe-coding-system): Describe
14219 all flags.
14220
14221 * mail/sendmail.el (sendmail-coding-system,
14222 default-sendmail-coding-system): Doc fix.
14223
14224 * simple.el (shell-command-on-region): Doc fix.
14225
14226 * loadup.el: Write fns-*.el in current directory instead of
14227 data-directory since no installation directory exists yet. Mark
14228 buffer unmodified afterwards.
14229
14230 * loadhist.el (symbol-file): Load fns-*.el from exec-directory
14231 instead of data-directory since it is architecture dependent.
14232 (load-history-loaded): Update doc string.
14233
14234 1998-10-29 Geoff Voelker <voelker@cs.washington.edu>
14235
14236 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
14237 path as a default directory when canonicalizing names.
14238
14239 * w32-fns.el: Remove a dangling reference to a directory on the
14240 build machine.
14241
14242 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu>
14243
14244 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
14245 namespace related keywords such as `class', `body', `private',
14246 `variable', `namespace eval', etc.
14247 (tcl-imenu-generic-expression): Handle itcl body and class definitions.
14248 (tcl-mode): Added ":" as a word constituent to the syntax-alist of
14249 imenu and font-lock so that searches for \sw would find words
14250 containing colons.
14251
14252 * progmodes/etags.el (initialize-new-tags-table):
14253 Do not alter find-tag-marker-ring and tags-location-ring.
14254
14255 1998-10-27 Geoff Voelker <voelker@cs.washington.edu>
14256
14257 * term/w32-win.el: Require fontset.
14258 (w32-init-fontsets): New function (code from x-win.el).
14259
14260 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
14261
14262 * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
14263 calendar-and-diary-frame-parameters): Add title parameter.
14264
14265 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
14266
14267 * completion.el (dynamic-completion-mode): New function to enable
14268 the mode. (Just loading the file now does not change anything.)
14269
14270 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14271
14272 * ps-print.el: User option for multibyte buffer handling and doc fix.
14273 (ps-multibyte-buffer): New user option.
14274 (ps-setup): Print new user option.
14275 (ps-print-quote): New fun.
14276 (ps-color-p, ps-mule-font-info-database-latin): New var.
14277 (ps-default-color, ps-mule-font-info-database)
14278 (ps-mule-font-info-database-ps-bdf): Adjust initialization.
14279 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
14280 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
14281 Little code improvement.
14282 (ps-mule-initialize): Initialize ps-mule-font-info-database.
14283 (ps-print-prologue-header, ps-font-family, ps-font-size)
14284 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
14285 (ps-build-face-reference, ps-mule-font-info-database-bdf)
14286 (ps-mule-external-libraries, ps-mule-init-external-library)
14287 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
14288 Doc fix.
14289 (ps-print-version): New version number (4.1.1) and doc fix.
14290 (ps-print-prologue-header): New user option.
14291 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
14292 Conditional compilation for GNU Emacs and emacsens.
14293 (ps-generate-postscript-with-faces): Skip invisible text better.
14294 (ps-setup): Print new user option.
14295 (ps-print-preprint): Check if input file name exists and is unwritable.
14296 (ps-begin-file): Adjust PostScript prologue header for duplex printers
14297 and insert user PostScript prologue header comments.
14298 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
14299 New funs.
14300 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
14301 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
14302 PostScript programming normalization.
14303 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
14304 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
14305 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
14306 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
14307 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
14308 Programming style normalization.
14309
14310 1998-10-26 Kenichi Handa <handa@etl.go.jp>
14311
14312 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
14313 version, check the value of mule-version.
14314
14315 * international/mule-util.el (compose-region): Insert then delete
14316 to preserve markers.
14317 (decompose-region): Use search-forward for efficiency.
14318
14319 * language/chinese.el (pre-write-encode-hz): Cancel previous
14320 change, use generate-new-buffer instead of get-buffer-create.
14321 * language/devan-util.el
14322 (in-is13194-devanagari-pre-write-conversion): Likewise.
14323 * language/thai-util.el (thai-pre-write-conversion): Likewise.
14324 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
14325 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
14326
14327 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
14328
14329 * mail/rmailsum.el (rmail-message-subject-p):
14330 Handle message whose header has not been reformatted.
14331
14332 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
14333
14334 1998-10-25 Jason Rumney <jasonr@altavista.net>
14335
14336 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
14337 New variables.
14338 (mouse-set-font): Use font menus instead of dialog according to
14339 w32-use-w32-font-dialog.
14340
14341 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
14342
14343 * calendar/calendar.el (calendar-day-name-array): Add doc string
14344 correctly!
14345 (calendar-month-name-array): Add doc string correctly!
14346
14347 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu>
14348
14349 * net-utils.el (whois-get-tld): Rewrite not to use `do'.
14350
14351 1998-10-21 Markus Rost <rost@delysid.gnu.org>
14352
14353 * lisp/info.el (Info-next-menu-item): Stay on top of node.
14354
14355 * mail/rmailout.el (rmail-output): Insert newline only if necessary.
14356
14357 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
14358
14359 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
14360
14361 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org>
14362
14363 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
14364
14365 1998-10-21 Karl Heuer <kwzh@gnu.org>
14366
14367 * emacs-lisp/profile.el (profile-timer-program): Var deleted.
14368 (profile-timer-process, profile-temp-result-, profile-time): Likewise.
14369 (profile-filter, profile-reset-timer): Functions deleted.
14370 (profile-check-zero-init-times, profile-get-time): Likewise.
14371 (profile-find-function, profile-quit): Likewise.
14372 (profile-distinct, profile-call-stack, profile-last-time): New vars.
14373 (profile-time-list, profile-init-list): Doc fix.
14374 (profile-functions): Simplify.
14375 (profile-print): Use float. Make output include space separators.
14376 (profile-add-time): New helper function.
14377 (profile-function-prolog): Renamed from profile-start-function.
14378 Handle profile-distinct.
14379 (profile-function-epilog): Renamed from profile-update-function.
14380 Handle profile-distinct.
14381 (profile-a-function): If the function to be profiled is an
14382 autoload form, load it. If it's lazy-loaded, fetch it.
14383 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
14384 (profile-restore-fun): Arg FUN is now a function symbol, as was
14385 documented, rather than a one-element list.
14386 (profile-finish): Call profile-restore-fun properly.
14387
14388 1998-10-21 Kenichi Handa <handa@etl.go.jp>
14389
14390 * international/characters.el: Setup charset property
14391 nospace-between-words.
14392
14393 * international/mule-cmds.el (get-charset-property): If CHARSET is
14394 composition, return nil.
14395 (put-charset-property): If CHARSET is composition, do nothing.
14396
14397 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
14398 * language/devan-util.el
14399 (in-is13194-devanagari-pre-write-conversion): Likewise.
14400 * language/thai-util.el (thai-pre-write-conversion): Likewise.
14401 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
14402 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
14403
14404 * textmodes/fill.el (sentence-end-without-period): New variable.
14405 (canonically-space-region): Pay attention to
14406 sentence-end-without-period.
14407 (fill-find-break-point): The first argument CHARSET deleted.
14408 Caller changed.
14409 (fill-region-as-paragraph): Pay attention to charset property
14410 nospace-between-words and text property nospace-between-words.
14411
14412 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
14413
14414 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
14415 an unrecognized shell.
14416
14417 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org>
14418
14419 * desktop.el (desktop-save): Include minor modes symbolically.
14420 (desktop-create-buffer): Turn on all minor modes in `mim'.
14421
14422 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
14423
14424 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
14425 (sh-font-lock-keywords): Handle rpm and rpm2.
14426 (sh-ancestor-alist): Handle rpm.
14427
14428 * files.el (auto-mode-alist): Recognize .rpm files.
14429 Also .spec and .mspec files.
14430
14431 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org>
14432
14433 * faces.el (frame-set-background-mode): Enable the function for
14434 MSDOS frames.
14435
14436 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
14437
14438 * calendar/calendar.el (calendar-day-name-array): Add doc string.
14439 (calendar-month-name-array): Add doc string.
14440
14441 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu>
14442
14443 * simple.el (kill-ring-max): Increased to 60.
14444
14445 1998-10-17 Kenichi Handa <handa@etl.go.jp>
14446
14447 * international/characters.el: Setup auto-fill-chars.
14448
14449 * international/kinsoku.el (kinsoku): Check the variable
14450 enable-kinsoku.
14451
14452 * simple.el (do-auto-fill): Don't check kinsoku-enable here.
14453 Don't call kinsoku directly, intead call fill-find-break-point.
14454
14455 * textmodes/fill.el: Setup `fill-find-break-point-function'
14456 property to character sets which require `kinsoku' processing for
14457 filling.
14458 (fill-find-break-point): New function.
14459 (fill-region-as-paragraph): Don't check kinsoku-enable here.
14460 Don't call kinsoku directly, intead call fill-find-break-point.
14461
14462 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu>
14463
14464 * faces.el (modify-face-read-string): Return (nil) for "none".
14465 (modify-face): Don't get error if (nil) is the argument.
14466 (face-try-color-list): Don't check whether nil is a valid color.
14467
14468 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu>
14469
14470 * emacs-lisp/bytecomp.el (byte-recompile-directory):
14471 Print message about each directory, even in batch mode.
14472
14473 * gnus/nntp.el: Require `cl' before using nnoo-declare.
14474
14475 * ps-print.el (ps-mule-chars-in-string): No need to use sref.
14476 (ps-mule-string-char): No need to use sref.
14477 (ps-mule-next-index): No need to use sref.
14478
14479 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
14480
14481 * files.el (revert-buffer-internal-hook): Add defvar.
14482
14483 * arc-mode.el (archive-mode): Locally set file-precious-flag.
14484
14485 * tar-mode.el (tar-mode): Locally set file-precious-flag.
14486
14487 1998-10-16 Markus Rost <rost@delysid.gnu.org>
14488
14489 * international/mule-cmds.el (default-input-method): Fix custom type.
14490
14491 * net-utils.el (whois-server-list): Fix customization type.
14492
14493 * shell.el (shell-input-autoexpand): Fix customization group.
14494
14495 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu>
14496
14497 * repeat.el (repeat): Handle keyboard macros properly.
14498 Handle new prefix arg after self-insert command.
14499
14500 * repeat.el: Don't include cl even at compile time.
14501 (repeat): Avoid using `loop'.
14502
14503 * simple.el (shell-command-on-region): Doc fix.
14504 (next-history-element): Special error message if no default.
14505
14506 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu>
14507
14508 * ps-print.el (ps-print-buffer): Doc fix.
14509 (ps-despool): Likewise.
14510
14511 * arc-mode.el (arc-mode): Provide arc-mode.
14512
14513 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
14514
14515 * ps-print.el (ps-print-buffer): Doc fix.
14516
14517 1998-10-14 Dave Love <fx@gnu.org>
14518
14519 * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
14520 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
14521 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
14522
14523 * progmodes/fortran.el (fortran-mode-map): Change "Join
14524 Continuation Line" to "Join Line".
14525 (fortran-font-lock-keywords-1): Add "cycle", "exit".
14526
14527 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
14528
14529 * progmodes/fortran.el (fortran-join-line): Use
14530 `delete-indentation' instead of issuing an error message if not on
14531 a continuation line. Provide for joining several lines using
14532 prefix arg.
14533
14534 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org>
14535
14536 * term/pc-win.el (msdos-color-values): New variable.
14537 (x-color-values): New function, emulates its namesake from
14538 src/xfns.c.
14539 (msdos-bg-mode): Add all dark colors to those which return
14540 "dark".
14541
14542 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
14543
14544 * replace.el (keep-lines, flush-lines, how-many):
14545 Don't ignore case if arg has upper case letters.
14546
14547 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch>
14548
14549 * progmodes/vhdl-mode.el
14550 (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
14551 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
14552 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
14553 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
14554 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
14555 (vhdl-when): Fix indentation problem.
14556 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
14557 (vhdl-get-port, vhdl-get-generic): Bug fix in template.
14558 (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
14559
14560 1998-10-13 Geoff Voelker <voelker@cs.washington.edu>
14561
14562 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
14563 (ls-lisp-insert-directory): Renamed from insert-directory.
14564 (insert-directory): New function.
14565
14566 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
14567
14568 * simple.el (completion-fixup-function): Variable deleted.
14569 (completion-setup-function): Delete code for completion-fixup-function.
14570 * emacs-lisp/lisp.el (lisp-complete-symbol):
14571 Don't bind completion-fixup-function.
14572
14573 * files.el (find-file-wildcards): New option.
14574 (find-file-noselect): Handle wild cards, if enabled.
14575 (file-expand-wildcards): New function.
14576
14577 * simple.el (set-fill-column): Doc fix.
14578
14579 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
14580
14581 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
14582
14583 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org>
14584
14585 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
14586 Move declaration before first use.
14587 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
14588 hif-math, hif-factor): Rename token to hif-token and token-list to
14589 hif-token-list.
14590 (hif-token, hif-token-list): Declare them.
14591 (hif-find-ifdef-block): Return cons of top and bottom point
14592 instead of setting dynamically bound variables.
14593 (hide-ifdef-block, show-ifdef-block): Use return value of
14594 hif-find-ifdef-block.
14595
14596 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
14597
14598 * subr.el (read-passwd): Use clear-this-command-keys.
14599
14600 * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
14601
14602 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
14603 and ...-for-write.
14604
14605 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk>
14606
14607 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
14608 responses to GROUP command, since this may be called from a timer
14609 with quit inhibited.
14610
14611 1998-10-12 Kenichi Handa <handa@etl.go.jp>
14612
14613 * international/ccl.el (ccl-compile-if): If there's no false-cmds,
14614 set unconditional-jump to nil.
14615 (ccl-compile-read-multibyte-character): Return nil.
14616 (ccl-compile-write-multibyte-character): Likewise.
14617 (ccl-compile-translate-character): Likewise
14618 (ccl-compile-map-multiple): Likewise.
14619 (ccl-compile-map-single): Likewise.
14620
14621 * international/kinsoku.el: Add coding tag.
14622 (kinsoku-bol): Remove superfluous TAB in a string.
14623
14624 * international/mule-cmds.el (find-coding-systems-for-charsets):
14625 Delete `composition' (if any) from CHARSETS.
14626
14627 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
14628
14629 * international/mule-cmds.el (setup-specified-language-environment):
14630 Add apropos-inhibit property.
14631 (describe-specified-language-support): Likewise.
14632
14633 1998-10-11 Kenichi HANDA <handa@etl.go.jp>
14634
14635 * international/mule.el (make-coding-system): Create -with-esc
14636 variant coding system.
14637
14638 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
14639
14640 * progmodes/etags.el (tags-loop-revert-buffers): New variable.
14641 (next-file): Optionally offer to revert a file's buffer,
14642 if it has an existing buffer but the file has changed.
14643
14644 * info.el (Info-insert-dir): Detect and report problems
14645 in input files, such as "No Top node". Return with point
14646 at the beginning of the text.
14647 (Info-find-node): Reinsert the code to handle files
14648 with no tags table; it was deleted by mistake.
14649
14650 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
14651
14652 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
14653 texinfo-find-higher-level-node repeatedly find the same node.
14654 (texinfo-find-higher-level-node): Doc fix.
14655
14656 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
14657
14658 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
14659 (smtpmail-address-buffer): Add defvar.
14660 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
14661
14662 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
14663
14664 * ffap.el (ffap-machine-p-local): Fix editing error.
14665
14666 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu>
14667
14668 * faces.el (frame-set-background-mode):
14669 Don't do anythung for text-only or MSDOS frame.
14670
14671 1998-10-08 Kenichi Handa <handa@etl.go.jp>
14672
14673 * international/quail.el (quail-defrule): New optional arg APPEND.
14674 (quail-defrule-internal): Fix bug of handling the argument APPEND.
14675
14676 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu>
14677
14678 * gnus/pop3.el (pop3-open-server):
14679 Set process-coding-system-alist around open-network-stream.
14680
14681 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu>
14682
14683 * files.el (save-buffer): Doc fix.
14684
14685 1998-10-07 Karl Heuer <kwzh@gnu.org>
14686
14687 * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
14688 return DEF unchanged, not nil. Simplify.
14689
14690 1998-10-06 Geoff Voelker <voelker@cs.washington.edu>
14691
14692 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
14693
14694 1998-10-06 Peter Breton <pbreton@ne.mediaone.net>
14695
14696 * generic.el (generic-mode-with-type): Added hooks for generic-modes.
14697
14698 * net-utils.el (ftp, nslookup): Require comint.
14699 (network-service-connection): Likewise.
14700 (whois-server-name): Defaults to whois.arin.net
14701 (whois-server-list, whois-server-tld, whois-guess-server): New var.
14702 (whois): Tries to guess the appropriate top-level domain server.
14703 (whois-get-tld): New function.
14704
14705 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
14706 (dirtrack-debug-toggle): Added this function.
14707
14708 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
14709
14710 * files.el (find-file-noselect): Switch to the correct buffer
14711 before checking find-file-literally, and allow non-nil non-t
14712 rawfile params.
14713
14714 1998-10-06 Karl Heuer <kwzh@gnu.org>
14715
14716 * midnight.el (clean-buffer-list): Add autoload cookie.
14717
14718 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
14719 no-autosave.
14720 * tar-mode.el (tar-mode-revert): Likewise.
14721 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
14722 from ediff-arrange-autosave-in-merge-jobs. Callers changed.
14723 * gnus/message.el (message-auto-save-directory): Renamed from
14724 message-autosave-directory. All references changed.
14725
14726 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
14727
14728 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
14729 string. Expose mime stuff while searching.
14730
14731 1998-10-06 Richard Stallman <rms@gnu.org>
14732
14733 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
14734
14735 * replace.el (perform-replace): Position point properly
14736 before and after the recursive edit of C-r.
14737
14738 * progmodes/etags.el (tags-reset-tags-tables): Properly
14739 find the markers in the old rings that are being discarded.
14740
14741 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
14742
14743 * apropos.el (apropos-print): Control invalid characters.
14744
14745 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
14746 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
14747 confusing customize.
14748
14749 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org>
14750
14751 * generic-x.el (bat-generic-mode): Fix regexps for keywords and
14752 built-in commands. Add more built-in commands and fix face names.
14753
14754 1998-10-05 Simon Marshall <simon@gnu.org>
14755
14756 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
14757
14758 1998-10-04 Eric Ludlam <zappo@gnu.org>
14759
14760 * speedbar.el (speedbar-initial-expansion-list-name): Remove
14761 customization since it is not useful in this case.
14762 (speedbar-frame-mode): Check if cfx or cfy is a list, and make
14763 sure it gets evalled to a number. Also verify that set-frame-name
14764 fn exists before calling it.
14765
14766 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
14767 Protect a `forward-sexp' call which could fail, and improved regex
14768 for ie, and eg abbreviations.
14769
14770 1998-10-02 Noah Friedman <friedman@splode.com>
14771
14772 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
14773 send-string.
14774 (rlogin-send-Ctrl-D): Here also.
14775 (rlogin-send-Ctrl-Z): Here also.
14776 (rlogin-send-Ctrl-backslash): Here also.
14777
14778 1998-10-02 Dave Love <fx@gnu.org>
14779
14780 * outline.el (hide-region-body): Bind
14781 outline-view-change-hook to nil while making repeated calls to
14782 outline-flag-region. Run it once at the end.
14783 (hide-other, hide-sublevels, show-children): Likewise.
14784
14785 * info-look.el: Remove duplicate scheme-mode entry.
14786 (info-lookup-make-completions): When looking for entries, check
14787 that `item' isn't null or "Menu".
14788
14789 1998-10-01 Karl Heuer <kwzh@gnu.org>
14790
14791 * net-utils.el: Don't require ffap.
14792 (net-utils-machine-at-point, net-utils-url-at-point): New functions.
14793 (ping, nslookup-host, finger, network-connection-to-service): Use them.
14794
14795 1998-09-30 Richard Stallman <rms@gnu.org>
14796
14797 * ispell.el (check-ispell-version): No need to bind default-major-mode.
14798
14799 * imenu.el (imenu--generic-function): Sort each submenu by position.
14800 (imenu--sort-by-position): New function.
14801
14802 * cus-edit.el (Custom-mode-menu): Fix info node name.
14803 (customize group): Fix info node name.
14804
14805 * mail/mailalias.el (build-mail-aliases): Don't allow
14806 a newline in the alias name. Don't define an alias
14807 if the definition would be empty.
14808
14809 * which-func.el (which-func-mode-global): Make :set function
14810 more reliable.
14811
14812 * custom.el (custom-set-variables): Load the requests first,
14813 then check the symbol's `set' function.
14814
14815 * ffap.el: Doc fixes.
14816
14817 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
14818
14819 * gnus.el: (gnus-valid-select-methods): Fix type.
14820 * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
14821 * gnus-score.el (gnus-orphan-score): Fix type.
14822 (gnus-score-default-header, gnus-score-default-type): Fix type.
14823 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
14824 (gnus-saved-headers): Fix type.
14825
14826 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
14827 Avoid nil value of `two-lines-citation-part'.
14828
14829 1998-09-30 Roman Belenov <roman@nstl.nnov.ru>
14830
14831 * which-func.el (which-function): Handle case when
14832 (car imenu--index-alist) is nil.
14833
14834 1998-09-29 Dave Love <fx@gnu.org>
14835
14836 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
14837 bzip2 args.
14838
14839 1998-09-29 Simon Marshall <simon@gnu.org>
14840
14841 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
14842 comint-exec-hook.
14843
14844 1998-09-29 Stephen Eglen <stephen@gnu.org>
14845
14846 * info-look.el: Add support for Octave.
14847
14848 1998-09-28 Carsten Dominik <cd@delysid.gnu.org>
14849
14850 * textmodes/reftex.el (reftex-finding-files): New customize group.
14851 (reftex-texpath-environment-variables,
14852 reftex-use-external-file-finders, reftex-external-file-finders,
14853 reftex-search-unrecursed-path-first): New options.
14854 (reftex-process-string, reftex-find-file-externally): New
14855 functions.
14856 (reftex-access-search-path): Execute shell commands to find the
14857 search path.
14858 (reftex-toggle-auto-view-crossref): When turning on, make sure
14859 `reftex-auto-view-crossref' becomes non-nil.
14860 (reftex-abbrev-regexp): Constant removed.
14861 (reftex-convert-string): Abbrev regexp calculated locally.
14862
14863 1998-09-28 Dave Love <fx@gnu.org>
14864
14865 * progmodes/fortran.el: Don't call regexp-opt when deriving
14866 font-lock patterns with keywords that aren't all literal.
14867
14868 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
14869
14870 * octave-inf.el (inferior-octave-prompt): Also match prompts of
14871 the form `octave.bin:1>' which come from using precopiled binary
14872 versions.
14873
14874 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu>
14875
14876 * help.el (help-for-help): Use %THIS-KEY%.
14877 (help-quit): Add doc.
14878
14879 * help-macro.el (make-help-screen): Keep HELP-TEXT
14880 in a separate function definition, not in the help command FNAME.
14881 Replace %THIS-KEY% with the key sequence that ran FNAME.
14882
14883 1998-09-25 Richard Stallman <rms@gnu.org>
14884
14885 * textmodes/texinfo.el (texinfo-show-structure):
14886 Bind inhibit-read-only.
14887
14888 * isearch.el (isearch-search-and-update): Properly
14889 handle upper case letters in the reverse-search special case.
14890
14891 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
14892
14893 * gnus.el: Extend the list of autoloaded functions.
14894
14895 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
14896 buffer before creating help group. (from Gnus v5.6.43, fix by
14897 1998-08-20 Per Starback <starback@update.uu.se>)
14898
14899 * gnus-util.el (gnus-output-to-rmail): Adjust to
14900 `rmail-output-to-rmail-file'.
14901
14902 1998-09-25 Karl Heuer <kwzh@gnu.org>
14903
14904 * hexl.el (hexl-mode-map): More of previous change.
14905
14906 * textmodes/tex-mode.el (tex-run-command): Doc fix.
14907 (tex-start-tex): Don't use tex-start-options-string in star case.
14908 Quote file name in star case as well as in non-star.
14909 Add blank and quoting of option string here.
14910 (tex-start-options-string): Not here.
14911
14912 1998-09-23 Karl Heuer <kwzh@gnu.org>
14913
14914 * term.el (term-delimiter-argument-list): Doc fix.
14915 (term-emulate-terminal): Escape literal semicolon.
14916 * progmodes/asm-mode.el (asm-mode): Doc fix.
14917 (asm-comment-char): Escape literal semicolon.
14918 * emulation/viper-cmd.el (viper-movement-commands): Likewise.
14919
14920 1998-09-23 Richard Stallman <rms@gnu.org>
14921
14922 * hexl.el (hexl-mode-map): Don't override all ESC bindings,
14923 only those that normally modify the buffer.
14924
14925 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
14926 over again.
14927
14928 1998-09-23 E. Jay Berkenbilt <ejb@ql.org>
14929
14930 * ispell.el (check-ispell-version): Ensure same buffer is current
14931 when let-binding of case-fold-search ends.
14932
14933 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14934
14935 * ps-print.el: Skip invisible overlay.
14936 Test for set-buffer-multibyte rather than using mule-version.
14937 (ps-print-version): New version number (4.1) and doc fix.
14938 (ps-generate-postscript-with-faces): Skip invisible overlay.
14939
14940 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu>
14941
14942 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
14943
14944 1998-09-22 Kenichi Handa <handa@etl.go.jp>
14945
14946 * international/quail.el (quail-update-guidance): Check for the
14947 return value of (quail-guidance) fixed.
14948 (quail-update-translation): Bind quail-current-str locally when it
14949 calls quail-update-guidance.
14950 (quail-update-translation): If input-method-exit-on-first-char is
14951 non-nil, terminate translation only when the current input method
14952 is simple.
14953
14954 1998-09-22 Paul Eggert <eggert@twinsun.com>
14955
14956 * startup.el (locale-translation-file-name): Prefer X-related names
14957 to the name used by GNU/Linux sans X. Set to nil if no file found.
14958 (command-line): Use locale-translation-file-name if it is not nil,
14959 instead of testing for its existence again.
14960 regexp-quote the ctype before using it in a regexp.
14961 Allow a colon to appear after the ctype in the aliases file,
14962 as is done in X11R6.4.
14963
14964 1998-09-21 Richard Stallman <rms@gnu.org>
14965
14966 * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
14967
14968 * calendar/appt.el (appt-interval): Variable deleted.
14969 (appt-check): For minutes in between appt-display-interval times,
14970 do check, but don't display anything except an updated mode line.
14971 Count against appt-display-interval based on minutes since
14972 first display of this appointment, not based on time of day.
14973 If appt-display-mode-line, force mode line redisplay
14974 whenever appt-mode-string has changed.
14975 (appt-add, appt-delete): Add autoload cookies.
14976 (appt-check): Catch errors from calling `diary'.
14977 (appt-max-time): Renamed from max-time.
14978 (appt-now-displayed, appt-display-count): New variables.
14979 (appt-timer): Don't create one if we already have one.
14980
14981 * textmodes/tex-mode.el (tex-compilation-parse-errors):
14982 More general code to use the source buffer instead of the zap file.
14983
14984 * hilit-chg.el (highlight-compare-with-file): Renamed from
14985 compare-with-file.
14986
14987 * loadhist.el (load-history-loaded): New variable.
14988 (symbol-file): Load etc/fns-VERSION.el if that has not been done.
14989
14990 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
14991
14992 * emacs-lisp/find-func.el (find-function-search-for-symbol):
14993 Fix error messages.
14994
14995 1998-09-21 Markus Armbruster <armbru@pond.sub.org>
14996
14997 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
14998 Emacs frame.
14999
15000 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
15001
15002 * mail/rmail.el (rmail-decode-babyl-format): Recognize both
15003 `undecided' and `undecided-unix'.
15004
15005 1998-09-21 Dave Love <fx@gnu.org>
15006
15007 * help.el (help-make-xrefs): Fix typo affecting Info references.
15008
15009 * subr.el (remove-hook): Check list values to avoid errors.
15010
15011 1998-09-18 Noah Friedman <friedman@splode.com>
15012
15013 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
15014 store string in eldoc-last-message without consing a new string.
15015 Rearrange logic from nested if's into cond's.
15016 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
15017 Do not print message; just return string.
15018 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
15019 Do not print message; just return string.
15020 Cache that string in eldoc-last-data.
15021 (eldoc-last-data): Make into a vector.
15022 (eldoc-get-fnsym-args-string): Use new data form of structure.
15023 (eldoc-get-var-docstring): Here also.
15024 (eldoc-last-data-store): New function.
15025 (eldoc-get-fnsym-args-string): Use it.
15026 (eldoc-get-var-docstring): Here also.
15027 (eldoc-docstring-first-line): Minimize interim string consing.
15028 Call substitute-command-keys on the result.
15029 (eldoc-print-var-docstrings, eldoc-print-docstring,
15030 eldoc-docstring-message): Functions removed.
15031 (eldoc-docstring-format-sym-doc): New function, functionality
15032 ripped out of eldoc-docstring-message.
15033 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
15034
15035 1998-09-18 Kenichi Handa <handa@etl.go.jp>
15036
15037 * international/mule.el (make-coding-system): Doc-string modified.
15038
15039 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org>
15040
15041 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
15042
15043 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
15044 customize type.
15045
15046 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
15047 type.
15048
15049 * progmodes/compile.el (compilation-error-screen-columns): New
15050 variable.
15051 (compilation-next-error-locus): Use it to decide whether to use
15052 forward-char or move-to-column.
15053
15054 * mail/rmail.el (rmail-movemail-program): Fix customize type.
15055
15056 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
15057 feedmail-fiddle-plex-user-list,
15058 feedmail-spray-address-fiddle-plex-list,
15059 feedmail-prompt-before-queue-user-alist,
15060 feedmail-prompt-before-queue-help-supplement,
15061 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
15062 feedmail-queue-alternative-mail-header-separator): Fix customize
15063 type.
15064
15065 * startup.el (site-run-file): Fix customize type.
15066
15067 * speedbar.el (speedbar-initial-expansion-list-name): Fix
15068 customize type.
15069
15070 * shell.el (shell-input-autoexpand): Fix customize type.
15071
15072 * ps-print.el (ps-font-info-database): Add missing dots in value.
15073 Improve layout of customize type.
15074
15075 * net-utils.el (traceroute-program-options, ping-program-options,
15076 ipconfig-program-options, netstat-program-options,
15077 arp-program-options, route-program-options,
15078 nslookup-program-options, ftp-program-options): Fix customize
15079 type.
15080
15081 * midnight.el (clean-buffer-list-kill-regexps,
15082 clean-buffer-list-kill-buffer-names,
15083 clean-buffer-list-kill-never-buffer-names,
15084 clean-buffer-list-kill-never-regexps): Fix customize type.
15085
15086 * man.el (Man-init-defvars): Avoid trailing nil on
15087 Man-filter-list.
15088
15089 * lpr.el (printer-name): Fix customize type.
15090
15091 1998-09-16 Kenichi Handa <handa@etl.go.jp>
15092
15093 * international/mule-cmds.el (reset-language-environment): Call
15094 update-coding-systems-internal.
15095
15096 * international/mule-conf.el: Call update-coding-systems-internal
15097 at the tail.
15098
15099 1998-09-14 Dave Love <fx@gnu.org>
15100
15101 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't
15102 use the menu-enable properties, pending doing it correctly and
15103 acceptably fast.
15104
15105 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
15106
15107 1998-09-13 Dave Love <d.love@dl.ac.uk>
15108
15109 * progmodes/hideshow.el (hs-grok-mode-type): Check
15110 comment-{start,end} non-nil as well as bound. Report an error if
15111 we can't grok the mode.
15112
15113 1998-09-13 Richard Stallman <rms@gnu.org>
15114
15115 * simple.el (blink-matching-open): Don't log paren matching
15116 messages in *Messages*.
15117
15118 1998-09-12 Richard Stallman <rms@gnu.org>
15119
15120 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
15121 Set point-before-scroll at end even if there was an error.
15122
15123 * ange-ftp.el (ange-ftp-insert-file-contents):
15124 Use binary mode for dumb-unix hosts as for unix hosts.
15125 (ange-ftp-copy-file-internal): Likewise.
15126
15127 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
15128
15129 * emacs-lisp/pp.el: Doc fixes.
15130
15131 * wid-edit.el (widget-menu-max-shortcuts): New variable.
15132 (widget-choose): Don't use single-char shortcuts if # items
15133 exceeds that many. Use minibuffer instead.
15134
15135 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15136
15137 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
15138
15139 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org>
15140
15141 * speedbar.el (speedbar-frame-mode): Do not set frame position if
15142 in terminal mode.
15143
15144 1998-09-10 Noah Friedman <friedman@splode.com>
15145
15146 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
15147 defcustom declaration. It's wreaking too much havoc with XEmacs
15148 and older versions of Emacs, which share this code.
15149
15150 * type-break.el (type-break-mode): Here also.
15151
15152 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
15153 `t' to add-hook also to modify the new local value.
15154
15155 1998-09-10 Dave Love <fx@gnu.org>
15156
15157 * vc.el (vc-insert-headers): Doc fix.
15158
15159 1998-09-10 Richard Stallman <rms@gnu.org>
15160
15161 * textmodes/flyspell.el (flyspell-mode-on): Make the
15162 ispell-... variables permanent locals.
15163 (flyspell-mode-off): Add autoload cookie.
15164
15165 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
15166 do use binary mode, just as for `unix'.
15167 (ange-ftp-host-type): If HOST is nil, return `unix'.
15168
15169 * dired.el (dired-mark-files-containing-regexp):
15170 Don't scan directories. Ignore non-readable files.
15171
15172 * progmodes/compile.el (compilation-error-regexp-alist):
15173 Fix previous change: allow . and _ in command name.
15174
15175 * dired.el (dired-mark-files-containing-regexp): Fix previous change.
15176
15177 * uncompress.el (uncompress-while-visiting):
15178 Use just the car of what find-operation-coding-system returns.
15179
15180 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
15181
15182 * shell.el (shell-file-name-quote-list): Add # to the value.
15183
15184 1998-09-10 E. Jay Berkenbilt <ejb@ql.org>
15185
15186 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
15187 to make killing of ispell process work even if
15188 kill-all-local-variables has been run.
15189
15190 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15191
15192 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
15193 loop when sexp entry ends at end of file with no newline.
15194
15195 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
15196
15197 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
15198 (Custom-reset-standard): Fix menu inconsistency.
15199
15200 * mail/feedmail.el (feedmail-from-line): Allow t.
15201 (feedmail-message-id-suffix): Allow nil.
15202
15203 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
15204 Simplify. Make prefix arg work right.
15205
15206 1998-09-09 Dave Love <fx@gnu.org>
15207
15208 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
15209
15210 * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
15211
15212 1998-09-08 Dave Love <fx@gnu.org>
15213
15214 * add-log.el (change-log-font-lock-keywords): Do parenthesized
15215 stuff only after file names or at start of line. Allow parens
15216 around e-mail, as well as angles.
15217
15218 * gnus/nnweb.el (require): Wrap requirement of w3 and url in
15219 ignore-errors too, eval'd when compile. Require w3 stuff at load
15220 time for nicer failure if it's not available.
15221
15222 1998-09-07 Geoff Voelker <voelker@cs.washington.edu>
15223
15224 * comint.el (comint-arguments): Ignore backslashes when using
15225 w32 shells that expect backslashes as the directory separator.
15226
15227 1998-09-04 Kenichi Handa <handa@etl.go.jp>
15228
15229 * international/fontset.el (resolved-ascii-font): New variable.
15230 (x-complement-fontset-spec): By side effect, set
15231 `resolved-ascii-font' to the resolved name of ASCII font."
15232 (create-fontset-from-fontset-spec): Don't get a value for
15233 resolved-ascii-font from the list full-fontlist. It is set by
15234 x-complement-fontset-spec now.
15235
15236 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
15237 version, check the value of mule-version.
15238
15239 1998-09-07 Carsten Dominik <cd@delysid.gnu.org>
15240
15241 * textmodes/reftex.el (reftex-view-crossref): Split up into
15242 several functions. No longer moves to find a macro.
15243 (reftex-view-cr-cite, reftex-view-cr-ref,
15244 reftex-end-of-bib-entry): New functions.
15245 (reftex-auto-view-crossref): New value `window' allowed.
15246 (reftex-view-crossref-when-idle): Process new `window' option in
15247 (reftex-translate-to-ascii-function): New default.
15248 (reftex-label-illegal-re): Default changed, removed Latin1.
15249 (reftex-latin1-to-ascii): New function.
15250 (reftex-what-environment): Check for section regexp before use.
15251 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
15252 absolute path names.
15253 (reftex-TeX-master-file): Changed sequence of file checks.
15254 (reftex-do-citation): bibview cache only with RefTeX mode on.
15255
15256 1998-09-06 Richard Stallman <rms@gnu.org>
15257
15258 * progmodes/compile.el (compilation-error-regexp-alist):
15259 In first pattern (GNU utilities and other things),
15260 allow a space after the optional program name at the beginning.
15261
15262 * mail/mail-hist.el (mail-hist-current-header-contents):
15263 Fix previous change: use mail-header-end.
15264
15265 1998-09-06 Bill Richter <richter@math.nwu.edu>
15266
15267 * international/ccl.el: Doc fixes.
15268 * international/encoded-kb.el: Doc fixes.
15269 * international/fontset.el: Doc fixes.
15270 * international/kinsoku.el: Doc fixes.
15271 * international/kkc.el: Doc fixes.
15272 * international/mule-cmds.el: Doc fixes.
15273 * international/mule-conf.el: Doc fixes.
15274 * international/mule-util.el: Doc fixes.
15275 * international/mule.el: Doc fixes.
15276
15277 1998-09-05 Eric Ludlam <zappo@gnu.org>
15278
15279 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
15280 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
15281 (checkdoc-this-string-valid-engine): Permit ? as terminating
15282 punctuation for first line sentence breaking.
15283 (checkdoc-this-string-valid): When converting a comment into a doc
15284 string, make sure " chars are \".
15285 (checkdoc-sentencespace-region-engine): Only do double space check
15286 if based on the variable `sentence-end-double-space'
15287 (checkdoc-this-string-valid-engine): ? ends valid sentence.
15288 (checkdoc-proper-noun-region-engine): Exclude items in URLs
15289
15290 1998-09-04 Richard Stallman <rms@gnu.org>
15291
15292 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
15293 Recognize define-skeleton as a function definer.
15294
15295 * cus-edit.el (customize-option): Refuse to customize
15296 a variable that has no defcustom. But if variable is autoloaded,
15297 first try to load the library that defines it.
15298
15299 * international/iso-insert.el: Use `string' before calling `insert'
15300 so that in multibyte buffers we insert multibyte chars.
15301
15302 * dired.el (dired-mark-files-containing-regexp):
15303 Don't use find-file; instead, insert the file in a temp buffer.
15304
15305 * textmodes/tex-mode.el (tex-start-options-string): New option.
15306 (tex-start-tex): Use that variable.
15307
15308 * mail/rmail.el (rmail-primary-inbox-list): Make the initial
15309 value in the `repeat' alternative a list.
15310
15311 * textmodes/fill.el (fill-individual-paragraphs): Before deleting
15312 the inserted newline, verify that one was really inserted.
15313
15314 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
15315 remains on or remains off.
15316 (flyspell-multi-language-p): Default changed to nil.
15317
15318 * progmodes/ada-mode.el (ada-search-ignore-string-comment):
15319 In "found in comment" case, don't beginning-of-line after forward-line.
15320
15321 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
15322 If the function definition is not a lambda, return original FORM
15323 with no error.
15324
15325 1998-09-04 Peter Breton <pbreton@ne.mediaone.net>
15326
15327 * net-utils.el (netstat-program-options): Changed from nil to "-a"
15328 so that by default netstat shows all network connections.
15329
15330 1998-09-04 Bob Weiner <weiner@altrasoft.com>
15331
15332 * international/quail.el: Doc fixes.
15333
15334 * info.el (info): Don't add parens if FILE already has them.
15335
15336 1998-09-04 Geoff Voelker <voelker@cs.washington.edu>
15337
15338 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
15339 on extension lines.
15340
15341 1998-09-03 Geoff Voelker <voelker@cs.washington.edu>
15342
15343 * w32-fns.el (w32-shell-dos-semantics): New function.
15344
15345 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu>
15346
15347 * international/quail.el (quail-choose-completion-string): Store
15348 completion `choice' in `quail-current-str'; don't insert it.
15349
15350 1998-09-02 Kenichi Handa <handa@etl.go.jp>
15351
15352 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH
15353 argument to ps-mule-generate-bitmap-font.
15354
15355 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
15356 entry and change Latin-1 entry in the default value.
15357 (ps-mule-font-info-database-ps-bdf): New variable.
15358 (ccl-encode-ethio-unicode): Bug of CCL code fixed.
15359 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
15360 registerd in FONT-SPEC.
15361 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
15362 charcter width of bitmap fonts.
15363 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
15364 procedure NF.
15365 (ps-begin-file): Output PostScript code for setting
15366 SpaceWidthRatio.
15367 (ps-plot-region): Use line-beginning-position to get a position of
15368 the beginning of the current line.
15369
15370 * international/mule-cmds.el (register-input-method): Doc-string
15371 modified.
15372
15373 1998-09-01 Dave Love <fx@gnu.org>
15374
15375 * international/mule-cmds.el (current-language-environment): Fix
15376 setter function.
15377
15378 1998-09-01 Simon Marshall <simon@gnu.org>
15379
15380 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
15381 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
15382 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
15383 names with font-lock-type-face. Fontify type specs, etc., with
15384 font-lock-keyword-face.
15385
15386 1998-08-31 Kenichi Handa <handa@etl.go.jp>
15387
15388 * international/fontset.el (x-complement-fontset-spec): If ASCII
15389 font is specified in FONTLIST, don't substitute it for the
15390 resolved name.
15391
15392 1998-08-31 Paul Eggert <eggert@twinsun.com>
15393
15394 * international/mule.el (charset-description): Doc fix.
15395
15396 * language/chinese.el, language/cyrillic.el, language/czech.el,
15397 language/devanagari.el, language/ethiopic.el,
15398 language/european.el, language/hebrew.el, language/indian.el,
15399 language/japanese.el, language/korean.el, language/lao.el,
15400 language/slovak.el, language/thai.el, language/tibetan.el,
15401 language/vietnamese.el:
15402 Add coding: local variable, to avoid bootstrapping problem
15403 if you need to recompile all the Lisp files using interpreted code.
15404
15405 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15406
15407 * cal-china.el (chinese-year-cache): Change range of years from
15408 1989-2000 to 1990-2010.
15409
15410 1998-08-29 Dave Love <d.love@dl.ac.uk>
15411
15412 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
15413 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
15414
15415 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15416
15417 * ps-print.el (ps-print-control-characters): Doc-string modified.
15418 (ps-output-string-prim): Comment format changed.
15419 (ps-do-despool): Indentation of source code changed.
15420
15421 1998-08-28 Kenichi Handa <handa@etl.go.jp>
15422
15423 * subr.el (sref): Make it an alias of aref. Make the
15424 byte-compiler warn that it is obsolete.
15425 (char-bytes): Make the byte-compiler warn that it is obsolete.
15426
15427 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
15428 Calculate the total bytes using position-bytes instead of
15429 char-bytes.
15430
15431 1998-08-27 Karl Heuer <kwzh@gnu.org>
15432
15433 * snmp-mode.el: New file.
15434 * files.el (auto-mode-alist): Add snmp-mode patterns.
15435
15436 1998-08-27 Karl Eichwalder <ke@suse.de>
15437
15438 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
15439
15440 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15441
15442 * calendar/diary-lib.el (diary-block): Doc fix..
15443 * calendar/calendar.el (diary-list-include-blanks): Doc fix..
15444
15445 1998-08-27 Richard Stallman <rms@gnu.org>
15446
15447 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
15448 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
15449 Clear appt-mode-string if we don't put something in it.
15450
15451 1998-08-27 Dave Love <fx@gnu.org>
15452
15453 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
15454 dired-local-variables-file for dired-x.
15455
15456 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
15457 for compressed library files too.
15458
15459 1998-08-26 Kenichi Handa <handa@etl.go.jp>
15460
15461 * language/european.el ("Latin-1"): Modify `documentation' key value.
15462 ("Latin-2"): Likewise.
15463
15464 1998-08-26 Karl Heuer <kwzh@gnu.org>
15465
15466 * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
15467
15468 1998-08-26 Albert L. Ting <alt@artisan.com>
15469
15470 * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
15471 (mail-hist-current-header-contents): Use mail-text-start.
15472
15473 1998-08-26 Richard Stallman <rms@gnu.org>
15474
15475 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
15476 (customize-changed-options-previous-release): New variable.
15477 (customize-changed-options): Use that variable as default arg.
15478
15479 1998-08-26 Karl Eichwalder <ke@suse.de>
15480
15481 * midnight.el: Require `timer' not only when compiling.
15482
15483 1998-08-26 Per Starback <starback@update.uu.se>
15484
15485 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
15486 buffer before creating help group.
15487
15488 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
15489
15490 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
15491 coding-system-for-write before saving.
15492
15493 1998-08-26 Kevin Rodgers <kevinr@ihs.com>
15494
15495 * isearch.el (isearch-forward): Doc fix.
15496
15497 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org>
15498
15499 * emacs-lisp/find-func.el: Fix :version tags to have a string
15500 value, not a float.
15501
15502 * cus-dep.el: Fix typo in output.
15503
15504 1998-08-25 Dave Love <fx@gnu.org>
15505
15506 * repeat.el (repeat): Doc fix.
15507 [From rms:]
15508 (repeat-previous-repeated-command): New variable.
15509 (repeat): Check for real-last-command being null or repeat. Set
15510 repeat-previous-repeated-command.
15511
15512 * browse-url.el (browse-url-netscape): Fix format for hex escapes.
15513
15514 1998-08-25 Kenichi Handa <handa@etl.go.jp>
15515
15516 * gnus/message.el (message-send-mail-with-sendmail): Bind
15517 coding-system-for-write by the return value of
15518 select-message-coding-system.
15519 (message-send-mail-with-qmail): Likewise.
15520
15521 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org>
15522
15523 * emacs-lisp/autoload.el: Fix doc-string-elt property on
15524 define-derived-mode.
15525
15526 * files.el (file-name-invalid-regexp):
15527 Fix regex for ms-dos without long file names.
15528
15529 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15530
15531 * ps-print.el: Multi-byte buffer handling.
15532 (ps-print-version): New version number (4.0) and doc fix.
15533 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
15534 compilation for GNU Emacs and emacsens.
15535 (ps-generate-postscript-with-faces): Force invisible text to be
15536 visible.
15537 (dos-ps-printer): New var to avoid compilation gripes.
15538
15539 1998-08-24 Kenichi Handa <handa@etl.go.jp>
15540
15541 * ps-print.el (ps-mule-plot-string): Pay attention to the case
15542 that no more characters can't be printed in the current line.
15543
15544 1998-08-24 Kenichi Handa <handa@etl.go.jp>
15545
15546 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
15547 greater than TO.
15548
15549 1998-08-24 Kenichi Handa <handa@etl.go.jp>
15550
15551 * ps-print.el: Add codes to make ps-print.el work also on Emacs
15552 20.2 and the earlier version.
15553 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
15554 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
15555 (ps-mule-find-wrappoint): Likewise.
15556 (ps-mule-generate-font): Change `X' to `x' in format
15557 control-string.
15558 (ps-generate): Call ps-mule-begin before calling ps-begin-job.
15559 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
15560 `restore' form procedures `BC' and `EC'.
15561
15562 1998-08-24 Kenichi Handa <handa@etl.go.jp>
15563
15564 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
15565 is an executable procedure. Make LineThickness, Xshadow, and
15566 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc.
15567 (ps-mule-font-info-database, ps-mule-font-info-database-ps,
15568 ps-mule-font-info-database-bdf): New vars.
15569 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
15570 (ccl-encode-ethio-unicode): New CCL program.
15571 (ps-mule-encode-ethiopic): New fun.
15572 (ps-mule-current-charset): New var.
15573 (ps-mule-get-font-spec, ps-mule-font-spec-src,
15574 ps-mule-font-spec-name, ps-mule-font-spec-encoding,
15575 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
15576 (ps-mule-external-libraries): New var.
15577 (ps-mule-init-external-library): New fun.
15578 (ps-mule-font-cache): New var.
15579 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
15580 (ps-last-font): New var.
15581 (ps-mule-prepare-font): New fun.
15582 (ps-mule-charset-list): New var.
15583 (ps-mule-prologue-generated, ps-mule-prologue): New vars.
15584 (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
15585 ps-mule-plot-string): New funs.
15586 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
15587 New vars.
15588 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
15589 ps-mule-prepare-cmpchar-font): New funs.
15590 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
15591 vars.
15592 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
15593 ps-mule-generate-bitmap-glyph): New funs.
15594 (ps-mule-initialize, ps-mule-begin): New funs.
15595 (ps-output-string-prim): Insert string as unibyte.
15596 (ps-output-prologue): New fun.
15597 (ps-flush-output): Handle the case of 'prologue.
15598 (ps-begin-file): Call ps-mule-initialize.
15599 (ps-begin-job): Set ps-control-or-escape-regexp differently if
15600 printing multibyte characters.
15601 (ps-begin-page): Set ps-mule-current-charset to 'ascii.
15602 (ps-basic-plot-string): Handle the case of printing ASCII
15603 characters by external libraries (e.g. BDF).
15604 (ps-set-font): Set ps-last-font.
15605 (ps-plot-region): Handle multibyte characters, use
15606 ps-mule-plot-string for them.
15607 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin.
15608
15609 * bdf.el: New file.
15610
15611 1998-08-23 Kenichi HANDA <handa@etl.go.jp>
15612
15613 * international/mule-cmds.el (select-message-coding-system): New
15614 function.
15615 (set-language-environment-coding-systems): Set
15616 default-sendmail-coding-system.
15617
15618 * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
15619 (default-sendmail-coding-system): New variable.
15620 (sendmail-send-it): Encode the message by a coding system
15621 select-message-coding-system returns.
15622
15623 1998-08-23 Eric Ludlam <zappo@gnu.org>
15624
15625 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
15626 (speedbar-mode): Set buffer to read only.
15627 (speedbar-temp-buffer-show-function): For emacs don't call hook
15628 with arguments.
15629 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
15630
15631 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu>
15632
15633 * speedbar.el (speedbar-key-map): Fix typo.
15634
15635 See ChangeLog.7 for earlier changes.