Mercurial > emacs
annotate lisp/ChangeLog @ 27652:9c2aec874fef
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 09 Feb 2000 12:43:30 +0000 |
parents | 1ac28043dbd6 |
children | 1b0072274ea3 |
rev | line source |
---|---|
27652 | 1 2000-02-09 Dave Love <fx@gnu.org> |
2 | |
3 * bindings.el (mode-line-input-method-map): New variable. | |
4 (mode-line-mule-info): Use it; fix last change. | |
5 (mode-line-mode-menu): Move definition. | |
6 (mode-line-mouse-sensitive-p): Deleted. | |
7 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p. | |
8 (make-mode-line-mouse-sensitive): Deleted. Body moved to top | |
9 level. | |
10 | |
11 * startup.el (command-line-1): Don't call | |
12 make-mode-line-mouse-sensitive. | |
13 | |
27644 | 14 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> |
15 | |
16 * mail/rmail.el (rmail-retry-failure): Use | |
17 rmail-beginning-of-message before rmail-toggle-header, because the | |
18 former toggles headers. | |
19 | |
27636
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
20 2000-02-06 Stefan Monnier <monnier@cs.yale.edu> |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
21 |
27637
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
22 * diff-mode.el (diff-kill-junk): New interactive function. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
23 (diff-reverse-direction): Use delete-and-extract-region. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
24 (diff-post-command-hook): Restrict the area so that the hook also works |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
25 outside of any diff hunk. This is necessary for the minor-mode. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
26 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
27 (diff-minor-mode): Setup the hooks for header-hunk rewriting. |
79014abee3cc
(diff-kill-junk): New interactive function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27636
diff
changeset
|
28 |
27636
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
29 * font-lock.el (font-lock-keywords): Fix doc for multiline matches. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
30 (font-lock-add-keywords): Make it work even if font-lock-mode is nil, |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
31 so that it can be used more easily in <foo>-mode-hook. Also make sure |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
32 to avoid duplicate entries. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
33 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
34 (font-lock-remove-keywords): Just as was done for `add', allow it to |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
35 work even if font-lock-mode is nil. Also make sure we don't modify |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
36 any pre-existing list by forcing a copy-sequence. Finally rename |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
37 `major-mode' to `mode'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
38 (font-lock-fontify-syntactic-anchored-keywords) |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
39 (font-lock-fontify-anchored-keywords) |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
40 (font-lock-fontify-keywords-region): Use line-end-position. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
41 Don't make `font-lock-multiline' local (it's now done in |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
42 font-lock-set-defaults). |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
43 (font-lock-set-defaults): Make `font-lock-multiline' local. Also |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
44 move the `font-lock-fontified' creation to inside the `unless'. |
161ec77aa308
(font-lock-keywords): Fix doc for multiline matches.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27634
diff
changeset
|
45 |
27634
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
46 2000-02-06 Andrew Innes <andrewi@gnu.org> |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
47 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
48 * term/w32-win.el (x-handle-args): Comment out call to message, |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
49 which occurs before window system is initialized. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
50 |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
51 * makefile.nt: Add support for recompiling lisp code. |
6c9ee29e8955
* dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
Andrew Innes <andrewi@gnu.org>
parents:
27617
diff
changeset
|
52 |
27610 | 53 2000-02-04 Dave Love <fx@gnu.org> |
54 | |
27617 | 55 * bindings.el (mode-line-mule-info): Fix/extend last change. |
56 | |
27610 | 57 * completion.el: Replace completion-dolist with dolist. |
58 | |
59 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist, | |
60 dotimes. | |
61 | |
27609
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
62 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl> |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
63 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
64 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
65 environment names before they go into the section regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
66 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
67 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
68 char class in regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
69 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
70 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
71 `case-fold-search' to nil. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
72 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
73 * progmodes/idlwave.el (idlwave-template): Respect |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
74 `idlwave-abbrev-change-case'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
75 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
76 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
77 idlwave-while): respect `idlwave-reserved-word-upcase'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
78 (idlwave-rw-case): New function. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
79 (idlwave-statement-match): Fixed problem with assignment regexp. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
80 (idlwave-font-lock-keywords): Improved regexp for keyword |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
81 parameters. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
82 (idlwave-surround): New argument LENGTH to support padding of |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
83 operators longer than 1 char. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
84 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
85 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
86 idlwave-shell-expression-overlay. Implemented printing of |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
87 expressions on higher levels of the calling stack. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
88 (idlwave-shell-display-level-in-calling-stack): Restore stack |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
89 level. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
90 (idlwave-retrieve-expression-from-level): New function. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
91 (idlwave-shell-last-calling-stack): Variable removed. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
92 (idlwave-shell-reset): Argument action reversed (`visible' to |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
93 `hidden'). Also remove stop-line overlay. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
94 (idlwave-shell-calling-stack-routine): New variable. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
95 (idlwave-shell-parse-stack-and-display): Messages now display |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
96 negative level numbers. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
97 (idlwave-shell-mode): Set `modeline-format'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
98 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
99 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
100 21. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
101 (idlwave-shell-print-expression-function): New option. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
102 |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
103 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere, |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
104 idlwave-toolbar-remove-everywhere): Keybindings prefix is now |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
105 `tool-bar' instead of `toolbar'. |
45503c8df769
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27590
diff
changeset
|
106 |
27590 | 107 2000-02-02 Dave Love <fx@gnu.org> |
108 | |
109 * emacs-lisp/cl.el: Use bytecomp-load-hook, not | |
110 emacs-lisp-mode-hook. Don't check for defalias being defined. | |
111 | |
112 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash) | |
113 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use | |
114 the new builtins directly. | |
115 | |
116 * whitespace.el (whitespace): Add :version to defgroup. | |
117 | |
118 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference): | |
119 Doc fix. | |
120 | |
121 * thingatpt.el (sexp-at-point, symbol-at-point) | |
122 (number-at-point, list-at-point): Add autoload cookie. | |
123 | |
124 * recentf.el (recentf): Add :version to defgroup. | |
125 | |
126 * quickurl.el (quickurl): Add :version to defgroup. | |
127 | |
128 * elide-head.el (elide-head): Use point-marker more. | |
129 | |
130 * bs.el (bs): Add :version to defgroup. | |
131 | |
132 * autorevert.el (global-auto-revert-mode): Add autoload cookie. | |
133 | |
134 * progmodes/delphi.el (delphi): Add :version to defgroup. | |
135 | |
27587 | 136 2000-02-02 Gerd Moellmann <gerd@gnu.org> |
137 | |
138 * ange-ftp.el (ange-ftp-write-region): Handle case that | |
139 succeeding process operation sets a different coding system. | |
140 | |
141 * calculator.el: New file. | |
142 | |
27572 | 143 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il> |
144 | |
145 * frame.el (frames-on-display-list, framep-on-display): New | |
146 functions. | |
147 (display-mouse-p, display-popup-menus-p, display-graphic-p) | |
148 (display-selections-p, display-screens, display-pixel-width) | |
149 (display-pixel-height, display-mm-width, display-mm-height) | |
150 (display-backing-store, display-save-under, display-planes) | |
151 (display-color-cells, display-visual-class): New functions. | |
152 | |
153 * term/tty-colors.el (tty-color-gray-shades): New function. | |
154 | |
155 * faces.el (display-color-p): Use framep-on-display. | |
156 (display-grayscale-p): New function. | |
157 | |
27549 | 158 2000-01-31 Dave Love <fx@gnu.org> |
159 | |
160 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it. | |
161 (create-fontset-from-x-resource): Don't concat integers. | |
162 | |
27545 | 163 2000-01-31 Inge Frick <inge@nada.kth.se> |
164 | |
165 * view.el: Some changes in documentation. Removed some trailing | |
166 whitespace. Changed some parameter names to agree with | |
167 documentation. | |
168 (view-mode-exit): Keep entry in `view-return-to-alist' only when a | |
169 window is not deleted. Modifies change 1998-04-26. | |
170 | |
27541 | 171 2000-01-31 Gerd Moellmann <gerd@gnu.org> |
172 | |
27543 | 173 * windmove.el: New file. |
174 | |
27541 | 175 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el, |
176 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el, | |
27545 | 177 progmodes/ebnf-yac.el: Update copyright and license info. |
27541 | 178 |
179 * jit-lock.el (jit-lock-function): Widen before calculating end | |
180 position. | |
181 (jit-lock-stealth-chunk-start): Rewritten. | |
182 | |
183 * info.el (Info-title-face-alist): Removed. | |
184 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New | |
185 faces. | |
186 (Info-fontify-node): Use these faces. | |
187 | |
27527 | 188 2000-01-30 Gerd Moellmann <gerd@gnu.org> |
189 | |
190 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list) | |
191 (cl-macro-list1): Recognize `&allow-other-keys' instead of | |
192 `&allow-other-keywords'. | |
193 | |
194 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to | |
195 the list of directories scanned heuristically. | |
196 | |
197 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to | |
198 exist. | |
199 | |
27523 | 200 2000-01-30 Jason Rumney <jasonr@gnu.org> |
201 | |
202 * w32-fns.el: Define w32-tty-standard-colors. | |
203 | |
204 * startup.el (command-line): Use w32-tty-standard-colors when in | |
205 w32 console mode. | |
206 | |
27510 | 207 2000-01-30 Dave Love <fx@gnu.org> |
208 | |
27513 | 209 * jka-compr.el (jka-compr-load): Fix up load-history. |
210 | |
27510 | 211 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes. |
212 | |
213 * emacs-lisp/cl-macs.el: Revert previous change. | |
214 | |
27499 | 215 2000-01-29 Dave Love <fx@gnu.org> |
216 | |
217 * facemenu.el: Purecopy various strings. | |
218 | |
219 * timezone.el (timezone-fix-time): Window against 69 for two-digit | |
220 years. Deal with three-digit years. | |
221 | |
222 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use | |
223 defconst, purecopy. | |
224 (help-back-label): Purecopy it. | |
225 | |
27498 | 226 2000-01-18 Gerd Moellmann <gerd@gnu.org> |
227 | |
228 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration | |
229 variable. If non-nil, order the buffer list according to the | |
230 currently selected frame. | |
231 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is | |
232 non-nil, pass the selected frame to function buffer-list. | |
233 | |
27496 | 234 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
235 | |
236 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix | |
237 | |
27486 | 238 2000-01-28 Dave Love <fx@gnu.org> |
239 | |
27491 | 240 * emacs-lisp/cl-macs.el: Remove dotimes, dolist. |
241 | |
27486 | 242 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop. |
243 Don't use lisp-indent-hook property. | |
244 (cl-abs): Remove. | |
245 | |
246 * subr.el: Move out indent and edebug specs for when and unless. | |
247 | |
248 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes, | |
249 when, unless. | |
250 | |
251 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist, | |
252 unless, when. | |
253 | |
27467 | 254 2000-01-28 Gerd Moellmann <gerd@gnu.org> |
255 | |
27481 | 256 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize |
257 `collecting' as synonym for `collect'. | |
258 | |
259 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name | |
260 for the case it contains spaces. | |
261 | |
262 * simple.el (what-cursor-position): Change formatting of | |
263 messages. | |
264 | |
27473 | 265 * frame.el (delete-other-frames): New function. |
266 (toplevel): Bind it to C-x 5 1. | |
267 | |
27469 | 268 * sort.el (sort-numeric-base): New option. |
269 (sort-numeric-fields): If number starts with `0' or `0[xX[', | |
270 interpret it as octal or hexadecimal. Use sort-numeric-base | |
271 as default base. | |
272 | |
27467 | 273 * progmodes/glasses.el: New file. |
274 | |
27451 | 275 2000-01-27 Gerd Moellmann <gerd@gnu.org> |
276 | |
27461 | 277 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched |
278 userids differently. | |
279 | |
27451 | 280 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el, |
281 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el, | |
282 progmodes/ebnf-yac.el: New files. | |
283 | |
27446 | 284 2000-01-26 Dave Love <fx@gnu.org> |
285 | |
286 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose | |
287 on a function with an empty body. [From Eric Ludlam.] | |
288 | |
27437 | 289 2000-01-25 Andre Spiegel <spiegel@gnu.org> |
290 | |
291 * vc.el (vc-version-diff): Make sure file name is expanded. | |
292 | |
27433 | 293 2000-01-25 Gerd Moellmann <gerd@gnu.org> |
294 | |
295 * scroll-bar.el (scroll-bar-timer): Variable removed. | |
296 (scroll-bar-toolkit-scroll): Don't use a timer. | |
297 | |
27419 | 298 2000-01-25 Kenichi Handa <handa@etl.go.jp> |
299 | |
300 * language/thai-util.el (thai-composition-function): Delete | |
301 superfluous `a'. | |
302 | |
27418 | 303 2000-01-24 Dave Love <fx@gnu.org> |
304 | |
305 * fortran.el (fortran-mode): Use beginning-of-defun-function, | |
306 end-of-defun-function. | |
307 | |
308 * font-lock.el (turn-on-font-lock): Don't depend on window-system | |
309 &c. | |
310 | |
27405 | 311 2000-01-22 Jason Rumney <jasonr@gnu.org> |
312 | |
313 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it | |
314 conflicts with new face support. | |
315 | |
27392
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
316 2000-01-22 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
317 |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
318 * replace.el (query-replace): Rename last arg to DELIMITED. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
319 (map-query-replace-regexp, query-replace-regexp-eval): Likewise. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
320 (query-replace-regexp): Likewise. |
b14445d291dd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
321 |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
322 2000-01-20 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
323 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
324 * subr.el (with-syntax-table): Use make-symbol, not gensym. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
325 |
27381
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
326 * emacs-lisp/lisp.el (beginning-of-defun-function): |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
327 Variable renamed from beginning-of-defun. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
328 Do not call make-variable-buffer-local. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
329 (beginning-of-defun-raw): Use new variable name; doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
330 (beginning-of-defun): Doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
331 (end-of-defun-function): Variable renamed from end-of-defun. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
332 Do not call make-variable-buffer-local. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
333 (end-of-defun): Use new variable name; doc fix. |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
334 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
335 * subr.el (dolist, dotimes): Copied from cl-macs.el |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
336 and made to work. |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
337 |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
338 * mail/undigest.el (rmail-digest-end-regexps): |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
339 Variable replaces rmail-digest-end-regexp. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
340 Allows multiple regexps for detecting the end line. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
341 (undigestify-rmail-message): Corresponding changes. |
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27368
diff
changeset
|
342 |
27366 | 343 2000-01-19 Dave Love <fx@gnu.org> |
344 | |
27368 | 345 * files.el (user-init-file): Don't declare here -- is primitive. |
346 | |
27366 | 347 * startup.el (command-line): Check for compiled user-init-file and |
348 set to uncompiled version if necessary. | |
349 | |
27358 | 350 2000-01-18 Gerd Moellmann <gerd@gnu.org> |
351 | |
27361 | 352 * mail/undigest.el (rmail-digest-end-regexp): New user option. |
353 (undigestify-rmail-message): Use it. | |
354 | |
27358 | 355 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT. |
356 | |
27351 | 357 2000-01-17 Gerd Moellmann <gerd@gnu.org> |
358 | |
359 * tmm.el (tmm-goto-completions): Adapt to prompt being part | |
360 of mini-buffer. | |
361 | |
27326 | 362 2000-01-14 Gerd Moellmann <gerd@gnu.org> |
363 | |
27330 | 364 * emacs-lisp/copyright.el (copyright-update): Removed the |
365 requirement for a trailing space from `copyright-regexp', to | |
366 support copyrights with owner specified on a separate line.. | |
367 | |
27327 | 368 * align.el: New file. |
369 | |
27326 | 370 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu. |
371 | |
372 * net/eudc.el (toplevel): Define EUDC menu for Emacs. | |
373 | |
27323 | 374 2000-01-13 Dave Love <fx@gnu.org> |
375 | |
376 * ph.el: Removed. (Obsoleted by EUDC.) | |
377 | |
27321 | 378 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
379 | |
380 * net/eudc.el (toplevel): Remove autoloaded code installing | |
381 menu with easymenu, because that causes build problems. | |
382 | |
383 * frame.el (frame-notice-user-settings): New variable. | |
384 (frame-notice-user-settings): Don't modify frame parameters | |
385 if called a second time. | |
386 | |
387 2000-01-13 Richard M. Stallman <rms@caffeine.ai.mit.edu> | |
388 | |
389 * frame.el (frame-notice-user-settings): | |
390 Notice default-frame-parameters even for non-window frames. | |
391 | |
27318 | 392 2000-01-13 Gerd Moellmann <gerd@gnu.org> |
393 | |
394 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds | |
395 for Emacs. | |
396 (eudc-bob-can-display-inline-images): Extend for Emacs. | |
397 (eudc-bob-toggle-inline-display): Ditto. | |
398 (eudc-bob-display-jpeg): Ditto. | |
399 | |
27304 | 400 2000-01-12 Gerd Moellmann <gerd@gnu.org> |
401 | |
27313 | 402 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el, |
403 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el, | |
404 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files. | |
405 | |
27312 | 406 * add-log.el (add-change-log-entry): Fix error trying an `(insert |
407 nil)'. | |
408 | |
409 * subdirs.el: Add `net' directory. | |
410 | |
27308 | 411 * net: New directory. |
412 | |
27304 | 413 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from |
414 eval-last-sexp. Don't bind debug-on-error here. | |
415 (eval-last-sexp): New function. Bind debug-on-error if | |
416 eval-expression-debug-on-error is non-nil. | |
417 (eval-defun-2, eval-defun): Likewise. | |
418 | |
419 * simple.el (eval-expression): Don't bind debug-on-error if | |
420 eval-expression-debug-on-error is nil. Detect changed | |
421 debug-on-error, and propagate new value to global binding, if | |
422 eval-expression-debug-on-error is non-nil, | |
423 (eval-expression-debug-on-error): Change doc string. | |
424 | |
27300
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
425 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
426 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
427 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
428 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
429 * emacs-lisp/lisp-mode.el (with-syntax-table): |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
430 Set up lisp-indent-function property. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
431 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
432 * subr.el (with-syntax-table): Moved from simple.el. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
433 |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
434 * simple.el (with-syntax-table): Moved to subr.el. |
baffb2de5ce9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27291
diff
changeset
|
435 |
27288 | 436 2000-01-11 Gerd Moellmann <gerd@gnu.org> |
437 | |
27291 | 438 * tmm.el (tmm-shortcut): Delete region after prompt instead |
439 of erasing buffer. | |
440 | |
27288 | 441 * textmodes/fill.el (fill-common-string-prefix): New function. |
27309 | 442 (fill-context-prefix): Use the longest common prefix of first |
443 and second line fill prefix, if there is one. | |
27288 | 444 |
27285
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
445 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
446 |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
447 * array.el (array-mode): Don't use make-variable-buffer-local. |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
448 Use make-local-variable for `truncate-lines'. |
761090e3e94c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27282
diff
changeset
|
449 |
27282 | 450 2000-01-11 Jari Aalto <jari.aalto@poboxes.com> |
451 | |
452 * add-log.el (add-log-current-defun): Handle user-defined | |
453 add-log-current-function returning nil, | |
454 | |
27280 | 455 * add-log.el (add-change-log-entry): Insert version number |
27282 | 456 if having found a current function |
27278 | 457 |
458 * add-log.el (add-log-current-defun): Call | |
459 `add-log-current-defun-function'. Try matches at level 0 and | |
460 level 1. Strip whitespace from defun found. | |
461 | |
27270
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
462 2000-01-10 John Wiegley <johnw@gnu.org> |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
463 |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
464 * allout.el (isearch-done/outline-provisions): Added `edit' |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
465 argument to correspond with the current definition of |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
466 `isearch-done'. |
5a4e13447b47
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27265
diff
changeset
|
467 |
27265 | 468 2000-01-10 Dave Love <fx@gnu.org> |
469 | |
470 * elide-head.el (elide-head): Use point-marker, not point. | |
471 | |
27261 | 472 2000-01-10 Gerd Moellmann <gerd@gnu.org> |
473 | |
27263 | 474 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates |
475 before and after the year 2000. | |
476 | |
27261 | 477 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p): |
478 Add ispell- prefix. | |
479 | |
480 2000-01-10 Ken Stevens <k.stevens@ieee.org> | |
481 | |
482 * ispell.el: Only define dictionaries in menus when they exist. | |
483 (version18p): New variable. | |
484 (version20p): New variable. | |
485 (xemacsp): New variable. | |
486 (ispell-choices-win-default-height): Fix for XEmacs visibility. | |
487 (ispell-dictionary-alist1): Added Brasileiro dictionary. | |
488 (ispell-dictionary-alist6): Russian command lines no longer accept | |
489 run-together words. | |
490 (ispell-local-dictionary-alist): Add koi8-r to customize definition. | |
491 (ispell-dictionary-alist): Add koi8-r to customize definition. | |
492 (check-ispell-version): Added documentation string. Returns | |
493 library path when called non-interactively. | |
494 (ispell-menu-map-needed): Uses new variables. | |
495 (ispell-library-path): New variable. | |
496 (ispell-decode-string): XEmacs fix for bogus variable bindings. | |
497 (ispell-word): Improved documentation string. Test for valid | |
498 character mappings. Correctly check typed in word changes that can | |
499 result in single words split into multiple words. Returns | |
500 replacement word. | |
501 (ispell-command-loop): Fixes XEmacs display bugs. Show word to | |
502 replace in recursive query replace mode. Help message for | |
503 recursive edit mode. | |
504 (ispell-show-choices): Protect against bad framepop bindings. | |
505 (ispell-help): Fix to work with XEmacs. | |
506 (ispell-highlight-spelling-error): Use new variables. | |
507 (ispell-overlay-window): Fix to work with XEmacs. | |
508 (ispell-parse-output): Passed and returns location information | |
509 tracking spelling corrections. Doesn't recheck same word on | |
510 current line. | |
511 (ispell-init-process): Protect against bogus XEmacs variable binding. | |
512 Fix call to single argument in sleep-for. Use new variables. | |
513 (ispell-region): Passed and returns location information tracking | |
514 spelling corrections. Doesn't check same word on current line. | |
515 Improved documentation string. Doesn't resend a line already | |
516 checked to the ispell process - fixes bug in LaTeX parsing. | |
517 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML. | |
518 (ispell-skip-region): No longer skips <TT> in SGML. | |
519 (ispell-process-line): Tracks location information with spelling | |
520 corrections. Added documentation string. Accounts for words | |
521 already accepted on this line. Don't allow query-replace on line | |
522 starting with math characters. Doesn't resend a line already sent | |
523 to ispell process. Fixes alignment error bug. | |
524 | |
27256
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
525 2000-01-10 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
526 |
27259
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
527 * dired-x.el (dired-guess-shell-alist-default): |
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
528 Suggest xloadimage, which is free, not xv, which isn't. |
c41efa6c4be1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27256
diff
changeset
|
529 |
27256
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
530 * ange-ftp.el (ange-ftp-file-name-nondirectory): |
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
531 Don't ever include the host name or user name in the value. |
fde8f0332937
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27255
diff
changeset
|
532 |
27255 | 533 2000-01-09 Gerd Moellmann <gerd@gnu.org> |
534 | |
535 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead | |
536 of a real newline. | |
537 | |
27253 | 538 2000-01-09 Stephen Eglen <stephen@gnu.org> |
539 | |
540 * dired-x.el (dired-guess-shell-alist-default): Suggest xv | |
541 for .png files. | |
542 | |
27251 | 543 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk> |
544 | |
545 * cus-edit.el (custom-hook-convert-widget): Fix comment. | |
546 | |
27247 | 547 2000-01-09 Gerd Moellmann <gerd@gnu.org> |
548 | |
27249 | 549 * progmodes/cperl-mode.el: Replace ^F with ^L. |
550 | |
27247 | 551 * sendmail.el (toplevel): Provide `sendmail' when compiling |
552 before `require'ing rmail and mailalias to prevent infinite | |
553 recursion. | |
554 | |
27244 | 555 2000-01-08 Dave Love <fx@gnu.org> |
556 | |
27265 | 557 * emacs-lisp/backquote.el: Remove inappropriate customization |
558 (allowing custom.el to use backquote). | |
27244 | 559 |
27241 | 560 2000-01-07 Dave Love <fx@gnu.org> |
561 | |
562 * add-log.el (add-log-debugging): Deleted. | |
563 (add-change-log-entry): Treat a backup FILE-NAME as its parent | |
564 file. Remove debugging code. | |
565 (change-log-get-method-definition, change-log-name): Add doc. | |
566 (change-log-sortable-date-at): New function. | |
567 (change-log-merge): New command. | |
568 | |
569 * time.el (display-time-string-forms): Make the Mail string active. | |
570 (display-time-update): Provide help-echo for load average. | |
571 | |
572 * bindings.el (make-mode-line-mouse2-map): New function. | |
573 (mode-line-modified): Use it and simplify. | |
574 (mode-line-mule-info): Provide help-echo info. | |
575 (minor-mode-alist): Activate the strings. | |
576 (make-mode-line-mouse-sensitive): Simplify for | |
577 mode-line-buffer-identification. | |
578 | |
27233 | 579 2000-01-07 Gerd Moellmann <gerd@gnu.org> |
580 | |
581 * play/pong.el: New file. | |
582 | |
27241 | 583 2000-01-06 Dave Love <fx@gnu.org> |
584 | |
585 * array.el: Assorted cleanups for compiler warnings, doc strings, | |
586 `array-' prefix for symbols. | |
587 | |
588 2000-01-05 Dave Love <fx@gnu.org> | |
589 | |
590 * textmodes/outline.el (outline-mode-menu-bar-map): Add | |
591 outline-headers-as-kill. | |
592 (outline-mode): Define imenu-generic-expression. | |
593 (outline-headers-as-kill): New command. | |
594 | |
595 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^' | |
596 from paragraph-start. | |
597 (paragraph-indent-minor-mode): New command. | |
598 | |
599 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a, | |
600 M-C-e, M-C-h, C-j, C-xnd, TAB. | |
601 (fortran-mode): Set beginning-of-defun, end-of-defun. | |
602 (fortran-column-ruler): Simplify. | |
603 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted. | |
604 (fortran-with-subprogram-narrowing): Likewise. | |
605 (fortran-indent-subprogram): Call mark-defun. | |
606 (fortran-check-for-matching-do): Change narrowing. | |
607 | |
608 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table. | |
609 (cl-lucid-hash-tag): Delete. | |
610 (cl-hash-table-p): Correct test for native table. | |
611 (cl-hash-table-count): Use hash-table-count. | |
612 | |
613 * browse-url.el (browse-url): Fix case of | |
614 browse-url-browser-function being an alist. | |
615 | |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
616 2000-01-05 Carsten Dominik <cd@gnu.org> |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
617 |
27233 | 618 * textmodes/reftex-vars.el (reftex-parse-file-extension) |
619 (reftex-index-phrase-file-extension): New options. | |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
620 |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
621 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer): |
27233 | 622 Use new option `reftex-index-phrase-file-extension'. |
27194
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
623 |
5d82e11959a2
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27191
diff
changeset
|
624 * textmodes/reftex.el (reftex-access-parse-file): Use new option |
27233 | 625 `reftex-parse-file-extension'. |
27232
1c7665b7a026
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27205
diff
changeset
|
626 |
27191 | 627 2000-01-05 Dave Love <fx@gnu.org> |
628 | |
27241 | 629 * emacs-lisp/lisp.el (beginning-of-defun): New variable. |
27191 | 630 (beginning-of-defun-raw): Use it. |
631 (end-of-defun): New variable. | |
632 (end-of-defun): Use it. | |
633 (check-parens): New command. | |
634 | |
27182 | 635 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org> |
636 | |
27233 | 637 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region) |
638 (hs-show-block): Don't use `mapcar' when not accumulating. | |
27182 | 639 |
27184
2b11879c1a93
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27182
diff
changeset
|
640 Fix buglet in local variables initialization. |
2b11879c1a93
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27182
diff
changeset
|
641 |
27176 | 642 2000-01-05 Andreas Schwab <schwab@suse.de> |
643 | |
644 * hscroll.el (hscroll): Doc fix. | |
645 | |
27175
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
646 2000-01-05 Carsten Dominik <cd@gnu.org> |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
647 |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
648 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
649 idlw-toolbar. |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
650 |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
651 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read |
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
652 file idlw-rinfo.el. |
27182 | 653 (idlwave-customize): load must read file idlw-shell.el. |
654 (idlwave-create-customize-menu): load must read file idlw-shell.el. | |
27175
17281721d2e9
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27173
diff
changeset
|
655 |
27173
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
656 2000-01-05 Carsten Dominik <dominik@astro.uva.nl> |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
657 |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
658 * progmodes/idlw-shell.el: Also provide idlwave-shell |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
659 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
660 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
661 |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
662 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
663 both reftex-dcr and reftex-vcr. |
27182 | 664 |
27173
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
665 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el |
921acde8334d
*** empty log message ***
Carsten Dominik <dominik@science.uva.nl>
parents:
27172
diff
changeset
|
666 |
27164 | 667 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
27162 | 668 |
669 * ps-print.el: PostScript code now is in separate files, doc fix. | |
670 (ps-print-version): New version number (5.0.3). | |
671 (ps-header-lines, ps-left-header, ps-right-header): No more buffer | |
672 local. | |
673 (ps-spool-config): Initialization fix. | |
27233 | 674 (ps-print-prologue-1, ps-print-prologue-2) |
675 (ps-print-duplex-feature): PostScript code moved to separated file. | |
27162 | 676 (ps-background-image): Little code reformating. |
677 (ps-begin-file, ps-begin-job): Fix code. | |
27191 | 678 (ps-postscript-code-directory, ps-mark-code-directory): New vars. |
27162 | 679 (ps-prologue-file): New fun. |
680 | |
27159 | 681 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
682 | |
27233 | 683 * ps-vars.el: Eliminated. |
27159 | 684 |
685 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is | |
686 `;;;###autoload'. | |
687 | |
688 * ps-print.el: ps-vars eliminated, doc fix. | |
689 (ps-print-version): New version number (5.0.2). | |
690 (ps-spool-config): Initialization fix. | |
691 (ps-print-customize): New fun. | |
692 | |
27155 | 693 2000-01-04 Gerd Moellmann <gerd@gnu.org> |
694 | |
695 * autorevert.el (auto-revert-mode): Return value of | |
696 auto-revert-mode. | |
697 | |
27152 | 698 2000-01-04 Dave Love <fx@gnu.org> |
699 | |
27198 | 700 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle |
701 menu items. | |
27152 | 702 |
27124 | 703 2000-01-03 Dave Love <fx@gnu.org> |
704 | |
27191 | 705 * elide-head.el (elide-head) [defgroup]: Add :version. |
27126 | 706 |
27241 | 707 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar. |
27124 | 708 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use |
709 `cl-hash-table-p', not `hash-table-p'. | |
710 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code. | |
711 | |
27119 | 712 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
713 | |
714 * faces.el (face-read-integer, read-face-attribute) | |
715 (color-defined-p, color-values): unspecified-{f,b}g are now | |
716 strings. | |
717 | |
27112 | 718 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org> |
719 | |
720 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces | |
721 at comment end, and re-insert them after filling. | |
722 | |
27103
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
723 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
724 |
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
725 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el |
27110
3687809feff2
Renamed idlwave-*.el into idlw-*.el.
Eli Zaretskii <eliz@gnu.org>
parents:
27103
diff
changeset
|
726 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el, |
3687809feff2
Renamed idlwave-*.el into idlw-*.el.
Eli Zaretskii <eliz@gnu.org>
parents:
27103
diff
changeset
|
727 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el. |
27103
c1b5ae4b760a
(mouse-drag-region-1): Don't try to catch a
Eli Zaretskii <eliz@gnu.org>
parents:
27102
diff
changeset
|
728 |
27102 | 729 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
730 | |
731 * term/x-win.el (xw-defined-colors): Call color-supported-p, | |
732 the new name of face-color-supported-p. | |
733 | |
734 * term/w32-win.el (xw-defined-colors): Likewise. | |
735 | |
27097 | 736 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il> |
737 | |
738 * simple.el (completion-setup-function): Count completion-size | |
739 from minibuffer-prompt-end, not from point-min. | |
740 | |
27091 | 741 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
742 | |
743 * faces.el (read-face-attribute, defined-colors, color-defined-p): | |
744 Pass the frame to tty-color-* functions. | |
745 (display-color-p, frame-set-background-mode): Pass the frame to | |
746 tty-display-color-p. | |
747 | |
748 * term/tty-colors.el (tty-defined-color-alist): Renamed from | |
749 tty-color-alist. | |
750 (tty-color-alist, tty-modify-color-alist): New functions. | |
751 (tty-color-define, tty-color-clear, tty-color-approximate) | |
752 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept | |
753 an optional parameter FRAME. | |
754 | |
27074 | 755 2000-01-01 Gerd Moellmann <gerd@gnu.org> |
756 | |
27082 | 757 * image.el (create-image, defimage): Don't assume image data is a |
758 string. | |
759 | |
27074 | 760 * image.el (defimage): Handle specifications containing :data |
761 instead of :file. | |
762 (image-type-from-data): New function. | |
763 (image-type-from-file-header): Use it. | |
764 (create-image): Add parameter DATA-P. | |
27182 | 765 |
27063
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
766 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
767 |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
768 * echistory.el (electric-command-history): Call Command-history-setup |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
769 and command-history-mode using their new conventions. |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
770 |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
771 * chistory.el (Command-history-setup): Don't switch buffers. Take |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
772 no args, and do not set major-mode, mode-name or the local map. |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
773 (command-history-mode): New function, does some of those things |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
774 Command-history-setup used to do. |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
775 (list-command-history): Call command-history-mode, not |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
776 Command-history-setup. |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
777 (command-history): Renamed from command-history-mode. |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
778 |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
779 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
780 |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
781 * arc-mode.el (archive-mode-map): Bind q to quit-window. |
e5d4464b5b3d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27059
diff
changeset
|
782 |
27059
6bb2a4a0413e
* image.el (defimage): Images with the :data keyword should be considered valid as well.
William M. Perry <wmperry@aventail.com>
parents:
27052
diff
changeset
|
783 1999-12-31 William M. Perry <wmperry@aventail.com> |
6bb2a4a0413e
* image.el (defimage): Images with the :data keyword should be considered valid as well.
William M. Perry <wmperry@aventail.com>
parents:
27052
diff
changeset
|
784 |
6bb2a4a0413e
* image.el (defimage): Images with the :data keyword should be considered valid as well.
William M. Perry <wmperry@aventail.com>
parents:
27052
diff
changeset
|
785 * image.el (defimage): Images with the `:data' keyword should be |
6bb2a4a0413e
* image.el (defimage): Images with the :data keyword should be considered valid as well.
William M. Perry <wmperry@aventail.com>
parents:
27052
diff
changeset
|
786 considered valid as well. |
6bb2a4a0413e
* image.el (defimage): Images with the :data keyword should be considered valid as well.
William M. Perry <wmperry@aventail.com>
parents:
27052
diff
changeset
|
787 |
27052
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
788 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
789 |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
790 * dired.el (dired-get-filename): Don't call file-name-absolute-p |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
791 with FILE if FILE is nil. |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
792 |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
793 1999-12-30 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
794 |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
795 * simple.el (choose-completion-string): In minibuffer, |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
796 do not delete the prompt string. |
d07fe9e943a0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27049
diff
changeset
|
797 |
27044 | 798 1999-12-30 Gerd Moellmann <gerd@gnu.org> |
799 | |
27049 | 800 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap |
801 assigned to mode-line-mode-menu because bindings.el is dumped with | |
802 Emacs, and thus the lists used for menu-item definition will be | |
803 copied to pure space. Emacs' menu code (parse_menu_item) doesn't | |
804 like pure menu item definitions. | |
805 | |
27044 | 806 * expand.el (expand-abbrev-hook): Return t if expansion was |
807 done, nil otherwise. | |
808 | |
27036
4f6a80a0f1ba
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27030
diff
changeset
|
809 1999-12-29 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
4f6a80a0f1ba
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27030
diff
changeset
|
810 |
4f6a80a0f1ba
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27030
diff
changeset
|
811 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit. |
4f6a80a0f1ba
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27030
diff
changeset
|
812 (tar-quit): Function deleted. |
4f6a80a0f1ba
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27030
diff
changeset
|
813 |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
814 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org> |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
815 |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
816 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug; |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
817 was used but not declared. |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
818 |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
819 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary, |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
820 hs-find-block-beginning): Add or modify docstrings. |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
821 |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
822 (hs-isearch-show): Rewrite. |
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
823 |
27022 | 824 1999-12-28 Gerd Moellmann <gerd@gnu.org> |
825 | |
27024 | 826 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer. |
827 | |
27022 | 828 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white |
829 space in front of a C-style comment end. | |
830 | |
27020
a7feebdd964d
(command-line-1): Make mode line mouse-sensitive for
Eli Zaretskii <eliz@gnu.org>
parents:
27016
diff
changeset
|
831 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il> |
a7feebdd964d
(command-line-1): Make mode line mouse-sensitive for
Eli Zaretskii <eliz@gnu.org>
parents:
27016
diff
changeset
|
832 |
a7feebdd964d
(command-line-1): Make mode line mouse-sensitive for
Eli Zaretskii <eliz@gnu.org>
parents:
27016
diff
changeset
|
833 * startup.el (command-line-1): Make mode line mouse-sensitive for |
a7feebdd964d
(command-line-1): Make mode line mouse-sensitive for
Eli Zaretskii <eliz@gnu.org>
parents:
27016
diff
changeset
|
834 the MS-DOS version as well. |
a7feebdd964d
(command-line-1): Make mode line mouse-sensitive for
Eli Zaretskii <eliz@gnu.org>
parents:
27016
diff
changeset
|
835 |
27016 | 836 1999-12-28 Gerd Moellmann <gerd@gnu.org> |
837 | |
838 * bs.el: New file. | |
839 | |
27010
4be26de6d837
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27008
diff
changeset
|
840 1999-12-28 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
4be26de6d837
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27008
diff
changeset
|
841 |
4be26de6d837
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27008
diff
changeset
|
842 * textmodes/ispell.el (ispell-process-line): |
4be26de6d837
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27008
diff
changeset
|
843 Add local var line-offset to adjust for the change |
4be26de6d837
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27008
diff
changeset
|
844 in positions within the line, due to previous replacements. |
4be26de6d837
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27008
diff
changeset
|
845 |
27008
42410fba715f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27004
diff
changeset
|
846 1999-12-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
42410fba715f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27004
diff
changeset
|
847 |
42410fba715f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27004
diff
changeset
|
848 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region): |
42410fba715f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27004
diff
changeset
|
849 Doc fixes. |
42410fba715f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27004
diff
changeset
|
850 |
27004 | 851 1999-12-27 Gerd Moellmann <gerd@gnu.org> |
852 | |
853 * add-log.el (change-log-version-number-regexp-list) | |
854 (change-log-version-info-enabled): Change :version to 21.1. | |
855 (toplevel): Require CL when compiling. | |
856 | |
857 1999-12-27 Jari Aalto <jari.aalto@poboxes.com> | |
858 | |
859 * add-log.el (change-log-version-number-regexp-list): Added tag | |
860 :version 20.6 | |
861 (change-log-version-info-enabled): Added tag :version 20.6 | |
862 | |
863 1999-12-27 Jari Aalto <jari.aalto@poboxes.com> | |
864 | |
865 * add-log.el: More general version number search with | |
866 user-configurable regexp list. | |
867 (change-log-version-number-regexp-list): New user variable. | |
868 (change-log-find-version): Rewritten. Use user-configurable | |
869 version numbering regexp list | |
870 change-log-version-number-regexp-list. | |
871 (change-log-find-version): Renamed to | |
872 change-log-version-number-search | |
873 (add-log-file-name-function): New. | |
874 (change-log-search-vc-number): Added END paramaeter. Added doc | |
875 string to function. | |
876 (change-log-version-rcs): Renamed. Was | |
877 change-log-search-vc-number. | |
878 | |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
879 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org> |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
880 |
27026
73a296c0e1ce
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27025
diff
changeset
|
881 * progmodes/compile.el (compilation-goto-locus): Delete hideshow |
73a296c0e1ce
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27025
diff
changeset
|
882 overlays if they interfere. |
73a296c0e1ce
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27025
diff
changeset
|
883 (compilation-find-file): Make intangible overlays tangible. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
884 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
885 * progmodes/hideshow.el: Generally, synch w/ maintainer |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
886 version 5.9. |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
887 |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
888 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
889 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
890 (hs-minor-mode-hook): Don't initialize. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
891 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
892 (hs-special-modes-alist): Rewrite value and docstring. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
893 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
894 (hs-minor-mode-prefix): Delete unused var. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
895 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
896 (hs-block-start-mdata-select): New var, buffer local. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
897 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
898 (hs-headline): New var. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
899 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
900 (hs-match-data, hs-forward-sexp): New funcs. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
901 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
902 (hs-hide-comment-region): New func. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
903 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
904 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point, |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
905 hs-safety-is-job-n, hs-hide-initial-comment-block, |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
906 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning, |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
907 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p, |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
908 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all, |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
909 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level, |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
910 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
911 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
912 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'. |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
913 (hs-isearch-show-temporary): New funcs. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
914 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
915 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
916 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
917 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
918 |
27025
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
919 When constructing menu, use `[(shift button2)]' notation. |
bce3fa1b29a9
*** empty log message ***
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27024
diff
changeset
|
920 |
26988
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
921 1999-12-25 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
922 |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
923 * jka-compr.el (jka-compr-info-file-magic-bytes): New function. |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
924 (jka-compr-compression-info-list): Add new elt to each vector. |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
925 (jka-compr-write-region): Don't compress the data if it is |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
926 already compressed. |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
927 |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
928 * jka-compr.el (jka-compr-really-do-compress): New variable. |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
929 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
930 if visiting. |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
931 (jka-compr-write-region): Set jka-compr-really-do-compress |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
932 if visiting. Test it when deciding to compress. |
ff9ca67c73cd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26971
diff
changeset
|
933 |
26971 | 934 1999-12-22 Gerd Moellmann <gerd@gnu.org> |
935 | |
936 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell | |
937 with third argument t. | |
938 | |
26966 | 939 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com> |
940 | |
941 * antlr-mode.el: Version 1.2 is released. | |
942 (antlr): This package has a web page. | |
943 | |
944 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com> | |
945 | |
946 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting | |
947 regions. Suggested by Dale Davis <Dale_Davis@securify.com>. | |
948 (antlr-mode-map): New binding [C-c C-c]. | |
949 (antlr-mode-menu): New entries. | |
950 | |
951 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com> | |
952 | |
953 * antlr-mode.el: Respect Emacs conventions. | |
954 ((require 'cl)): Only use during compilation. | |
955 (antlr-language-for-option): New function to avoid using `find'. | |
956 (antlr-mode): Use it. | |
957 (antlr-with-syntax-table): Define new instead using XEmacs' one. | |
958 (antlr-imenu-create-index-function): Change accordingly. | |
959 (antlr-inside-rule-p): Ditto. | |
960 (antlr-end-of-rule): Ditto. | |
961 (antlr-end-of-body): Ditto. | |
962 (antlr-beginning-of-rule): Ditto. | |
963 (antlr-indent-line): Ditto. | |
964 | |
965 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com> | |
966 | |
967 * antlr-mode.el: Really use `antlr-tab-offset-alist'. | |
968 (antlr-set-tabs): Don't use hard-coded values. | |
969 | |
970 * antlr-mode.el: Minor navigation changes. Not perfect, but this | |
971 won't be possible without a huge time penalty. | |
972 (antlr-skip-exception-part): Be more specific. | |
973 (antlr-skip-file-prelude): Don't skip action prelude of next rule. | |
974 Renamed from `antlr-skip-grammar-header'. | |
975 (antlr-next-rule): Change accordingly. | |
976 (antlr-end-of-body): Ditto. Better error message. | |
977 (antlr-beginning-of-body): Better error message. | |
978 (antlr-imenu-create-index-function): Skip rule action prelude. | |
979 | |
980 * antlr-mode.el: Minor syntax highlighting changes. | |
981 (antlr-font-lock-default-face): Deletia. | |
982 (antlr-font-lock-tokendef-face): Changed color. | |
983 (antlr-font-lock-tokenref-face): Changed color. | |
984 (antlr-font-lock-literal-face): Changed color. | |
985 (antlr-font-lock-additional-keywords): Minor changes. | |
986 | |
27172
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
987 1999-12-20 Carsten Dominik <cd@gnu.org> |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
988 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
989 * progmodes/idlwave.el: New file. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
990 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
991 * progmodes/idlwave-rinfo.el: New file. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
992 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
993 * progmodes/idlwave-shell.el: New file. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
994 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
995 * progmodes/idlwave-toolbar.el: New file. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
996 |
27182 | 997 * files.el (auto-mode-alist): idlwave-mode default for .pro files. |
27172
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
998 |
26963 | 999 1999-12-21 Gerd Moellmann <gerd@gnu.org> |
1000 | |
1001 * progmodes/cwarn.el: New file. | |
1002 | |
26952 | 1003 1999-12-19 Gerd Moellmann <gerd@gnu.org> |
1004 | |
1005 * bindings.el (completion-ignored-extensions): Add .pdf. | |
1006 | |
26950
903a19771606
Put the version info into binary on MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
26949
diff
changeset
|
1007 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il> |
903a19771606
Put the version info into binary on MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
26949
diff
changeset
|
1008 |
903a19771606
Put the version info into binary on MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
26949
diff
changeset
|
1009 * version.el: Put the version info into binary on MS-DOS as well. |
903a19771606
Put the version info into binary on MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
26949
diff
changeset
|
1010 |
26949 | 1011 1999-12-19 Gerd Moellmann <gerd@gnu.org> |
1012 | |
1013 * emacs-lisp/debug.el (debugger-continue): Don't continue if | |
1014 debugger-may-continue is nil. | |
1015 | |
26942 | 1016 1999-12-18 Dave Love <fx@gnu.org> |
1017 | |
26943 | 1018 * emacs-lisp/cl-macs.el: Remove conditional definition of |
1019 eval-when-compile. Don't specify abs, expt, gethash, | |
1020 hash-table-count, hash-table-p as side-effect-free here. | |
26942 | 1021 (cl-emacs-type): Don't declare. |
1022 (cl-compile-time-init): Remove Emacs 18 compiler patch. | |
1023 (cl-parse-loop-clause): Remove compatibility code. | |
1024 | |
26943 | 1025 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'. |
26942 | 1026 (side-effect-free-fns): Add gethash, hash-table-count. |
1027 (side-effect-and-error-free-fns): Add hash-table-p. | |
1028 | |
26943 | 1029 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend |
1030 `cl-' to autoload names for some hash functions. Don't autoload | |
26942 | 1031 eval-when-compile. Don't provide mini-cl. |
1032 (cl-emacs-type): Remove. | |
1033 (cl-map-extents): Remove compatibility code. | |
1034 | |
27241 | 1035 * emacs-lisp/float.el: Bind free variables. |
1036 | |
1037 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords. | |
26942 | 1038 |
26930 | 1039 1999-12-16 Gerd Moellmann <gerd@gnu.org> |
1040 | |
1041 * bindings.el (completion-ignored-extensions): Add .tfm. | |
1042 | |
26923 | 1043 1999-12-16 Dave Love <fx@gnu.org> |
1044 | |
26929 | 1045 * faces.el (set-face-attribute): Purecopy the attributes set. |
1046 | |
1047 * custom.el (custom-declare-variable): Purecopy value. | |
1048 | |
26943 | 1049 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix. |
26923 | 1050 (byte-extrude-byte-code-vectors): Use remprop. |
1051 (byte-compile-lambda): Check that arg is a lambda. | |
1052 | |
26921 | 1053 1999-11-16 Anders Lindgren <AndersL@andersl.com> |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1054 |
26921 | 1055 * font-lock.el: System for adding and removing keywords. |
1056 Both local (previously added keyword) and global keywords | |
1057 can be removed. | |
1058 (font-lock-remove-keywords): New user-level function. | |
1059 (font-lock-update-removed-keyword-alist): New internal function. | |
1060 (font-lock-removed-keywords-alist): New variable. | |
1061 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'. | |
1062 Empty `font-lock-keywords-alist' when `append' is `set' to avoid | |
1063 growing datastructures. | |
1064 (font-lock-set-defaults): Removes keywords stored in | |
1065 `font-lock-removed-keywords-alist' after local keywords added. | |
1066 | |
1067 1999-12-16 Anders Lindgren <andersl@andersl.com> | |
1068 | |
1069 * font-lock.el (c-keywords, c++-keywords): Better "case" support for | |
1070 complex constant expressions, e.g. "case 1<<A_BIT_NO:". | |
1071 | |
1072 * font-lock.el (c-keywords): Only highlight preprocessor | |
1073 directives when spelled correctly. | |
1074 | |
1075 * font-lock.el (font-lock-match-c++-structor-declaration, | |
1076 c++-keywords): Fontify constructors and destructors with function | |
1077 face inside C++ class declarations. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1078 |
26916 | 1079 1999-12-16 Gerd Moellmann <gerd@gnu.org> |
1080 | |
26919 | 1081 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use |
1082 the shell from sh-shell-file. | |
1083 | |
26916 | 1084 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1. |
1085 | |
26914
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1086 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il> |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1087 |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1088 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1089 if one of the files specified cannot be accessed by |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1090 file-attributes. Do not strip any leading directories from the |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1091 file names, to behave more like `ls' does. |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1092 |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1093 * dired.el (dired-get-filename): Handle absolute file names. |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1094 (dired-readin-insert): If argument is a cons, don't print |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1095 "wildcard" on the ``total'' line. |
09c7b74fa57f
* ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
Eli Zaretskii <eliz@gnu.org>
parents:
26902
diff
changeset
|
1096 |
26902
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26899
diff
changeset
|
1097 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il> |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26899
diff
changeset
|
1098 |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26899
diff
changeset
|
1099 * faces.el (face-read-integer, read-face-attribute) |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26899
diff
changeset
|
1100 (color-defined-p, color-values): Allow color values unspecified-fg |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26899
diff
changeset
|
1101 and unspecified-bg, handle them as unspecified. |
264b83a3a688
Changes for separate unspecified foreground and background colors
Eli Zaretskii <eliz@gnu.org>
parents:
26899
diff
changeset
|
1102 |
27172
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1103 1999-12-15 Carsten Dominik <dominik@astro.uva.nl> |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1104 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1105 * textmodes/reftex.el: (reftex-compile-variables): respect new |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1106 structure of `reftex-index-macro' |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1107 (reftex-compile-variables): Use the changed structure of |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1108 `reftex-label-alist'. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1109 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1110 * textmodes/reftex-vars.el (reftex-index-math-format, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1111 (reftex-toc-max-level): New option. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1112 reftex-index-phrases-search-whole-words, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1113 reftex-index-phrases-case-fold-search, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1114 reftex-index-phrases-skip-indexed-matches, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1115 reftex-index-phrases-wrap-long-lines, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1116 reftex-index-phrases-sort-prefers-entry, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1117 reftex-index-phrases-sort-in-blocks): New options. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1118 (reftex-index-macros): Option structure changed. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1119 (reftex-index-macros-builtin): Added `repeat' item to each entry. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1120 (reftex-label-alist): Additional item in each entry to specify if |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1121 the environment should be listed in the TOC. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1122 (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1123 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1124 * textmodes/reftex-index.el (reftex-index-selection-or-word): No |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1125 longer deals with "repeat". |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1126 (reftex-index): "repeat property in `reftex-index-macro-alist' is |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1127 now used. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1128 (reftex-index-phrases-comment-regexp, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1129 reftex-index-phrases-macrodef-regexp, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1130 reftex-index-phrases-phrase-regexp1, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1131 reftex-index-phrases-phrase-regexp2, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1132 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help): |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1133 New constants. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1134 (reftex-index-phrases-macro-data, reftex-index-phrases-files, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1135 reftex-index-phrases-font-lock-keywords, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1136 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1137 reftex-index-phrases-restrict-file): New variables. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1138 (reftex-index-phrase-selection-or-word, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1139 reftex-index-visit-phrases-buffer, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1140 reftex-index-initialize-phrases-buffer, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1141 reftex-index-phrases-save-and-return, reftex-index-phrases-mode, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1142 reftex-index-next-phrase, reftex-index-this-phrase, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1143 reftex-index-all-phrases, reftex-index-region-phrases, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1144 reftex-index-phrases-parse-header, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1145 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1146 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1147 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1148 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1149 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1150 reftex-index-make-replace-string, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1151 reftex-query-index-phrase-globally, reftex-query-index-phrase, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1152 reftex-index-phrase-match-is-indexed, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1153 reftex-index-phrases-fixup-line, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1154 reftex-index-phrases-replace-space, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1155 reftex-index-select-phrases-macro): New functions. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1156 (reftex-index-globalize, reftex-index-globally): functions removed |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1157 (eval-when-compile (require 'cl)) added. |
27182 | 1158 |
27172
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1159 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1160 for max level. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1161 (reftex-toc-max-level-indicator): New variable. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1162 (reftex-toc-max-level): New command. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1163 (reftex-toc-map): New keybinding `t'. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1164 (reftex-toc-help): Constant updated. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1165 (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1166 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1167 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1168 `t' command key can change `reftex-toc-max-level' |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1169 (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1170 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1171 * textmode/reftex-sel (reftex-insert-docstruct): Respect |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1172 `reftex-toc-max-level' |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1173 (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1174 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1175 * textmodes/reftex-auc.el (eval-when-compile (require 'cl)) |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1176 added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1177 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1178 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl)) |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1179 added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1180 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1181 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1182 commands. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1183 (reftex-citation, reftex-do-citation, |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1184 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1185 preselect a citation format. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1186 (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1187 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1188 * textmodes/reftex-parse.el (reftex-context-substring): Optional |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1189 parameter to-end |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1190 (reftex-section-info): Deal with environment matches. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1191 (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1192 |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1193 * reftex-global.el (eval-when-compile (require 'cl)) added. |
343608575a4f
dded old entries for reftex and idlwave which were not properly interated.
Carsten Dominik <dominik@science.uva.nl>
parents:
27164
diff
changeset
|
1194 |
26899 | 1195 1999-12-15 Kenichi Handa <handa@etl.go.jp> |
1196 | |
1197 The following changes are for the new composition mechanism. We | |
1198 have deleted `composition' charset and composite characters, | |
1199 instead introduced a special text property `composition'. | |
1200 | |
1201 * composite.el: New file. | |
1202 | |
1203 * ps-mule.el: Define encode-composition-rule and find-composition | |
1204 for Emacs 20.4 and the earlier versions. | |
1205 (ps-mule-init-external-library): Just require a feature for | |
1206 external libraries. | |
1207 (ps-mule-prologue): Postscript code modified for new composition. | |
1208 (ps-mule-find-wrappoint): New arg COMPOSITION. | |
1209 (ps-mule-plot-string): Delete code for composite characaters. | |
1210 (ps-mule-plot-composition): New funcion. | |
1211 (ps-mule-prepare-font-for-components): New function. | |
1212 (ps-mule-plot-components): New function. | |
1213 (ps-mule-composition-prologue-generated): Renamed from | |
1214 ps-mule-cmpchar-prologue-generated. | |
1215 (ps-mule-composition-prologue): New named from | |
1216 ps-mule-cmpchar-prologue. Modified for new composition. | |
1217 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar, | |
1218 ps-mule-prepare-cmpchar-font): Deleted. | |
1219 (ps-mule-string-encoding): New arg NO-SETFONT. | |
1220 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon, | |
1221 check Composing, not Cmpchar | |
1222 (ps-mule-initialize): Set ps-mule-composition-prologue-generated | |
1223 to nil. | |
1224 (ps-mule-begin-job): Check existence of new composition. | |
1225 | |
1226 * ps-print.el (ps-plot-region): Handle new composition. | |
1227 | |
1228 * simple.el (what-cursor-position): Show "(composed)" if the | |
1229 character is composed. | |
1230 | |
1231 * international/characters.el: Fix cateogries of Lao symbols. | |
1232 | |
1233 * international/fontset.el (vertical-centering-font-regexp): New | |
1234 variable. | |
1235 | |
1236 * international/mule.el (mule-version): Updated to 5.0 (AOI). | |
1237 (mule-version-date): Updated to 1999.12.7. | |
1238 (with-category-table): New macro. | |
1239 | |
1240 * international/mule-cmds.el (encode-coding-char): Don't check | |
1241 composite character. | |
1242 | |
1243 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2 | |
1244 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2, | |
1245 x-ctext): Give `composition' property t. | |
1246 | |
1247 * international/mule-util.el (set-nested-alist): Set BRANCHES (if | |
1248 non-nil) at the tail of ALIST. | |
1249 (compose-region, decompose-region, decompse-string, | |
1250 reference-point-alist, compose-chars): Moved to composite.el. | |
1251 (compose-chars-component, compose-chars-rule, | |
1252 decompose-composite-char): Deleted. | |
1253 | |
1254 * international/quail.el (quail-install-map): New optional arg | |
1255 NAME. | |
1256 (quail-get-translation): If DEF is a symbol but not a function, | |
1257 ignore it. | |
1258 (quail-start-translation): Put a key sequence undefined in the | |
1259 translation keymap in unread-command-events, not generated-events. | |
1260 Return parameterized event (compose-last-chars N) if the input | |
1261 characters should be composed. | |
1262 (quail-map-definition): If DEF is t, treat it as nil. | |
1263 (quail-delete-last-char): Delete the quail region. | |
1264 (quail-show-translations): Don't show list of translations if the | |
1265 quail package is deterministic. | |
1266 (quail-completion-max-depth): New variable. | |
1267 (quail-completion-1): Pay attention to the above variable. Fix | |
1268 for the case that a translation is a function. | |
1269 (quail-map-from-table, quail-map-from-table-1, | |
1270 quail-map-from-table-2): New functions. | |
1271 (quail-lookup-map-and-concat): New function | |
1272 | |
1273 * language/devan-util.el: Mostly rewritten. | |
1274 | |
1275 * language/lao.el: Register lao-composition-function in | |
1276 composition-function-table. | |
1277 | |
1278 * language/lao-util.el: Mostly rewritten. | |
1279 | |
1280 * language/thai.el: Register thai-composition-function in | |
1281 composition-function-table. | |
1282 (thai-tis620): Delete `pre-write-conversion' property. | |
1283 | |
1284 * language/thai-util.el: (thai-category-table): Make it by | |
1285 make-category-table. | |
1286 (thai-composition-pattern): New variable. | |
1287 (thai-compose-region, thai-compose-string): Use | |
1288 with-category-table. | |
1289 (thai-post-read-conversion): Just call thai-compose-region. | |
1290 (thai-pre-write-conversion): Deleted. | |
1291 (thai-composition-function): New funciton. | |
1292 | |
1293 * language/tibet-util.el: Most functions rewritten. | |
1294 (tibetan-char-p): Renamed from tibetan-char-examin. | |
1295 (tibetan-composable-examin) (tibetan-complete-char-examin) | |
1296 (tibetan-vertical-stacking) (tibetan-composition): Deleted. | |
1297 (tibetan-add-components): New function. | |
1298 (tibetan-composition-function): New function. | |
1299 | |
1300 * language/tibetan.el: Register tibetan-composition-function in | |
1301 composition-function-table. | |
1302 (tibetan-composable-pattern): New variable. | |
1303 (tibetan-subjoined-transcription-alist): Change key "R" to "+R". | |
1304 (tibetan-precomposition-rule-alist): Move punctuations to | |
1305 tibetan-punctuation-transcription-alist and | |
1306 tibetan-obsolete-glyphs. | |
1307 (tibetan-punctuation-transcription-alist): New variable. | |
1308 (tibetan-obsolete-glyphs): New variable. | |
1309 (tibetan-regexp): Improve the initialization code. | |
1310 | |
1311 * textmodes/fill.el (fill-find-break-point): Delete codes for | |
1312 composite characters. | |
1313 (fill-region-as-paragraph): Likewise. | |
1314 | |
26830 | 1315 1999-12-14 Gerd Moellmann <gerd@gnu.org> |
1316 | |
26833 | 1317 * international/mule-cmds.el (default-input-method): Specify |
1318 that it should be set after current-language-environment. | |
1319 | |
1320 * custom.el (custom-handle-keyword): Add :set-after. | |
1321 (custom-add-dependencies): New function. | |
1322 (custom-set-variables): Take dependencies between args into | |
1323 account. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1324 |
26830 | 1325 * battery.el (battery): Doc fix. |
1326 | |
26821 | 1327 1999-12-12 Gerd Moellmann <gerd@gnu.org> |
1328 | |
1329 * progmodes/cc-make.el: Removed. | |
1330 | |
26818 | 1331 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> |
1332 | |
1333 * Release of cc-mode 5.26 | |
1334 | |
1335 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1336 | |
1337 * cc-cmds.el (c-forward-conditional): Handle an arbitrary | |
1338 target depth. Optionally count #else lines as clause limits, | |
1339 as suggested by don provan <provan@lucent.com>. #elif | |
1340 handling fixed. | |
1341 | |
1342 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional) | |
1343 (c-down-conditional-with-else): New commands that uses the | |
1344 added functionality in `c-forward-conditional'. | |
1345 | |
1346 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1347 | |
1348 * cc-align.el (c-lineup-comment): Preserve the alignment with | |
1349 a comment on the previous line instead of preserving the | |
1350 comment-column. | |
1351 | |
1352 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1353 | |
1354 * Fixes to IDL mode after input from Eric Eide | |
1355 <eeide@cs.utah.edu>: | |
1356 * cc-engine.el (c-beginning-of-statement-1): Allow | |
1357 `c-conditional-key' to be nil, for the benefit of IDL mode. | |
1358 * cc-engine.el (c-guess-basic-syntax): Ditto. | |
1359 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class' | |
1360 but do match CORBA 2.3 `valuetype'. | |
1361 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil | |
1362 for IDL. | |
1363 * cc-langs.el (c-IDL-conditional-key): New defconst. Should | |
1364 be nil for IDL. | |
1365 * cc-langs.el (c-IDL-comment-start-regexp): New defconst. | |
1366 Like C++. | |
1367 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also, | |
1368 set `c-method-key' and `c-baseclass-key' to nil. | |
1369 | |
1370 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1371 | |
1372 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes | |
1373 with nonhanging open braces. | |
1374 | |
1375 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1376 | |
1377 * cc-align.el: Added docstrings to all lineup functions. | |
1378 | |
1379 * cc-align.el (c-lineup-java-throws): Handle a hanging throws | |
1380 keyword. | |
1381 | |
1382 * cc-align.el (c-lineup-C-comments): Handle free form text | |
1383 comments. Use c-comment-prefix-regexp and comment-start-skip | |
1384 instead of hardcoded regexps. | |
1385 | |
1386 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1387 | |
1388 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob | |
1389 behavior and return value as documented. | |
1390 | |
1391 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1392 | |
1393 * Changes for new style variable init system: | |
1394 * cc-langs.el (c-common-init): Dito. | |
1395 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's | |
1396 now customizable. | |
1397 * cc-vars.el: Style variables may now take a value | |
1398 'set-from-style to make them take their value from the style | |
1399 system. This value is now the default on all these variables. | |
1400 * cc-vars.el (c-valid-offset): New function to verify a | |
1401 syntactic symbol offset setting. | |
1402 * cc-vars.el (c-offsets-alist): Variable moved from | |
1403 cc-styles.el since it's now customizable in a similar way to | |
1404 the other style variables. | |
1405 * cc-vars.el (c-old-style-variable-behavior): New variable to | |
1406 revert to the old style init behavior. | |
1407 | |
1408 * cc-vars.el (c-file-style, c-file-offsets): Made always | |
1409 buffer local. | |
1410 | |
1411 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match | |
1412 the throws clause that might follow the function prototype in | |
1413 C++. | |
1414 | |
1415 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1416 | |
1417 * cc-defs.el (c-beginning-of-macro): Fixed bug where point | |
1418 could move forward for macros that doesn't start in column 0. | |
1419 | |
1420 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1421 | |
1422 * cc-align.el (c-indent-multi-line-block, | |
1423 c-lineup-whitesmith-in-block): Two new lineup functions for | |
1424 use in whitesmith style. | |
1425 | |
1426 * cc-styles.el (c-style-alist): More fixes to whitesmith | |
1427 style. It should now handle all different braces uniformly in | |
1428 both hanging and non-hanging cases. | |
1429 | |
1430 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1431 | |
1432 * cc-cmds.el (c-indent-exp): Use a marker to save point to | |
1433 make it stay in the same position relative to the surrounding | |
1434 text. | |
1435 | |
1436 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix | |
1437 when adaptive-fill-mode doesn't manage to get it correct. | |
1438 | |
1439 * cc-menus.el (cc-imenu-java-generic-expression): Handle types | |
1440 with dotted notation, e.g. foo.bar.Gnu. | |
1441 | |
1442 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls | |
1443 within unwind-protect (previously only some were wrapped so it | |
1444 would be possible to register mode initialization when full | |
1445 initialization did not finish). | |
1446 | |
1447 * cc-styles.el (c-style-alist): Corrected the brace placement | |
1448 in the whitesmith style. Thanks to Sean Luke | |
1449 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith | |
1450 styles with consistent brace placement for all constructs. | |
1451 | |
1452 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1453 | |
1454 * cc-cmds.el (c-context-line-break): Continue C++ comments too | |
1455 when point is in the middle of them. | |
1456 | |
1457 * cc-cmds.el: Line breaking and paragraph filling code | |
1458 rewritten: | |
1459 (c-guess-fill-prefix): New function that uses various | |
1460 heuristics to guess the comment prefix. | |
1461 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'. | |
1462 It now assumes adaptive filling is active to preserve the line | |
1463 prefix inside comments. | |
1464 (c-indent-new-comment-line): Replacement for the now | |
1465 obsolete `c-comment-line-break-function' that uses | |
1466 `c-guess-fill-prefix' when appropriate. It now observes the | |
1467 setting of `comment-multi-line', which has effect in C-style | |
1468 block comments. | |
1469 | |
1470 * cc-cmds.el (c-context-line-break): New function intended to | |
1471 be put on RET. It's essentially `newline-and-indent', but | |
1472 continues C block comments with the appropriate line prefix. | |
1473 | |
1474 * cc-cmds.el (c-do-auto-fill): New function put on | |
1475 `normal-auto-fill-function' to implement the | |
1476 `c-ignore-auto-fill' variable. | |
1477 | |
1478 * cc-cmds.el (c-beginning-of-statement): Use | |
1479 `c-comment-prefix-regexp' to avoid ending up inside the | |
1480 comment prefix. Better handling of comment starters and | |
1481 enders. Catch comments better when traversing code. Stop at | |
1482 preprocessor directives. | |
1483 | |
1484 * cc-defs.el (c-forward-comment): New subst to hide platform | |
1485 dependent quirks in `forward-comment'. | |
1486 | |
1487 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER | |
1488 argument. | |
1489 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER | |
1490 arguments. Activate this function by default when | |
1491 `parse-partial-sexp' supports it (currently Emacs 20.x). | |
1492 | |
1493 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax | |
1494 on the comment opener to make constants usable as lineup | |
1495 arguments. | |
1496 | |
1497 * cc-align.el (c-lineup-C-comments): Fixes to handle the | |
1498 changed anchor position in the `c' syntactic symbol. Handle | |
1499 more than stars in the comment prefix; use the new variable | |
1500 `c-comment-prefix-regexp'. Don't indent text not preceded by | |
1501 a comment prefix to the right of the comment opener if it's | |
1502 long. | |
1503 | |
1504 * cc-langs.el: Fixes to mode initialization for new line | |
1505 breaking and paragraph filling method. Adaptive fill mode is | |
1506 now activated at startup instead of deactivated. The | |
1507 variables used for adaptive filling and paragraph movement are | |
1508 also changed to incorporate the value of | |
1509 `c-comment-prefix-regexp'. `substitute-key-definition' is | |
1510 used to override some functions in the global map instead of | |
1511 overriding their default bindings. | |
1512 | |
1513 * cc-mode.el (java-mode): Modify `paragraph-start' for the | |
1514 javadoc markup at mode init. | |
1515 | |
1516 * cc-mode.el (c-setup-filladapt): A new convenience function | |
1517 to configure Kyle E. Jones' Filladapt mode for CC Mode. This | |
1518 function is intended to be used explicitly by the end user | |
1519 only. | |
1520 | |
1521 * cc-vars.el (c-comment-prefix-regexp): New variable used to | |
1522 recognize the comment fill prefix inside comments. | |
1523 (c-block-comment-prefix): New name for | |
1524 `c-comment-contiuation-stars', which is now obsolete. It's | |
1525 generalized to handle any character sequence. | |
1526 (c-ignore-auto-fill): New variable used to selectively disable | |
1527 Auto Fill mode in specific contexts. | |
1528 | |
1529 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1530 | |
1531 * cc-cmds.el (c-comment-indent): Leave at least one space | |
1532 between the comment and the last nonblank character in the | |
1533 case where we look at the indentation of the comment on the | |
1534 previous line (case 4). | |
1535 | |
1536 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the | |
1537 list of characters that may start a statement (it's a sort of | |
1538 prefix operator in Pike, and isn't used at all in any of the | |
1539 other languages). | |
1540 | |
1541 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1542 | |
1543 * cc-engine.el (c-guess-basic-syntax): Report brace list opens | |
1544 inside continued statements as statement-cont instead of | |
1545 brace-list-open. The reason is that one normally adjusts | |
1546 brace-list-open for brace lists as top-level constructs, and | |
1547 brace lists inside statements is a completely different | |
1548 context. Case 10B.2 changed. Also changed (the somewhat | |
1549 esoteric) case 9A to cope with this. | |
1550 | |
1551 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1552 | |
1553 * cc-cmds.el (c-electric-brace): Added electric handling of | |
1554 the open brace for brace-elseif-brace. | |
1555 | |
1556 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1557 | |
1558 * cc-defs.el (c-with-syntax-table): New macro to easily switch | |
1559 syntax tables temporarily. | |
1560 | |
1561 * cc-engine.el (c-guess-basic-syntax): Handle template and | |
1562 member init argument lists split over several lines. Case 5D | |
1563 changed. | |
1564 | |
1565 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag | |
1566 @throws introduced in Javadoc 1.2. | |
1567 | |
1568 * cc-menus.el (cc-imenu-java-generic-expression): Applied | |
1569 patch from RMS to avoid infinite backtracking. | |
1570 | |
1571 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1572 | |
1573 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded | |
1574 by [ ]. | |
1575 | |
1576 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1577 | |
1578 * cc-align.el (c-lineup-dont-change): Compensate properly for | |
1579 the column in langelem. | |
1580 | |
1581 * cc-engine.el (c-syntactic-information-on-region): New | |
1582 function to help debugging the syntactic analysis. | |
1583 | |
1584 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1585 | |
1586 * cc-align.el (c-lineup-template-args): Handle nested template | |
1587 arglists. | |
1588 | |
1589 * cc-langs.el (c++-template-syntax-table): New syntax table | |
1590 that makes `<' and `>' parenthesis characters, which is useful | |
1591 to switch to temporarily when analyzing template arglists. | |
1592 | |
1593 * cc-styles.el: Changed default alignment of labels in the | |
1594 java style to conform to the examples in the Java Language | |
1595 Specification. | |
1596 | |
1597 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args' | |
1598 by default. | |
1599 | |
1600 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1601 | |
1602 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma | |
1603 immediately before the closing paren in an arglist, so don't | |
1604 check that in Pike mode. Case 7A changed. | |
1605 | |
1606 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1607 | |
1608 * cc-cmds.el (c-indent-region): Fixed bug where comment-only | |
1609 lines were ignored under certain conditions. | |
1610 | |
1611 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1612 | |
1613 * cc-align.el (c-lineup-template-args): New function for | |
1614 aligning continued template argument lists. | |
1615 | |
1616 * cc-engine.el (c-guess-basic-syntax): Fix for member init | |
1617 lists containing function arglists split over several lines. | |
1618 Case 5D.1 changed. | |
1619 | |
1620 * cc-engine.el (c-guess-basic-syntax): Fixed bug where | |
1621 template-args-cont didn't get recognized when the first | |
1622 arglist opener line doesn't contain a template argument. New | |
1623 case 5K. | |
1624 | |
1625 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1626 | |
1627 * cc-defs.el (c-point): Changed from subst to macro for | |
1628 efficiency. | |
1629 (c-beginning-of-defun-1, c-end-of-defun-1): New | |
1630 beginning-of-defun/end-of-defun wrappers separated from | |
1631 c-point. | |
1632 | |
1633 * cc-menus.el (imenu-generic-expression, | |
1634 imenu-case-fold-search, imenu-progress-message): Dummy | |
1635 definitions to avoid compiler warnings if imenu can't be | |
1636 loaded. | |
1637 * cc-menus.el (cc-imenu-init): New function called at mode | |
1638 init. | |
1639 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved | |
1640 imenu initializations to cc-imenu-init. | |
1641 | |
1642 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1643 | |
1644 * cc-engine.el (c-guess-basic-syntax): Slightly better check | |
1645 for lambda-intro-cont in Pike mode. Case 6 changed. | |
1646 | |
1647 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where | |
1648 anything following "new Foo()" was considered an anonymous | |
1649 class body in Java mode. | |
1650 | |
1651 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org> | |
1652 | |
1653 * cc-cmds.el (c-comment-line-break-function): When breaking in | |
1654 a string, don't insert a new line. | |
1655 | |
1656 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org> | |
1657 | |
1658 * cc-engine.el (c-at-toplevel-p): New interface function which | |
1659 returns information useful to add-on authors. It tells you | |
1660 whether you're at a toplevel statement or not. | |
1661 | |
1662 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org> | |
1663 | |
1664 * cc-cmds.el (c-comment-line-break-function): It is possible | |
1665 that forward-line does not land us at the bol, say if we're on | |
1666 the last line in a file. In that case, do a | |
1667 back-to-indentation instead of a forward-comment -1. | |
1668 | |
1669 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1670 | |
1671 * cc-engine.el (c-beginning-of-statement-1): Don't catch | |
1672 "default:" as normal label in case 4. | |
1673 | |
1674 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1675 | |
1676 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to | |
1677 recognize continued bitfield declarations. Case 5D.1 changed. | |
1678 * cc-langs.el: New variable c-bitfield-key. | |
1679 * cc-mode.el: New variable c-bitfield-key. | |
1680 | |
1681 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org> | |
1682 | |
1683 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java | |
1684 anonymous array expressions (i.e. "new Foo[] {.. bracelist | |
1685 ..}"). | |
1686 | |
26816 | 1687 1999-12-12 Dave Love <fx@gnu.org> |
1688 | |
26943 | 1689 * mail/footnote.el: Require cl when compiling. Don't autoload |
1690 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays. | |
26816 | 1691 (footnote-insert-text-marker, Footnote-insert-pointer-marker): |
1692 Avoid `acons'. | |
1693 (footnote-mode-line-string, Footnote-add-footnote): Remove | |
1694 autoload cookie. | |
1695 | |
26814 | 1696 1999-12-12 Richard Sharman <rsharman@pobox.com> |
1697 | |
1698 * sh-script.el: Fix for when font-lock mode is active. | |
1699 (sh-font-lock-unfontify-region-function): New function. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1700 |
26812
7afb74b5999e
(menu-bar-edit-menu): Define the Spell submenu even
Eli Zaretskii <eliz@gnu.org>
parents:
26811
diff
changeset
|
1701 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il> |
7afb74b5999e
(menu-bar-edit-menu): Define the Spell submenu even
Eli Zaretskii <eliz@gnu.org>
parents:
26811
diff
changeset
|
1702 |
7afb74b5999e
(menu-bar-edit-menu): Define the Spell submenu even
Eli Zaretskii <eliz@gnu.org>
parents:
26811
diff
changeset
|
1703 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even |
7afb74b5999e
(menu-bar-edit-menu): Define the Spell submenu even
Eli Zaretskii <eliz@gnu.org>
parents:
26811
diff
changeset
|
1704 if start-process is not bound, since Ispell now supports such |
7afb74b5999e
(menu-bar-edit-menu): Define the Spell submenu even
Eli Zaretskii <eliz@gnu.org>
parents:
26811
diff
changeset
|
1705 platforms as well. |
7afb74b5999e
(menu-bar-edit-menu): Define the Spell submenu even
Eli Zaretskii <eliz@gnu.org>
parents:
26811
diff
changeset
|
1706 |
26811 | 1707 1999-12-12 Gerd Moellmann <gerd@gnu.org> |
1708 | |
1709 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to | |
1710 rmail-summary-goto-msg. | |
1711 | |
1712 * files.el (after-find-file): Fix previous change. | |
1713 | |
1714 1999-12-11 Dave Love <fx@gnu.org> | |
1715 | |
1716 * help.el (where-is): Use `commandp' as predicate for | |
26806 | 1717 `completing-read' |
1718 | |
26804
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1719 1999-12-10 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1720 |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1721 * cus-edit.el (custom-save-delete): Delete all occurrences, |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1722 leave point where the first occurrence was. |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1723 (custom-save-faces): Insert a newline at the end of the comment. |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1724 Avoid a double newline there. |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1725 If final closeparen is at bol, put a space before it. |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1726 (custom-save-variables): Likewise. |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1727 (custom-file): Doc fix. |
ce54b1d60246
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26799
diff
changeset
|
1728 |
26799 | 1729 1999-12-10 Gerd Moellmann <gerd@gnu.org> |
1730 | |
1731 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of | |
1732 regexp matching image and audio files. | |
1733 | |
26785 | 1734 1999-12-09 Dave Love <fx@gnu.org> |
1735 | |
1736 * mail/footnote.el: New file. | |
1737 | |
26780 | 1738 1999-12-09 Gerd Moellmann <gerd@gnu.org> |
1739 | |
1740 * files.el (after-find-file): Use auto-save-visited-file-name if | |
1741 set. | |
1742 | |
1743 * mail/feedmail.el (feedmail-find-eoh): Take | |
1744 feedmail-queue-alternative-mail-header-separator into account. | |
1745 | |
26777
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1746 1999-12-09 Stefan Monnier <monnier@cs.yale.edu> |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1747 |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1748 * smerge-mode.el: New file. |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1749 |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1750 * font-lock.el (font-lock-multiline): New variable. |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1751 (font-lock-add-keywords): Rename `major-mode' into `mode'. |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1752 (font-lock-remove-keywords): Added a dummy `mode' argument for |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1753 potential future support. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1754 (font-lock-fontify-anchored-keywords, |
26777
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1755 (font-lock-fontify-keywords-region): Only handle multiline strings |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1756 if necessary (avoids a pathological behavior in (f.ex) diff-mode). |
bdcf3193d59a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26774
diff
changeset
|
1757 |
26772
409c955897d7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26760
diff
changeset
|
1758 1999-12-08 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
409c955897d7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26760
diff
changeset
|
1759 |
26774
57be3cdaebfb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26772
diff
changeset
|
1760 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f. |
57be3cdaebfb
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26772
diff
changeset
|
1761 |
26772
409c955897d7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26760
diff
changeset
|
1762 * dired-aux.el (dired-insert-subdir): Add autoload cookie. |
409c955897d7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26760
diff
changeset
|
1763 |
26760 | 1764 1999-12-07 Dave Love <fx@gnu.org> |
1765 | |
1766 * help.el (view-emacs-problems): New command, bound to C-h P. | |
1767 | |
1768 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems. | |
1769 | |
26744
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1770 1999-12-07 Stefan Monnier <monnier@cs.yale.edu> |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1771 |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
1772 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change. |
26748
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1773 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map): |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1774 New code to support the minor mode version. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1775 (diff-recenter): New function. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1776 (diff-next-hunk, diff-next-file): Use it. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1777 (diff-remembered-files-alist): New var. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1778 (diff-merge-strings): New function. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1779 (diff-find-file-name): Make it smarter and use the user's input more. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1780 (diff-mode): Cosmetic changes. |
8b8438e9ac12
* diff-mode.el (diff-mode-shared-map): fset'd and doc change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26747
diff
changeset
|
1781 |
26744
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1782 * files.el (save-some-buffers): Turn EXITING into the more general |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1783 PRED argument to allow specifying a subset of buffers. |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1784 |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1785 * simple.el (kill-region): Use the new `delete-and-extract-region' |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1786 rather than the undo log (which is incorrect with *-change-functions). |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1787 |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1788 * font-lock.el (font-lock-default-fontify-region): Fix subtle |
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1789 off-by-one problem that could force re-fontifying the whole buffer. |
26747
a65919d40cd0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26744
diff
changeset
|
1790 (font-lock-remove-keywords): New function. |
a65919d40cd0
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26744
diff
changeset
|
1791 (font-lock-add-keywords): Use the new function to ensure idempotence. |
26744
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1792 |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26739
diff
changeset
|
1793 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu> |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1794 |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26739
diff
changeset
|
1795 * viper-cmd.el (viper-minibuffer-standard-hook, |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
1796 viper-minibuffer-real-start): Mew functions. |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26739
diff
changeset
|
1797 (viper-read-string-with-history,viper-file-add-suffix, |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
1798 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the |
26743
2ddbff6366e9
* viper-cmd.el (viper-minibuffer-standard-hook,
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26739
diff
changeset
|
1799 change in the status of the minibuffer prompt. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1800 |
26739 | 1801 1999-12-06 Gerd Moellmann <gerd@gnu.org> |
1802 | |
1803 * comint.el (comint-redirect-results-list) | |
1804 (comint-redirect-results-list-from-process): Remove interactive | |
1805 spec. | |
1806 | |
26738
407a5a4056e8
(info-node, info-menu-5, info-xref): Define colors for Info faces if
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1807 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il> |
407a5a4056e8
(info-node, info-menu-5, info-xref): Define colors for Info faces if
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1808 |
407a5a4056e8
(info-node, info-menu-5, info-xref): Define colors for Info faces if
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1809 * info.el (info-node, info-menu-5, info-xref): Define colors for |
407a5a4056e8
(info-node, info-menu-5, info-xref): Define colors for Info faces if
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1810 Info faces if the display supports them. |
407a5a4056e8
(info-node, info-menu-5, info-xref): Define colors for Info faces if
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1811 |
26736
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1812 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il> |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1813 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1814 Changes for automatic remapping of X colors on terminal frames: |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1815 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1816 * term/pc-win.el (msdos-setup-initial-frame): New function, run by |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1817 term-setup-hook. Call msdos-remember-default-colors and |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1818 msdos-handle-reverse-video. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1819 (msdos-face-setup): Parts of code moved to |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1820 msdos-setup-initial-frame. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1821 (msdos-handle-reverse-video): New function, modeled after |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1822 x-handle-reverse-video. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1823 (make-msdos-frame): Don't use initial-frame-alist and |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1824 default-frame-alist. Call msdos-handle-reverse-video. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1825 (msdos-color-aliases): Remove. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1826 (msdos-color-translate, msdos-approximate-color): Remove. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1827 (msdos-color-values): Use 16-bit RGB values. RGB values updated |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1828 for better approximation of X colors. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1829 (msdos-face-setup): Call tty-color-clear. Remove code that sets |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1830 up tty-color-alist (it is now on startup.el). |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1831 (x-display-color-p, x-color-defined-p, x-color-values, |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1832 x-defined-colors, face-color-supported-p, face-color-gray-p): |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1833 Remove. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1834 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1835 * facemenu.el (facemenu-read-color, list-colors-display): Use |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1836 defined-colors for all frame types. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1837 (facemenu-color-equal): Use color-values for all frame types. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1838 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1839 * faces.el (read-face-attribute): For :foreground and :background |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1840 attributes and frames on character terminals, translate the color |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1841 to the closest supported one before looking it up in the list of |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1842 valid values. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1843 (face-valid-attribute-values): Call defined-colors for all types |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1844 of frames. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1845 (defined-colors, color-defined-p, color-values, display-color-p): |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1846 New finctions. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1847 (x-defined-colors, x-color-defined-p, x-color-values, |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1848 x-display-color-p): Aliases for the above. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1849 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1850 * startup.el (command-line): Register terminal colors for frame |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1851 types other than x and w32, but only if the terminal supports |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1852 colors. Call tty-color-define instead of face-register-tty-color. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1853 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1854 * term/x-win.el (xw-defined-colors): Renamed from |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1855 x-defined-colors. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1856 * term/w32-win.el (xw-defined-colors): Likewise. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1857 |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1858 * term/tty-colors.el: New file. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1859 * loadup.el: Load term/tty-colors. |
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
26733
diff
changeset
|
1860 |
26733 | 1861 1999-12-06 Dave Love <fx@gnu.org> |
1862 | |
1863 * ffap.el: Autoload the ffap alias directly. | |
1864 | |
26727 | 1865 1999-12-06 Inge Frick <inge@nada.kth.se> |
1866 | |
1867 * dired-aux.el (dired-do-shell-command): Changed documentation. | |
1868 (dired-shell-stuff-it): A `?' in COMMAND has now the same | |
1869 meaning as `*'. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1870 |
26721 | 1871 1999-12-06 Gerd Moellmann <gerd@gnu.org> |
1872 | |
26724 | 1873 * simple.el (insert-buffer): Doc fix. |
1874 | |
26721 | 1875 * apropos.el (apropos-mode): Add autoload cookie. |
1876 | |
1877 1999-12-06 Sam Steingold <sds@goems.com> | |
1878 | |
1879 * progmodes/etags.el (etags-tags-completion-table): Modified the | |
1880 regexp to allow for the CL symbols starting with `+*'. | |
1881 (tags-completion-table): Doc fix (it's an obarray, not an alist). | |
1882 (tags-completion-table, tags-recognize-empty-tags-table): Remove | |
1883 `function' quoting lambda. | |
1884 (tags-with-face): New macro. | |
1885 (list-tags, tags-apropos): Use it. | |
1886 (tags-apropos-additional-actions): New user option. | |
1887 (etags-tags-apropos-additional): Use it. | |
1888 (tags-apropos): Call etags-tags-apropos-additional. | |
1889 (tags-apropos-verbose): New user option. | |
1890 (etags-tags-apropos): Use it. | |
1891 (visit-tags-table-buffer, next-file): Use `unless'. | |
1892 (recognize-empty-tags-table): Renamed to | |
1893 tags-recognize-empty-tags-table. | |
1894 (complete-tag): Call tags-complete-tag bypassing try-completion. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1895 |
26717 | 1896 1999-12-06 Kenichi Handa <handa@etl.go.jp> |
1897 | |
1898 * international/mule.el (set-buffer-file-coding-system): Docstring | |
1899 modified. | |
1900 | |
26712 | 1901 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de> |
1902 | |
1903 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support | |
1904 using the hideshow package. | |
1905 (hs-special-modes-alist): Added entry for bibtex to allow the use | |
1906 of the hideshow package. | |
1907 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is | |
1908 not longer provided by bibtex.el directly. Instead the hideshow | |
1909 package should be used. | |
1910 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete | |
1911 references to bibtex-hide-entry-bodies. | |
1912 | |
1913 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
1914 | |
1915 * textmodes/bibtex.el: Copyright notice is up to date. Moved | |
1916 maintainer information closer to the beginning of the bibtex.el | |
1917 file. | |
1918 (bibtex-maintainer-salutation): New constant. | |
1919 (bibtex-version): New constant. | |
1920 (bibtex-submit-bug-report): Use bibtex-version and | |
1921 bibtex-maintainer-salutation. | |
1922 (bibtex-entry-field-alist): Made booktitle field optional for | |
1923 @inproceedings entries when crossreferenced. | |
1924 (bibtex-entry-field-alist): Added booktitle field to proceedings | |
1925 entry type (for cross referencing). Thanks to Wagner Toledo Correa | |
1926 for the suggestion. | |
1927 (bibtex-string-file-path): Fixed typo. | |
1928 | |
1929 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl> | |
1930 | |
1931 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &' | |
1932 for reftex.el. | |
1933 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex' | |
1934 to menu. | |
1935 | |
26708 | 1936 1999-12-04 Dave Love <fx@gnu.org> |
1937 | |
1938 * delsel.el: Revert previous change -- region is significant to | |
1939 skeleton. | |
1940 | |
26702
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26692
diff
changeset
|
1941 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu> |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26692
diff
changeset
|
1942 |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26692
diff
changeset
|
1943 * viper-cmd.el (viper-change-state): Use |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26692
diff
changeset
|
1944 viper-ESC-moves-cursor-back to decide whether to move the cursor |
8be2b52389a5
* viper-cmd.el (viper-change-state): Use
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26692
diff
changeset
|
1945 back. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1946 |
26692 | 1947 1999-12-03 Kenichi Handa <handa@mule.m17n.org> |
1948 | |
1949 * international/mule-util.el (truncate-string-to-width): Docsting | |
1950 fixed. | |
1951 | |
26690
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1952 1999-12-02 Stefan Monnier <monnier@cs.yale.edu> |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1953 |
26692 | 1954 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious |
26690
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1955 use of `cond'. |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1956 (lm-with-file): Move all the find-file...kill-buffer stuff into |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1957 this macro. Make it use `find-file-noselect' and make it kill |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1958 the buffer only if it wasn't already displayed somewhere. |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1959 (lm-summary, lm-authors, lm-maintainer, lm-creation-date) |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1960 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by) |
26692 | 1961 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file. |
26744
f14026cd9767
(kill-region): Use the new `delete-and-extract-region'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26743
diff
changeset
|
1962 (lm-commentary): Fix to handle the case when the change log is |
26690
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1963 at the end of the file. |
1006a8324029
(lm-header-multiline): fix spurious use of `cond'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26689
diff
changeset
|
1964 |
26689 | 1965 1999-12-02 Kenichi Handa <handa@etl.go.jp> |
1966 | |
1967 * international/mule.el (charsetp): Fix typo in docstring. | |
1968 | |
1969 * international/mule-diag.el (list-coding-categories): Fix typo; | |
1970 automatic -> autoload. | |
1971 | |
26676 | 1972 1999-12-02 Gerd Moellmann <gerd@gnu.org> |
1973 | |
26686 | 1974 * vc.el (vc-update-change-log): Look for rcs2log under |
1975 exec-directory. | |
1976 | |
26683 | 1977 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change |
1978 outline-regexp, add outline-level. | |
1979 (lisp-outline-level): New. | |
1980 | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
1981 * calendar/appt.el (appt-convert-time): Handle "12:MMam", |
26681 | 1982 remove extraneous string-match. |
1983 | |
26676 | 1984 * finder.el (finder-commentary): Activate Finder mode. |
1985 | |
26674 | 1986 1999-12-01 Anders Lindgren <andersl@andersl.com> |
1987 | |
1988 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned | |
1989 off when reverting buffers that contained mode specifiers. | |
1990 `revert-buffer' is now called with non-nil PRESERVE-MODES | |
1991 argument. | |
1992 | |
26672 | 1993 1999-12-01 Dave Love <fx@gnu.org> |
1994 | |
1995 * delsel.el: Grok skeleton-pair-insert-maybe. | |
1996 | |
26668
d36fa3fb6939
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26666
diff
changeset
|
1997 1999-11-30 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
d36fa3fb6939
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26666
diff
changeset
|
1998 |
d36fa3fb6939
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26666
diff
changeset
|
1999 * progmodes/cperl-mode.el (cperl-under-as-char): |
d36fa3fb6939
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26666
diff
changeset
|
2000 Use nil as default. |
d36fa3fb6939
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26666
diff
changeset
|
2001 |
26660 | 2002 1999-11-30 Gerd Moellmann <gerd@gnu.org> |
2003 | |
2004 * speedbar.el (toplevel): Remove compatibility code for Emacs | |
2005 versions without custom.el. | |
2006 | |
26658 | 2007 1999-11-30 Dave Love <fx@gnu.org> |
2008 | |
26943 | 2009 * progmodes/fortran.el (fortran-strip-sequence-nos): New command. |
26666 | 2010 |
26662 | 2011 * autoinsert.el: Minor doc fixes. |
2012 (auto-insert): Return nil. | |
2013 | |
26658 | 2014 * faces.el (set-face-documentation): Purecopy STRING. |
2015 | |
26654 | 2016 1999-11-29 Dave Love <fx@gnu.org> |
2017 | |
26656 | 2018 * derived.el: Doc fixes, remove old backquote syntax. |
2019 | |
26654 | 2020 * cus-edit.el (custom-save-variables, custom-save-faces): Write a |
2021 comment warning about editing. | |
2022 | |
26651 | 2023 * help.el (help-mode-hook): Define. |
2024 | |
26649 | 2025 1999-11-29 Gerd Moellmann <gerd@gnu.org> |
2026 | |
2027 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct | |
2028 invalid translation of old-style backquote syntax to new syntax. | |
2029 | |
26636
36564a827d06
Makefile (DONTCOMPILE): Add term/internal.el
Eli Zaretskii <eliz@gnu.org>
parents:
26628
diff
changeset
|
2030 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il> |
36564a827d06
Makefile (DONTCOMPILE): Add term/internal.el
Eli Zaretskii <eliz@gnu.org>
parents:
26628
diff
changeset
|
2031 |
36564a827d06
Makefile (DONTCOMPILE): Add term/internal.el
Eli Zaretskii <eliz@gnu.org>
parents:
26628
diff
changeset
|
2032 * Makefile (DONTCOMPILE): Add term/internal.el. |
36564a827d06
Makefile (DONTCOMPILE): Add term/internal.el
Eli Zaretskii <eliz@gnu.org>
parents:
26628
diff
changeset
|
2033 |
26628 | 2034 1999-11-26 Dave Love <fx@gnu.org> |
2035 | |
2036 * comint.el: Fix last change. | |
2037 | |
2038 * emacs-lisp/advice.el: Fix last change. | |
2039 | |
26626
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2040 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2041 |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2042 * cus-edit.el (Custom-reset-standard): Doc fix. |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2043 (custom-variable-reset-standard): Doc fix. |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2044 (custom-face-reset-standard): Doc fix. |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2045 (custom-face-menu): "Reset to Standard" => "Erase Customization". |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2046 (custom-variable-menu): Likewise. |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2047 (custom-reset-menu): Likewise. |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2048 (custom-buffer-create-internal): Likewise. |
ecc4acdd96a9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26624
diff
changeset
|
2049 |
26624 | 2050 1999-11-26 Dave Love <fx@gnu.org> |
2051 | |
2052 * progmodes/make-mode.el (makefile-mode-hook): Customize. | |
2053 | |
2054 * font-lock.el: Doc fixes. | |
2055 | |
2056 * menu-bar.el (menu-bar-mode): Customize. | |
2057 | |
2058 * cus-start.el: Add use-dialog-box. | |
2059 | |
2060 * add-log.el (change-log-mode-hook): Customize. | |
2061 (add-log-current-defun): Use | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2062 fortran-{beginning,end}-of-subprogram. |
26624 | 2063 |
26623
92f785e7552d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26617
diff
changeset
|
2064 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
92f785e7552d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26617
diff
changeset
|
2065 |
92f785e7552d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26617
diff
changeset
|
2066 * emacs-lisp/advice.el: Many doc fixes. |
26617
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2067 |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2068 * comint.el (comint-preoutput-filter-functions): Doc fix. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2069 |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2070 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2071 |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2072 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine): |
26617
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2073 Improve messages for capitalization of arg names, |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2074 for flag variables, for t and nil, for imperatives. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2075 Call them imperatives rather than infinitives sans "to". |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2076 (checkdoc-common-verbs-wrong-voice): Add "moves". |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2077 (checkdoc-message-text-engine): Improve messages for y-or-n-p. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2078 |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2079 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine): |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2080 Don't convert comments from 3-semicolon to 2-semicolon. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2081 That is a matter of style. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2082 (checkdoc-triple-semi-comment-check-flag): Variable deleted. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2083 (checkdoc-comments): Don't bind that variable. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2084 |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2085 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2086 |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2087 * files.el (write-file-hooks): Doc fix. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2088 |
26608 | 2089 1999-11-26 Gerd Moellmann <gerd@gnu.org> |
2090 | |
2091 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='. | |
2092 | |
26600 | 2093 1999-11-25 Dave Love <fx@gnu.org> |
2094 | |
2095 * hippie-exp.el: Require comint when compiling. | |
2096 (hippie-expand): Add :links. | |
2097 (hippie-expand-try-functions-list): Customize. | |
2098 | |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26584
diff
changeset
|
2099 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu> |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2100 |
26609 | 2101 * viper*el: Replaced old-style backquotes. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2102 |
26609 | 2103 * ediff*el: Replaced old-style backquotes. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2104 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26584
diff
changeset
|
2105 * ediff-merge |
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26584
diff
changeset
|
2106 (ediff-looks-like-combined-merge,ediff-get-combined-region): |
26609 | 2107 Changed to support the new format for ediff-combination-pattern. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2108 |
26588
76b6a75471e1
* viper*el: replaced old-style backquotes.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26584
diff
changeset
|
2109 * ediff-diff (ediff-set-fine-overlays-in-one-buffer): |
26609 | 2110 Changed to support the new format for ediff-combination-pattern. |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2111 |
26581 | 2112 1999-11-24 Dave Love <fx@gnu.org> |
2113 | |
26584 | 2114 * custom.el (custom-declare-group): Purecopy DOC. |
2115 (custom-handle-keyword): Purecopy VALUE. | |
2116 (custom-add-link): Purecopy WIDGET. | |
2117 (custom-add-version): Purecopy VERSION. | |
2118 (custom-add-load): Purecopy LOAD. | |
2119 | |
2120 * cus-face.el (custom-declare-face): Purecopy DOC. | |
2121 | |
26581 | 2122 * info.el: |
2123 (Info-build-node-completions, Info-search, Info-follow-reference) | |
2124 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token) | |
2125 (Info-find-emacs-command-nodes): Avoid properties on matched text | |
2126 which may appear in minibuffer. | |
2127 | |
26579 | 2128 1999-11-24 Gerd Moellmann <gerd@gnu.org> |
2129 | |
2130 * locate.el (locate-with-filter): Doc fix. | |
2131 | |
26577 | 2132 1999-11-24 Alex Schroeder <alex@gnu.org> |
2133 | |
2134 * sql.el (sql-find-sqli-buffer): New function. | |
2135 (sql-set-sqli-buffer-generally): New function. | |
2136 (sql-set-sqli-buffer): Better checking of new-buffer. | |
2137 (sql-copy-column): Add comma after INTO clause, too. | |
2138 | |
2139 1999-11-24 Alex Schroeder <alex@gnu.org> | |
2140 | |
2141 * sql.el (sql-imenu-generic-expression): New, used to set | |
2142 imenu-generic-expression. | |
2143 | |
2144 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when | |
2145 setting font-lock-defaults' SYNTAX-ALIST. Set | |
2146 imenu-generic-expression, imenu-case-fold-search, and | |
2147 imenu-syntax-alist. | |
2148 | |
2149 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95 | |
2150 and 46 when setting font-lock-defaults' SYNTAX-ALIST. | |
2151 | |
26575 | 2152 1999-11-23 Andrew Innes <andrewi@gnu.org> |
2153 | |
2154 * w32-win.el (w32-drag-n-drop): Load files in current window, if | |
2155 drop coords aren't over a specific window. | |
2156 | |
26564 | 2157 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
2158 | |
2159 * ps-print.el: Define mule funs without checking if mule package is | |
2160 loaded. | |
2161 (ps-print-version): New version number (5.0.1). | |
2162 (ps-header-dirpart): Now uses abbreviate-file-name. | |
2163 | |
26559 | 2164 1999-11-23 Dave Love <fx@gnu.org> |
2165 | |
26943 | 2166 * progmodes/fortran.el (fortran-comment-line-start): Renamed from |
26561 | 2167 comment-line-start. |
2168 (fortran-comment-line-start-skip): Renamed from | |
2169 comment-line-start-skip. | |
2170 (fortran-mode-map): Use renamed functions. Add manual and custom | |
2171 entries to menu. | |
2172 (fortran-mode-hook): Customize. | |
2173 (fortran-comment-indent-function): Renamed from | |
2174 fortran-comment-hook. | |
2175 (delete-horizontal-regexp): Function deleted. | |
2176 (fortran-electric-line-number): Simplified. | |
2177 (fortran-beginning-of-subprogram): Renamed from | |
2178 beginning-of-fortran-subprogram. | |
2179 (fortran-end-of-subprogram): Renamed from | |
2180 end-of-fortran-subprogram. | |
2181 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram. | |
2182 (fortran-previous-statement, fortran-next-statement): Simplified. | |
2183 (fortran-blink-match): New function. | |
2184 (fortran-blink-matching-if, fortran-blink-matching-do): Use it. | |
2185 (fortran-indent-to-column): Don't use delete-horizontal-regexp. | |
2186 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use | |
2187 line-end-position. | |
2188 (fortran-fill): No longer interactive. Simplified. | |
2189 (fortran-break-line): Simplified. | |
2190 (fortran-analyze-file-format): Use char-after, not looking-at. | |
2191 | |
26943 | 2192 * emacs-lisp/find-func.el (find-function-regexp): Use |
2193 `define-minor-mode' after easy-menu change. | |
26559 | 2194 |
26554 | 2195 1999-11-23 Gerd Moellmann <gerd@gnu.org> |
2196 | |
2197 * comint.el: Add redirection.from active comint buffers into | |
2198 another buffer. Written by Peter Breton. | |
2199 | |
26551
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2200 1999-11-23 Stefan Monnier <monnier@cs.yale.edu> |
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2201 |
26552
88324520c7fc
(make-autoload): Recognize the new `define-minor-mode'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26551
diff
changeset
|
2202 * emacs-lisp/autoload.el (make-autoload): Recognize the new |
26554 | 2203 `define-minor-mode'. |
26552
88324520c7fc
(make-autoload): Recognize the new `define-minor-mode'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26551
diff
changeset
|
2204 (define-minor-mode): Specify `doc-string-elt'. |
88324520c7fc
(make-autoload): Recognize the new `define-minor-mode'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26551
diff
changeset
|
2205 |
26551
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2206 * emacs-lisp/easy-mmode.el: Changed maintainer. |
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2207 (easy-mmode-define-toggle): New BODY arg; Never append `-mode'; |
26554 | 2208 Use defcustom for the hooks; Improve the auto-generated docstrings. |
26551
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2209 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'. |
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2210 (define-minor-mode): Add BODY arg; Only declare the keymap if |
26554 | 2211 provided; Improve the auto-generated docstrings. |
26551
271f77895660
Changed maintainer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26545
diff
changeset
|
2212 |
26533 | 2213 1999-11-22 Gerd Moellmann <gerd@gnu.org> |
2214 | |
26554 | 2215 * textmodes/text-mode.el (text-mode): Construct paragraph-start so |
26545 | 2216 that the leading `^' is at the start. This is necessary because |
2217 paragraphs.el tries to remove anchors, but can find them only if | |
2218 they are the first character. | |
2219 | |
26543 | 2220 * progmodes/antlr-mode.el: New file. |
2221 | |
26533 | 2222 * calendar/calendar.el: Fix autoload for |
2223 calendar-absolute-from-astro. Add autoload for | |
2224 calendar-print-astro-day-number. | |
2225 | |
26524 | 2226 1999-11-21 Anders Lindgren <andersl@andersl.com> |
2227 | |
2228 * follow.el: Use modern backquote syntax. Minor comment update. | |
2229 | |
26520 | 2230 1999-11-21 Gerd Moellmann <gerd@gnu.org> |
2231 | |
26522 | 2232 * simple.el (with-syntax-table): Don't switch buffers. |
2233 | |
26520 | 2234 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el, |
2235 progmodes/hideif.el: Use new backquote syntax. | |
2236 | |
26517 | 2237 1999-11-21 Ken Manheimer <klm@python.org> |
2238 | |
2239 * icomplete.el (icomplete-completions): Use an explicit variable | |
2240 `icomplete-prospects-length', obviating the need to use an | |
2241 apparently faulty throw/catch arrangement. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2242 |
26515
9f3d02d7daa8
term/internal.el (IT-display-table-setup): Don't overstep
Eli Zaretskii <eliz@gnu.org>
parents:
26511
diff
changeset
|
2243 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il> |
9f3d02d7daa8
term/internal.el (IT-display-table-setup): Don't overstep
Eli Zaretskii <eliz@gnu.org>
parents:
26511
diff
changeset
|
2244 |
9f3d02d7daa8
term/internal.el (IT-display-table-setup): Don't overstep
Eli Zaretskii <eliz@gnu.org>
parents:
26511
diff
changeset
|
2245 * term/internal.el (IT-display-table-setup): Don't overstep |
9f3d02d7daa8
term/internal.el (IT-display-table-setup): Don't overstep
Eli Zaretskii <eliz@gnu.org>
parents:
26511
diff
changeset
|
2246 character code 255. |
9f3d02d7daa8
term/internal.el (IT-display-table-setup): Don't overstep
Eli Zaretskii <eliz@gnu.org>
parents:
26511
diff
changeset
|
2247 |
26511 | 2248 1999-11-20 Kenichi Handa <handa@mule.m17n.org> |
2249 | |
2250 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font | |
2251 for the charset chinese-sisheng is 7bit encoding, not 8bit. | |
2252 | |
26508
8548cb8ad6e2
(PC-do-complete-and-exit): use minibuffer-prompt-end to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26505
diff
changeset
|
2253 1999-11-19 Stefan Monnier <monnier@cs.yale.edu> |
8548cb8ad6e2
(PC-do-complete-and-exit): use minibuffer-prompt-end to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26505
diff
changeset
|
2254 |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2255 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the |
26517 | 2256 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars. |
2257 | |
2258 * files.el (auto-mode-alist): Add patterns for diff-mode. | |
2259 | |
2260 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end | |
2261 to detect an empty prompt. | |
26508
8548cb8ad6e2
(PC-do-complete-and-exit): use minibuffer-prompt-end to
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26505
diff
changeset
|
2262 |
26505 | 2263 1999-11-18 Dave Love <fx@gnu.org> |
2264 | |
2265 * simple.el (input-mode-8-bit): Fix the customization. | |
2266 | |
26489 | 2267 1999-11-18 Gerd Moellmann <gerd@gnu.org> |
2268 | |
26494 | 2269 * international/iso-acc.el (iso-languages): Add more |
2270 characters for Portuguese. | |
2271 | |
26492 | 2272 * speedbar.el: Clean up comment at the start of the file. |
2273 Remove RCS id. | |
2274 | |
26489 | 2275 * progmodes/compile.el (compilation-parse-errors): Use |
2276 compilation-buffer-p instead of testing major-mode. | |
2277 | |
26496 | 2278 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk> |
2279 | |
2280 * quickurl.el Added defcustom of quickurl-completion-ignore-case. | |
2281 (quickurl-ask): completion-ignore-case is set to the value of | |
2282 quickurl-completion-ignore-case for the duration of the call to | |
2283 completing-read. | |
27030
1fbcab305a82
(also deleted unsightly eol whitespace)
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
27026
diff
changeset
|
2284 |
26487 | 2285 1999-11-18 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2286 | |
2287 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook. | |
2288 | |
26484
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2289 1999-11-18 Kenichi Handa <handa@etl.go.jp> |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2290 |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2291 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2292 instead of ps-print-def. |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2293 |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2294 * ps-print.el: Require ps-vars instead of ps-print-def. |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2295 |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2296 * ps-mule.el: Require ps-vars instead of ps-print-def. |
390d4b3523e9
rename ps-print-def.el to ps-vars.el
Kenichi Handa <handa@m17n.org>
parents:
26477
diff
changeset
|
2297 |
26477 | 2298 1999-11-17 Gerd Moellmann <gerd@gnu.org> |
2299 | |
2300 * simple.el (with-syntax-table): Save buffer explicitly instead of | |
2301 using save-excursion. | |
2302 | |
26467 | 2303 1999-11-16 Gerd Moellmann <gerd@gnu.org> |
2304 | |
2305 * mail/supercite.el: New maintainer. | |
2306 | |
2307 1999-11-16 Reto Zimmermann <reto@synopsys.com> | |
2308 | |
2309 * progmodes/vhdl-mode.el: Use new backquote syntax. | |
2310 | |
2311 1999-11-16 Gerd Moellmann <gerd@gnu.org> | |
2312 | |
2313 * simple.el (with-syntax-table): New. | |
2314 | |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2315 1999-11-15 Sam Steingold <sds@ksp.com> |
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2316 |
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2317 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax. |
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2318 |
26458
a74c3ac8e0d8
* goto-addr.el (goto-address-at-mouse,
Sam Steingold <sds@gnu.org>
parents:
26457
diff
changeset
|
2319 1999-02-22 Sam Steingold <sds@goems.com> |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2320 |
26458
a74c3ac8e0d8
* goto-addr.el (goto-address-at-mouse,
Sam Steingold <sds@gnu.org>
parents:
26457
diff
changeset
|
2321 * goto-addr.el (goto-address-at-mouse, |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
2322 goto-address-find-address-at-point): Use compose-mail. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
2323 (goto-address-mail-method): Removed variable. |
26458
a74c3ac8e0d8
* goto-addr.el (goto-address-at-mouse,
Sam Steingold <sds@gnu.org>
parents:
26457
diff
changeset
|
2324 (goto-address-send-using-mh-e, goto-address-send-using-mhe, |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
2325 goto-address-send-using-mail): Removed functions. |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2326 |
26457
285ab8ddc125
* simple.el (backward-delete-char-untabify):
Sam Steingold <sds@gnu.org>
parents:
26456
diff
changeset
|
2327 1998-11-03 Sam Steingold <sds@goems.com> |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2328 |
26457
285ab8ddc125
* simple.el (backward-delete-char-untabify):
Sam Steingold <sds@gnu.org>
parents:
26456
diff
changeset
|
2329 * simple.el (backward-delete-char-untabify): |
285ab8ddc125
* simple.el (backward-delete-char-untabify):
Sam Steingold <sds@gnu.org>
parents:
26456
diff
changeset
|
2330 backward-delete-char-untabify-method can be `all' now - to delete |
285ab8ddc125
* simple.el (backward-delete-char-untabify):
Sam Steingold <sds@gnu.org>
parents:
26456
diff
changeset
|
2331 hungrily including newlines. |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2332 |
26456 | 2333 1999-11-15 Sam Steingold <sds@ksp.com> |
2334 | |
2335 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax. | |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2336 |
26452 | 2337 1999-11-15 Dave Love <fx@gnu.org> |
2338 | |
2339 * cus-edit.el (customize-face, customize-face-other-window): | |
2340 Require match from completing-read. | |
2341 (custom-buffer-done-function): Default to custom-bury-buffer, not | |
2342 bury-buffer. | |
2343 | |
26450 | 2344 1999-11-15 Gerd Moellmann <gerd@gnu.org> |
2345 | |
26456 | 2346 * mail/rmail.el, iswitchb.el, hippie-exp.el, |
2347 progmodes/cperl-mode.el: Use new backquote syntax. | |
26450 | 2348 |
26445 | 2349 1998-09-14 Michael Ernst <mernst@alum.mit.edu> |
2350 | |
2351 * uniquify.el: Use new backquote syntax. | |
2352 | |
2353 1999-11-14 Markus Rost <rost@ias.edu> | |
26443 | 2354 |
2355 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r | |
2356 as in ispell-local-dictionary-alist. | |
2357 | |
26445 | 2358 1999-11-14 Alex Schroeder <alex@gnu.org> |
26440 | 2359 |
2360 * ansi-color.el (ansi-color-apply): Updated regexps to include | |
2361 highlighted face. | |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2362 |
26445 | 2363 1999-01-14 Johan Vromans <jvromans@squirrel.nl> |
26437 | 2364 |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2365 * forms.el (forms--make-format-elt-using-text-properties): |
26437 | 2366 Treat `intangible' differently. |
2367 | |
2368 * forms.el: Use new backquote syntax. | |
2369 | |
26434 | 2370 1999-11-13 Gerd Moellmann <gerd@gnu.org> |
2371 | |
2372 * textmodes/scribe.el (scribe-mode): Doc-fix. | |
2373 | |
26431
e53a941311a2
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
26429
diff
changeset
|
2374 1999-11-13 Peter Breton <pbreton@ne.mediaone.net> |
e53a941311a2
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
26429
diff
changeset
|
2375 |
26435 | 2376 * net-utils.el (run-network-program, net-utils-run-program): Use |
2377 the new backquote syntax. | |
2378 (smbclient-program, smbclient-program-options) | |
2379 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New | |
2380 variables | |
26431
e53a941311a2
*** empty log message ***
Peter Breton <pbreton@attbi.com>
parents:
26429
diff
changeset
|
2381 (smbclient, smbclient-list-shares): New functions |
26459
1ef9d70dfb0f
* dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
Sam Steingold <sds@gnu.org>
parents:
26458
diff
changeset
|
2382 |
26427
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2383 1999-11-12 Sam Steingold <sds@ksp.com> |
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2384 |
26435 | 2385 * emulation/viper-init.el (viper-deflocalvar, viper-loop) |
2386 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair) | |
2387 (viper-kbd-buf-definition, viper-kbd-mode-alist) | |
2388 (viper-kbd-mode-pair, viper-kbd-mode-definition) | |
2389 (viper-kbd-global-pair, viper-kbd-global-definition): | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26428
diff
changeset
|
2390 Use the new backquote syntax. |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26428
diff
changeset
|
2391 |
26435 | 2392 * emulation/viper-cmd.el (viper-test-com-defun) |
2393 (viper-prefix-arg-value, viper-prefix-arg-com): | |
26429
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26428
diff
changeset
|
2394 Use the new backquote syntax. |
e20b16957cdd
* emulation/viper-init.el (viper-deflocalvar, viper-loop,
Sam Steingold <sds@gnu.org>
parents:
26428
diff
changeset
|
2395 |
26428
f572944ca41f
* emacs-lisp/debug.el (debugger-env-macro):
Sam Steingold <sds@gnu.org>
parents:
26427
diff
changeset
|
2396 * emacs-lisp/debug.el (debugger-env-macro): |
f572944ca41f
* emacs-lisp/debug.el (debugger-env-macro):
Sam Steingold <sds@gnu.org>
parents:
26427
diff
changeset
|
2397 Use the new backquote syntax. |
f572944ca41f
* emacs-lisp/debug.el (debugger-env-macro):
Sam Steingold <sds@gnu.org>
parents:
26427
diff
changeset
|
2398 |
f572944ca41f
* emacs-lisp/debug.el (debugger-env-macro):
Sam Steingold <sds@gnu.org>
parents:
26427
diff
changeset
|
2399 * emacs-lisp/easymenu.el (easy-menu-make-symbol): |
f572944ca41f
* emacs-lisp/debug.el (debugger-env-macro):
Sam Steingold <sds@gnu.org>
parents:
26427
diff
changeset
|
2400 Use the new backquote syntax. |
f572944ca41f
* emacs-lisp/debug.el (debugger-env-macro):
Sam Steingold <sds@gnu.org>
parents:
26427
diff
changeset
|
2401 |
26427
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2402 * calendar/calendar.el (calendar-remove-frame-by-deleting): |
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2403 New user variable. |
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2404 (calendar-hide-window): Use it. |
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2405 (increment-calendar-month, calendar-for-loop, calendar-sum): |
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2406 Use the new backquote syntax. |
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2407 |
26424 | 2408 1999-11-12 Andrew Innes <andrewi@gnu.org> |
2409 | |
2410 * select.el (x-set-selection): Call buffer-substring, not | |
2411 substring. Also fix docstring | |
2412 | |
26422 | 2413 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl> |
2414 | |
2415 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list | |
2416 of customizable variables to bug report message. Added | |
2417 system-type to package name in bug report. | |
26427
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2418 |
26419 | 2419 1999-11-12 Gerd Moellmann <gerd@gnu.org> |
2420 | |
2421 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name | |
2422 to display file names. | |
2423 | |
26409 | 2424 1999-11-11 Gerd Moellmann <gerd@gnu.org> |
2425 | |
26411 | 2426 * mwheel.el: Fix copyright notice, don't require 'cl at run time. |
2427 | |
26409 | 2428 * isearch.el: Add lazy-highlighting feature. |
2429 | |
26406 | 2430 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl> |
2431 | |
2432 * progmodes/ps-mode.el (ps-mode-maintainer-address): New | |
2433 constant. | |
2434 (ps-mode-submit-bug-report): New function. Entry added to menu. | |
2435 | |
26399
01ffc3822d09
Checked in changelog & elc file for mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26396
diff
changeset
|
2436 1999-11-10 William M. Perry <wmperry@aventail.com> |
01ffc3822d09
Checked in changelog & elc file for mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26396
diff
changeset
|
2437 |
01ffc3822d09
Checked in changelog & elc file for mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26396
diff
changeset
|
2438 * mwheel.el: New file to support the new style wheeled mice. |
01ffc3822d09
Checked in changelog & elc file for mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26396
diff
changeset
|
2439 |
26394 | 2440 1999-11-10 Gerd Moellmann <gerd@gnu.org> |
2441 | |
26406 | 2442 * startup.el (initial-scratch-message): Add ";;" to the front of |
2443 lines in the message. | |
2444 | |
26396 | 2445 * files.el (file-local-copy): Remove optional BUFFER argument |
2446 because that's not used by anything. | |
2447 | |
26394 | 2448 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as |
2449 to-address. | |
2450 | |
26387 | 2451 1999-11-08 Markus Rost <rost@ias.edu> |
2452 | |
26427
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2453 * wid-edit.el (widget-button-click): Wrap with save-excursion |
26387 | 2454 to restore track-mouse in the correct buffer. |
2455 | |
2456 1999-11-08 Gerd Moellmann <gerd@gnu.org> | |
2457 | |
2458 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com. | |
2459 | |
2460 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl> | |
2461 | |
2462 * progmodes/ps-mode.el (ps-mode-print-function): Changed default | |
2463 lpr-command to "lp" for some system-types. (copied from lpr.el | |
2464 Emacs version 20.2.1). | |
26427
3b6cf16f3633
* calendar/calendar.el (calendar-remove-frame-by-deleting):
Sam Steingold <sds@gnu.org>
parents:
26424
diff
changeset
|
2465 |
26362 | 2466 1999-11-04 Markus Rost <rost@ias.edu> |
2467 | |
2468 * simple.el (comment-region): Strip off white space at end of | |
2469 comment-start. | |
2470 | |
26354 | 2471 1999-11-04 Gerd Moellmann <gerd@gnu.org> |
2472 | |
2473 * faces.el (secondary-selection): Fix wrong color name. | |
2474 | |
26352 | 2475 1999-11-04 John Tobey <jtobey@epsilondev.com> |
2476 | |
2477 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0", | |
2478 the default when invoking perldb in a non-Perl buffer, and other | |
2479 cases involving -e or --. | |
2480 | |
26342 | 2481 1999-11-04 Gerd Moellmann <gerd@gnu.org> |
2482 | |
26352 | 2483 * simple.el (previous-matching-history-element) |
2484 (next-history-element): Use delete-field instead of erase-field. | |
2485 | |
2486 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit): | |
2487 Use delete-field instead of erase-field. | |
2488 | |
26344 | 2489 * faces.el (secondary-selection): Change background to yellow. |
2490 | |
26342 | 2491 * complete.el (PC-do-completion): Use minibuffer-prompt-end to |
2492 find the start of the text. Use field-string to read the user | |
2493 input. | |
2494 | |
26333 | 2495 1999-11-03 Gerd Moellmann <gerd@gnu.org> |
2496 | |
26338 | 2497 * faces.el (make-face-bold, make-face-unbold, make-face-italic) |
2498 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument | |
2499 for compatibility with old face implementation. | |
2500 | |
26336 | 2501 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit): |
2502 Use erase-field instead of erase-buffer. | |
2503 | |
26333 | 2504 * frame.el (blink-cursor-mode, blink-cursor-end): Use |
2505 internal-show-cursor with new interface. | |
2506 (blink-cursor-timer-function): New. | |
2507 (blink-cursor-start): Use blink-cursor-timer-function. | |
2508 | |
26331 | 2509 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu> |
2510 | |
2511 * calendar.el (redraw-calendar): Move to nearest date before | |
2512 redrawing. | |
2513 | |
2514 * diary-lib.el (simple-diary-display): Reset modeline even if | |
2515 there are no diary entries since the diary buffer may be displayed. | |
2516 | |
26326 | 2517 1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2518 | |
2519 * emacs-lisp/debug.el (debug): If noninteractive, display the | |
2520 backtrace using `message', then exit Emacs. | |
2521 (debugger-batch-max-lines): New variable. | |
2522 (debugger-setup-buffer): New subroutine, broken out of `debug'. | |
2523 Change the messages put at the start, to say that the debugger | |
2524 was entered. | |
2525 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2526 1999-11-02 Sam Steingold <sds@ksp.com> |
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2527 |
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2528 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp. |
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2529 |
26295 | 2530 1999-11-01 John Tobey <jtobey@epsilondev.com> |
2531 | |
2532 * gud.el: (gud-perldb-massage-args): Massage correctly in the | |
2533 presence of perl switches other than "-e". | |
2534 | |
26287 | 2535 1999-11-01 Markus Rost <rost@ias.edu> |
2536 | |
2537 * dired-x.el (dired-smart-shell-command): Use | |
2538 shell-command-history as in shell-command. | |
2539 | |
26282 | 2540 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2541 | |
2542 * userlock.el (ask-user-about-lock): Doc fix. | |
2543 | |
26285 | 2544 * frame.el: Doc fixes. |
2545 | |
26271 | 2546 1999-11-01 Gerd Moellmann <gerd@gnu.org> |
2547 | |
26279 | 2548 * frame.el (blink-cursor-mode): Call internal-show-cursor instead |
2549 of show-cursor. | |
2550 (blink-cursor-start, blink-cursor-end): Ditto. | |
2551 | |
26271 | 2552 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode. |
2553 | |
26269 | 2554 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2555 | |
2556 * window.el (walk-windows): If ALL-FRAMES is a frame, | |
2557 start on that frame. Use save-selected-window. | |
2558 | |
26266 | 2559 1999-11-01 Gerd Moellmann <gerd@gnu.org> |
2560 | |
2561 * simple.el (end-of-buffer): Use window-end to find the window end | |
2562 instead of vertical-motion because this handles variable-height | |
2563 lines correctly. | |
2564 | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2565 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu> |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2566 |
26266 | 2567 * ediff.el: Version change. |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2568 |
26266 | 2569 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2570 make sure you are in a good frame before deleting other |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2571 windows. |
26266 | 2572 (ediff-file-checked-in-p): Don't consider CVS |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2573 files checked in. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2574 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2575 are writing to a newly created empty file. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2576 |
26266 | 2577 * ediff-mult.el (ediff-show-session-group-hook): New default. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2578 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2579 * ediff-vers.el (ediff-pcl-cvs-view-revision): |
26266 | 2580 First cd to the file directory. reportedly works |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2581 better with remote files. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2582 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2583 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal): |
26266 | 2584 Use file-name-nondirectory when passing files to CVS. |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2585 |
26271 | 2586 * ediff-diff.el (ediff-cmp-options): New variable. |
26267 | 2587 (ediff-same-file-contents): Use ediff-cmp-options. |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2588 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2589 * ediff-ptch.el (ediff-prompt-for-patch-buffer, |
26266 | 2590 ediff-get-patch-buffer): Use current buffer if it appears to be a |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2591 patch. |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2592 |
26271 | 2593 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c |
2594 C-g | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2595 |
26266 | 2596 * viper-util.el (viper-nontrivial-find-file-function): Deleted. |
2597 (viper-glob-unix-files, viper-glob-mswindows-files): New functions. | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2598 (viper-save-cursor-color,viper-restore-cursor-color): |
26266 | 2599 Improved cursor color handling. |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2600 (viper-get-saved-cursor-color-in-replace-mode, |
26266 | 2601 viper-get-saved-cursor-color-in-insert-mode): New functions for |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2602 better cursor color handling. |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2603 |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2604 * viper-ex.el (ex-read,ex-edit): |
26266 | 2605 Fixes for correct interpretation of #,%. |
2606 (viper-ex): Now works correctly when called from other functions. | |
2607 (viper-glob-function): New variable. | |
2608 (viper-ex): Save excursion before doing :global. | |
2609 | |
2610 * viper-mous.el (viper-counting-clicks-p): Bug fixes. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2611 |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2612 * viper-cmd.el (viper-post-command-sentinel, |
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2613 viper-insert-state-post-command-sentinel, |
26266 | 2614 viper-insert-state-pre-command-sentinel): Takes better care of |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2615 cursor colors. |
26267 | 2616 |
2617 * viper.el: Version change. | |
26263
4f315ca65976
*** empty log message ***
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
26260
diff
changeset
|
2618 |
26260 | 2619 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com> |
2620 | |
2621 * whitespace.el (whitespace-update-modeline): Bugfix to ensure | |
2622 that the modeline display was updated *only* when | |
2623 `whitespace-display-in-modeline' was set, not otherwise. | |
2624 | |
26248 | 2625 1999-10-30 Gerd Moellmann <gerd@gnu.org> |
2626 | |
26251 | 2627 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to |
2628 "frac12". | |
2629 | |
26248 | 2630 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for |
2631 ad-activate. | |
2632 | |
26246 | 2633 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com> |
2634 | |
26254 | 2635 * whitespace.el: Test for existence of `defcustom' and `defgroup' |
2636 using fboundp instead of assuming that these are not present in | |
2637 particular flavors of emacs. | |
2638 (whitespace-version): Update to 2.8 | |
2639 (whitespace-display-in-modeline): Add custom variable to control | |
2640 displaying the whitespace errors on the modeline based on | |
2641 suggestion from <klaus.berndl@sdm.de> | |
2642 (whitespace-buffer): Now returns `t' if unclean and `nil' if | |
2643 clean, to enable using as a hook function, as suggested by Puneet | |
2644 Goel <puneet@computer.org> | |
2645 (whitespace-buffer): Fix a subtle bug that cleaned up only if | |
2646 quiet was not set, even with whitespace-auto-cleanup set. | |
2647 (whitespace-mode-line): Now uses less modeline real estate and | |
2648 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace | |
2649 which is present in the file, and <y> is any type of whitespace | |
2650 whose check has been suppressed by setting | |
26246 | 2651 `whitespace-check-<whitespace-type>' to nil. |
26254 | 2652 (whitespace-unchecked-whitespaces): New function to return the |
2653 list of whitespaces for whom checks have been suppressed. | |
2654 (whitespace-display-unchecked-whitespaces): Renamed to | |
2655 `whitespace-update-modeline' to reflect its functionality. | |
26246 | 2656 |
26244 | 2657 1999-10-30 Gerd Moellmann <gerd@gnu.org> |
2658 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2659 * progmodes/compile.el (compilation-error-regexp-alist): |
26244 | 2660 Undo previous change. |
2661 | |
26232 | 2662 1999-10-28 Dave Love <fx@gnu.org> |
2663 | |
2664 * help.el (help-follow): Make arg optional again and really | |
2665 default to point. | |
2666 | |
26228 | 2667 1999-10-28 Gerd Moellmann <gerd@gnu.org> |
2668 | |
26234 | 2669 * paths.el (rmail-file-name): Make it an option. |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2670 |
26228 | 2671 * progmodes/ada-mode.el, progmodes/ada-prj.el, |
2672 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and | |
2673 comment fixes. | |
2674 | |
26231 | 2675 * progmodes/compile.el (compilation-error-regexp-alist): Recognize |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2676 MIPS Pro 7.3 compiler error message syntax. |
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2677 |
26223 | 2678 1999-10-27 Dave Love <fx@gnu.org> |
2679 | |
2680 * progmodes/compile.el: Checkdoc-inspired fixes. | |
2681 | |
26220 | 2682 1999-10-27 Gerd Moellmann <gerd@gnu.org> |
2683 | |
2684 * lpr.el (print-buffer): Doc-string fix. | |
2685 | |
26218 | 2686 1999-10-27 Dave Love <fx@gnu.org> |
2687 | |
2688 * emacs-lisp/advice.el: Doc fixes. | |
2689 (ad-lemacs-p): Removed. | |
2690 (advice): Add :link to defgroup. | |
2691 | |
26209 | 2692 1999-10-27 Kenichi Handa <handa@etl.go.jp> |
2693 | |
2694 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change | |
2695 last-coding-system-used by the call of ange-ftp-set-ascii-mode. | |
2696 | |
26617
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2697 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2698 |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2699 * window.el (walk-windows): If ALL-FRAMES is a frame, |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2700 start on that frame. Use save-selected-window. |
2cde2efdc20f
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
26609
diff
changeset
|
2701 |
26207 | 2702 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2703 | |
2704 * emacs-lisp/advice.el (ad-activate-internal): Renamed from | |
2705 ad-activate. All callers changed, including those in data.c. | |
2706 (ad-activate-internal-off): Renamed from ad-activate-off. | |
2707 All uses changed. | |
2708 (ad-activate): Renamed from ad-activate-on. All uses changed. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2709 (ad-start-advice, ad-stop-advice, ad-recover-normality): |
26207 | 2710 Alter the definition of ad-activate-internal, not ad-activate. |
2711 | |
26196 | 2712 1999-10-26 Gerd Moellmann <gerd@gnu.org> |
2713 | |
2714 * startup.el (command-line-1): Add support for command line | |
2715 arguments `file' and `execute'. Fix handling of `visit'. | |
2716 | |
26191 | 2717 1999-10-26 Kenichi Handa <handa@etl.go.jp> |
2718 | |
2719 * international/mule-cmds.el (read-input-method-name): Handle the | |
2720 case that the arg DEFAULT is symbol. | |
2721 | |
2722 * international/mule-diag.el (mule-diag): Handle the case that | |
2723 default-input-method is symbol. | |
2724 | |
26187 | 2725 1999-10-26 Gerd Moellmann <gerd@gnu.org> |
2726 | |
2727 * textmodes/tildify.el: New file. | |
2728 | |
26184 | 2729 1999-10-25 Sam Steingold <sds@ksp.com> |
2730 | |
2731 * Makefile (compile-files): Fixed the "tr" strings. | |
2732 (EMACS): Set to ../src/emacs. | |
2733 | |
26173 | 2734 1999-10-25 Gerd Moellmann <gerd@gnu.org> |
2735 | |
2736 * info.el (Info-build-node-completions): Add '("*") to the | |
2737 completion list. | |
2738 | |
26167 | 2739 1999-10-25 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
2740 | |
2741 * frame.el (auto-raise-mode): When enabling the mode, | |
2742 immediately raise the selected frame. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2743 |
26170 | 2744 * indent.el (indent-region): Doc fix. |
2745 | |
26175 | 2746 * comint.el (comint-output-filter): Make the Comint buffer current |
2747 for the comint-preoutput-filter-functions. | |
2748 | |
26177 | 2749 * mail/reporter.el: Doc fix. |
2750 | |
26156
9a67e9379891
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26151
diff
changeset
|
2751 1999-10-24 Stephen Eglen <stephen@gnu.org> |
9a67e9379891
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26151
diff
changeset
|
2752 |
26158
4c3791dba96a
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26156
diff
changeset
|
2753 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2754 that Octave lisp files can also run under XEmacs 20. |
26158
4c3791dba96a
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26156
diff
changeset
|
2755 (require 'custom) added so that files can run under Emacs 19.34. |
4c3791dba96a
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26156
diff
changeset
|
2756 |
26156
9a67e9379891
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26151
diff
changeset
|
2757 * iswitchb.el (iswitchb-default-keybindings): No need to use |
9a67e9379891
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26151
diff
changeset
|
2758 read-kbd-macro in keybindings. |
9a67e9379891
*** empty log message ***
Stephen Eglen <stephen@gnu.org>
parents:
26151
diff
changeset
|
2759 |
26151 | 2760 1999-10-23 Dave Love <fx@gnu.org> |
2761 | |
2762 * elide-head.el: New file. | |
2763 | |
26148 | 2764 1999-10-23 Gerd Moellmann <gerd@gnu.org> |
2765 | |
2766 * Makefile (compile-files, backup-compiled-files): New targets. | |
2767 (bootstrap, bootstrap-clean): Ditto. | |
2768 | |
26138
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2769 1999-10-22 Paul Eggert <eggert@twinsun.com> |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2770 |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2771 * international/mule-cmds.c (locale-language-names): |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2772 Use Latin-1 (not Latin-3) for Afrikaans, Galician. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2773 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian, |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2774 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet). |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2775 Use Latin-8 for Welsh. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2776 Use Latin-1 for English if "en" is explicitly specified. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2777 Use Latin-1 for Scots Gaelic, Tagalog. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2778 Use Latin-1 (not Latin-4) for Greenlandic. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2779 Use Latin-1 (not Latin-2) for Albanian. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2780 (locale-preferred-coding-systems, locale-language-names): |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2781 Remove generic ISO 8859 locales; locale-charset-language-names now |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2782 does this. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2783 (locale-charset-language-names): New variable. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2784 (set-locale-environment): Use language name specified by |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2785 locale-charset-language-names if its charsets disagree with the |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2786 language name specified by locale-language-names. |
7d8f9a678c69
* international/mule-cmds.c (locale-language-names):
Paul Eggert <eggert@twinsun.com>
parents:
26137
diff
changeset
|
2787 |
26132 | 2788 1999-10-22 Dave Love <fx@gnu.org> |
2789 | |
26137 | 2790 * make-mode.el: Minor doc fixes. |
2791 | |
26132 | 2792 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure. |
2793 | |
26129 | 2794 1999-10-21 Dave Love <fx@gnu.org> |
2795 | |
2796 * loadup.el: Add latin-8, latin-9. | |
2797 | |
26124
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2798 1999-10-20 Paul Eggert <eggert@twinsun.com> |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2799 |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2800 * disp-table.el (standard-display-european): Remove undocumented |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2801 arg AUTO; no longer used by startup.el. Do not attempt to treat |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2802 all non-English language environments as coding system names. |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2803 Instead, use the downcased language environment name as a coding |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2804 system name if it is one; otherwise, use latin-1. |
ee67b2340a0f
* disp-table.el (standard-display-european): Remove undocumented
Paul Eggert <eggert@twinsun.com>
parents:
26122
diff
changeset
|
2805 |
26121 | 2806 1999-10-20 Gerd Moellmann <gerd@gnu.org> |
2807 | |
2808 * dired.el (dired-move-to-filename-regexp): Fix long comment lines | |
2809 that were split so that part of the comment appeared as Lisp code. | |
2810 | |
26117 | 2811 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
2812 | |
2813 * ps-bdf.el: Doc fix. | |
2814 | |
2815 * ps-print-def.el: New file: common definitions for all parts of | |
2816 ps-print. | |
2817 (ps-multibyte-buffer): Moved from ps-mule. | |
2818 | |
2819 * ps-mule.el: File dependence fix. | |
2820 (ps-multibyte-buffer): Moved to ps-print-def. | |
2821 | |
2822 * ps-print.el: Doc fix, better customization. | |
2823 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble) | |
2824 (ps-print-color-p, ps-printing-region-p, ps-n-up-database) | |
2825 (ps-end-file): Doc fix. | |
2826 (ps-setup, ps-begin-file): Fun fix. | |
2827 (postscript): New group. | |
2828 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars. | |
2829 (ps-print-prologue-1): Adjust PostScript programming. | |
2830 (ps-print): Adjust group hierarchy. | |
2831 (ps-print-n-up, ps-print-zebra, ps-print-background, | |
2832 ps-print-printer) | |
2833 (ps-print-page): New subgroups. | |
2834 (ps-print-prologue-header, ps-printer-name, ps-lpr-command) | |
2835 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type) | |
2836 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing) | |
2837 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes) | |
2838 (ps-zebra-stripe-height, ps-print-background-image) | |
2839 (ps-print-background-text, ps-spool-config): Adjust customization. | |
2840 (dos-ps-printer): Definition eliminated. | |
2841 | |
2842 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
2843 | |
2844 * ps-mule.el: Doc fix, define functions properly if mule package is | |
2845 loaded or not. | |
2846 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if | |
2847 mule package is loaded or not. | |
2848 | |
2849 * ps-print.el: Doc fix, n-up printing. | |
2850 (ps-print-version): New version number (5.0). | |
2851 (ps-page-dimensions-database): Added document media. | |
2852 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling) | |
2853 (ps-page-order, ps-printing-region-p): New vars. | |
2854 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New | |
2855 funs. | |
2856 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines) | |
2857 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn) | |
2858 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end) | |
2859 (ps-n-up-xstart, ps-n-up-ystart): New macros. | |
2860 (ps-print-begin-sheet-hook): New hook. | |
2861 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New | |
2862 const. | |
2863 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job) | |
2864 (ps-end-file, ps-dummy-page, ps-generate): Fix funs. | |
2865 (ps-print-prologue-1): Adjust PostScript programming for n-up printing. | |
2866 (ps-count-lines): Changed to defun. | |
2867 (ps-header-page): Changed to defsubst, fix fun. | |
2868 (ps-printing-region): Doc fix, adjust programming code. | |
2869 (ps-output-boolean, ps-background-pages, ps-background-text) | |
2870 (ps-background-image, ps-background, ps-get-boundingbox): Adjust | |
2871 programming code. | |
2872 | |
2873 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
2874 | |
2875 * ps-print.el: Doc fix, duplex and setpagedevice configuration. | |
2876 (ps-print-version): New version number (4.2). | |
2877 (ps-spool-config, ps-spool-tumble): New vars. | |
2878 (ps-print-prologue-1): Changed to defconst, adjust PostScript | |
2879 programming, new PostScript procedure to handle errors. | |
2880 (ps-print-prologue-2): Changed to defconst. | |
2881 (ps-print-duplex-feature): New const: duplex and tumble setting. | |
2882 (ps-setup, ps-begin-file): Fix funs. | |
2883 (ps-boolean-capitalized): New fun. | |
2884 | |
26112
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2885 1999-10-19 Stefan Monnier <monnier@cs.yale.edu> |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2886 |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2887 * Makefile (dontcompilefiles): Obsoleted. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2888 (DONTCOMPILE): Added emacs-lisp/cl-specs.el. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2889 (EL): Unused. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2890 (temacs): Removed (unused). |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2891 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
2892 version of the file (necessary for the update to work properly). |
26112
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2893 (autoloads): Force the use of `pwd`/loaddefs.el. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2894 (updates); Redefined in terms of other targets to reduce redundancy. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2895 (.el.elc): New default rule, just in case you want it. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2896 (compile): Use a single invocation of Emacs. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2897 (bootstrap-compile); Unneeded. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2898 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed. |
a2591ab1ddaf
(dontcompilefiles): Obsoleted.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26102
diff
changeset
|
2899 |
26102 | 2900 1999-10-19 Dave Love <fx@gnu.org> |
2901 | |
2902 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug. | |
2903 | |
26100 | 2904 1999-10-19 Sam Steingold <sds@ksp.com> |
2905 | |
2906 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to | |
2907 comply with the comment. | |
2908 | |
26098 | 2909 1999-10-19 Gerd Moellmann <gerd@gnu.org> |
2910 | |
2911 * autorevert.el (auto-revert-mode): Make auto-revert-mode | |
2912 permanent-local. | |
2913 | |
26094 | 2914 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl> |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2915 |
26094 | 2916 * progmodes/ps-mode.el (ps-mode-print-function): Fix default |
2917 value: \"lpr\" changed to "lpr" | |
2918 (ps-mode-version): New constant | |
2919 (ps-mode-show-version): New function, added key in ps-mode-map | |
2920 (ps-run-messages): Removed | |
2921 (ps-run-font-lock-keywords-2): New defcustom variable replacing | |
2922 ps-run-messages. These keywords now include the value of | |
2923 ps-run-prompt, making its fontification customizable. | |
2924 (ps-run-init): Removed \\n from docstring, it is now added when | |
2925 the value is used | |
2926 (ps-run-font-lock-keywords-1): Added checking for initial ^ in | |
2927 ps-run-prompt | |
2928 (ps-mode): Added ps-run-font-lock-keywords-2 to list of | |
26095 | 2929 customizable variables in doc-string (its equivalent |
26094 | 2930 ps-run-messages was missing in previous version of the doc-string) |
2931 (ps-run-mode): Simplified assignment to font-lock-defaults, using | |
2932 symbols only | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2933 |
26091 | 2934 1999-10-19 Alex Schroeder <alex@gnu.org> |
2935 | |
2936 * ansi-color.el: Complete rewrite. | |
2937 | |
26084
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2938 1999-10-19 Paul Eggert <eggert@twinsun.com> |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2939 |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2940 Fix bootstrapping problems. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2941 Use the system locale to specify Emacs locale defaults. |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2942 |
26084
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2943 * international/mule-cmds.el (global-map): |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2944 Do not use backquote, because that makes a bootstrapping |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2945 problem if you need to recompile all Lisp files using interpreted code. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2946 * international/mule.el (charset-id, charset-bytes, |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2947 charset-dimension, charset-chars, charset-width, |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2948 charset-direction, charset-iso-final-char, |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2949 charset-iso-graphic-plane, charset-reverse-charset, |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2950 charset-short-name, charset-long-name, charset-description, |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2951 charset-plist): Likewise. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2952 * subr.el (save-match-data): Likewise. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2953 |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2954 * international/mule-cmds.el |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2955 (set-display-table-and-terminal-coding-system): New function, |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2956 containing code migrated out of set-language-environment. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2957 (set-language-environment, set-locale-environment): Use it. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2958 (locale-translation-file-name): Moved here from startup.el. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2959 (locale-language-names, locale-preferred-coding-systems): |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2960 New vars. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2961 (locale-name-match, set-locale-environment): New functions. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2962 |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2963 * language/japan-util.el (setup-japanese-environment-internal): |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2964 Prefer japanese-iso-8bit if the system-type is usg-unix-v. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2965 |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2966 * startup.el (iso-8859-n-locale-regexp): Remove. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2967 (locale-translation-file-name): Move to mule-cmds.el. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2968 (command-line): Move locale-stuff into set-locale-environment. |
804cba424b64
Fix bootstrapping problems.
Paul Eggert <eggert@twinsun.com>
parents:
26080
diff
changeset
|
2969 |
26080 | 2970 1999-10-18 Dave Love <fx@gnu.org> |
2971 | |
2972 * abbrev.el (add-abbrev, inverse-add-abbrev) | |
2973 (expand-region-abbrevs): Remove properties from buffer text. | |
2974 | |
26064 | 2975 1999-10-17 Gerd Moellmann <gerd@gnu.org> |
2976 | |
26066 | 2977 * iswitchb.el (iswitchb-exhibit): Extract user-input only |
2978 from the mini-buffer, without the prompt. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2979 |
26064 | 2980 * simple.el (minibuffer-prompt-end): Return the position |
2981 after the prompt, not the position of that last character | |
2982 of the prompt. | |
2983 | |
26061 | 2984 1999-10-17 Miles Bader <miles@gnu.org> |
2985 | |
2986 * simple.el: Doc fixes. | |
2987 | |
2988 1999-10-17 Miles Bader <miles@gnu.org> | |
2989 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2990 * simple.el (previous-matching-history-element, next-history-element): |
26061 | 2991 Change to work correctly even if the point is in the prompt. |
2992 (choose-completion-string): Likewise. | |
2993 (minibuffer-prompt-width): New function (compatibility with old subr). | |
2994 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
2995 * textmodes/paragraphs.el (forward-sentence, forward-paragraph): |
26061 | 2996 When constraining the final position to the current field, |
2997 don't use the ONLY-IN-LINE mode of constrain-to-field. | |
2998 | |
2999 1999-10-17 Miles Bader <miles@gnu.org> | |
3000 | |
3001 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to | |
3002 constrain-to-field. | |
3003 * textmodes/paragraphs.el (forward-sentence): Likewise. | |
3004 | |
3005 1999-10-17 Miles Bader <miles@gnu.org> | |
3006 | |
3007 * simple.el (line-move): Use constrain-to-field to avoid | |
3008 moving into a prompt. | |
3009 (previous-complete-history-element): Clarify doc string. | |
3010 (next-complete-history-element): Likewise. | |
3011 Use field-beginning instead of point-min. | |
3012 (next-matching-history-element): Use field-beginning and | |
3013 erase-field instead of point-min and erase-buffer. | |
3014 * textmodes/paragraphs.el | |
3015 (forward-paragraph, forward-sentence): Likewise. | |
3016 (backward-kill-paragraph, backward-kill-sentence): Remove code to | |
3017 constrain the kill to an field, as the movement commands now | |
3018 do this. | |
3019 | |
3020 1999-10-17 Miles Bader <miles@gnu.org> | |
3021 | |
3022 * simple.el (previous-matching-history-element): Get the | |
3023 minibuffer input with field-string instead of buffer-string. | |
3024 (choose-completion-string): Likewise. | |
3025 (next-history-element): Likewise. | |
3026 Erase the minibuffer input with erase-field, not erase-buffer. | |
3027 Use field-beginning to find the beginning of the input. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3028 * textmodes/paragraphs.el (backward-kill-sentence): |
26061 | 3029 Remove minibuffer-prompt hack. |
3030 Constrain to any input field. | |
3031 | |
26053 | 3032 1999-10-17 Sam Steingold <sds@ksp.com> |
3033 | |
3034 * bindings.el (completion-ignored-extensions): Added ".sparcf" | |
3035 for CMUCL on sparc and ".ufsl" for LispWorks. | |
3036 (bound-and-true-p): Bugfix: free variable `v'. | |
3037 | |
26050 | 3038 1999-10-16 Dave Love <d.love@dl.ac.uk> |
3039 | |
3040 * emacs-lisp/edebug.el (edebug-install-read-eval-functions) | |
3041 (edebug-uninstall-read-eval-functions): Use load-read-function, | |
3042 avoiding elisp-eval. | |
3043 | |
26048 | 3044 1999-10-16 Sam Steingold <sds@ksp.com> |
3045 | |
3046 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq' | |
3047 instead of `eql'. | |
3048 | |
26039
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3049 1999-10-14 Stefan Monnier <monnier@cs.yale.edu> |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3050 |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3051 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3052 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file), |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3053 (browse-url-temp-file-list, browse-url-delete-temp-file-list): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3054 * ediff-util.el (ediff-make-temp-file): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3055 * ediff-vers.el (ediff-pcl-cvs-view-revision): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3056 * emerge.el (emerge-make-temp-file): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3057 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3058 * vc.el (vc-update-change-log): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3059 * mail/mailpost.el (post-mail-send-it): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3060 * mail/metamail.el (metamail-region): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3061 * progmodes/cmacexp.el (c-macro-expansion): |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3062 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file. |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26029
diff
changeset
|
3063 |
26029 | 3064 1999-10-15 Gerd Moellmann <gerd@gnu.org> |
3065 | |
3066 * smtpmail.el (smtpmail-via-smtp): Add support for | |
3067 automatically appending a domain to RCPT TO: addresses. | |
3068 | |
26027 | 3069 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
3070 | |
3071 * dired.el (dired-insert-directory): Insert the amount of | |
3072 free space after the total size. | |
3073 (dired-free-space-program, dired-free-space-args): New variables. | |
3074 | |
26023 | 3075 1999-10-14 Karl Heuer <kwzh@gnu.org> |
3076 | |
3077 * mail/rmail.el (rmail-pop-password-error): Add new pattern. | |
3078 | |
26017 | 3079 1999-10-14 Dave Love <fx@gnu.org> |
3080 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3081 * international/characters.el: |
26017 | 3082 * international/fontset.el: |
3083 * international/mule-conf.el: Add latin-iso8859-1[45]. | |
3084 | |
3085 * language/european.el: Add Latin-8, Latin-9. Modify some doc | |
3086 strings. | |
3087 | |
3088 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89]. | |
3089 (command-line): Detect Latin-[89] locales. | |
3090 | |
26011 | 3091 1999-10-13 Stefan Monnier <monnier@cs.yale.edu> |
3092 | |
3093 * international/mule-cmds.el (select-safe-coding-system) | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3094 (leim-list-header): Avoid the use of strings that start with backslash |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3095 newline since lread.c:read1 has a hack to turn those strings into |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3096 integer 0 during the loadup.el process. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3097 |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3098 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially. |
26011 | 3099 |
26008 | 3100 1999-10-13 Dave Love <fx@gnu.org> |
3101 | |
3102 * image.el (insert-image): Copy the image spec and add an | |
3103 intangible property. | |
3104 | |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
3105 1999-10-13 Stefan Monnier <monnier@cs.yale.edu> |
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
3106 |
26008 | 3107 * help.el (help-xref-interned): Make it also work on variable-only |
3108 and function-only symbols. | |
3109 (help-make-xrefs): Take advantage of the new `help-xref-interned'. | |
3110 (help-follow): If the point under mouse is not highlighted, try | |
3111 `help-xref-interned' on the pointed-to symbol anyway. | |
3112 | |
3113 * info.el (Info-on-current-buffer): New entry point. | |
3114 (Info-find-node): Split into two for Info-on-current-buffer to | |
3115 hook into it. | |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
3116 (Info-current-file, Info-set-mode-line, Info-up): |
26008 | 3117 Info-current-file can now be t. |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3118 (Info-clone-buffer-hook): Function for `clone-buffer'. |
26008 | 3119 (Info-goto-node, Info-menu, Info-mode-map, Info-mode): |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3120 Make `clone-buffer' available in various ways to the user. |
26004
11f91800bec3
(Info-on-current-buffer): new entry point.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26003
diff
changeset
|
3121 |
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26001
diff
changeset
|
3122 1999-10-12 Stefan Monnier <monnier@cs.yale.edu> |
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26001
diff
changeset
|
3123 |
26008 | 3124 * simple.el (shell-command, shell-command-on-region): Use |
3125 make-temp-file. | |
3126 (clone-buffer, clone-process, clone-buffer-hook): New functions. | |
3127 | |
3128 * subr.el (with-current-buffer): Don't use backquotes to avoid | |
3129 bootstrapping problems. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3130 |
26008 | 3131 * loadup.el (load-path): Add subdirs for bootstrapping. |
3132 (docstrings): Ignore errors during bootstrapping. | |
3133 (args): New `bootstrap' argument (for use in place of `dump'). | |
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26001
diff
changeset
|
3134 |
26001 | 3135 1999-10-12 Emmanuel Briot <briot@gnat.com> |
3136 | |
3137 * ada-stmt.el: Doc-string fixes. | |
3138 | |
25991 | 3139 1999-10-12 Gerd Moellmann <gerd@gnu.org> |
3140 | |
25998 | 3141 * recentf.el: New file. |
3142 | |
25991 | 3143 * ps-mode.el: New file. |
3144 | |
3145 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps, | |
3146 case insensitive. | |
3147 | |
25985 | 3148 1999-10-12 Richard Sharman <rsharman@pobox.com> |
3149 | |
3150 * sh-script.el: Added support for indenting existing scripts. | |
3151 (sh-mode-map): Added new bindings. | |
3152 (sh-mode): Updated mode doc-string for new commands, added | |
3153 make-local-variable calls, initialize mode-specific variables. | |
3154 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line | |
3155 is now a different function. | |
3156 (sh-header-marker): Changed docstring. | |
3157 (sh-set-shell): Initialize mode-specific variables. | |
3158 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select) | |
3159 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts): | |
3160 Changed these define-skeleton calls to work with user-specified | |
3161 indentation settings. | |
3162 (sh-basic-indent-line, sh-blink, sh-calculate-indent) | |
3163 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing) | |
3164 (sh-electric-hash, sh-electric-less, sh-electric-rparen) | |
3165 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info) | |
3166 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word) | |
3167 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if) | |
3168 (sh-guess-basic-offset, sh-handle-after-case-label) | |
3169 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do) | |
3170 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac) | |
3171 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open) | |
3172 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close) | |
3173 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else) | |
3174 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case) | |
3175 (sh-handle-this-then, sh-help-string-for-variable) | |
3176 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent) | |
3177 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init) | |
3178 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp) | |
3179 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style) | |
3180 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable) | |
3181 (sh-remove-our-text-properties, sh-rescan-buffer) | |
3182 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp) | |
3183 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer) | |
3184 (sh-scan-case, sh-search-word, sh-set-char-syntax) | |
3185 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value) | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3186 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New |
25985 | 3187 functions. |
3188 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax) | |
3189 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done) | |
3190 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done) | |
3191 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist) | |
3192 (sh-var-list): New variables. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3193 |
25983 | 3194 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk> |
3195 | |
25999 | 3196 * quickurl.el (quickurl-list-insert): `count-lines' was returning |
3197 a value one line to high if the cursor wasn't at the start of a | |
3198 line. A `beginning-of-line' is now performed before making the | |
3199 call to `count-lines'. | |
25983 | 3200 |
25979
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
3201 1999-10-11 Stefan Monnier <monnier@cs.yale.edu> |
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
3202 |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3203 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice. |
25979
e1d167cf6e96
(vc-backend-diff): get rid of the autoloaded advice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25970
diff
changeset
|
3204 |
25960 | 3205 1999-10-09 Stefan Monnier <monnier@cs.yale.edu> |
3206 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3207 * Makefile (setwins): Abstract out the command to find subdirectories |
25962 | 3208 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base). |
25970 | 3209 (custom-deps, finder-data, autoloads, update-subdirs, updates) |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3210 (autoloads-with-other-emacs): Use it. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3211 |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3212 * diff-mode.el: New file. A mode for viewing/editing context diffs. |
25960 | 3213 |
25942 | 3214 1999-10-09 Gerd Moellmann <gerd@gnu.org> |
3215 | |
3216 * Makefile (bootstrap-compile): New target. Compile Lisp | |
3217 files with ../src/temacs. | |
3218 | |
25939 | 3219 1999-10-08 Simon Marshall <simon@gnu.org> |
3220 | |
3221 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function. | |
3222 (regexp-opt-group): Use it to get common suffixes in STRINGS. | |
3223 If STRINGS is nil, return "" rather than nil. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3224 |
25937 | 3225 1999-10-08 Gerd Moellmann <gerd@gnu.org> |
3226 | |
3227 * Makefile (compile): Compile files one by one. Set load-path to | |
3228 current directory and subdirectories when compiling. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3229 |
25918 | 3230 1999-10-08 Gerd Moellmann <gerd@gnu.org> |
3231 | |
3232 * Makefile (EMACSOPT, DONTCOMPILE, EL): New. | |
3233 (emacs): Use it everywhere instead of EMACS. | |
3234 (compile): New target. Compile all Lisp files from scratch. | |
3235 (recompile): New target. Recompile lisp directory. | |
3236 (autoloads-with-other-emacs): New target. Build loaddefs.el with | |
3237 an Emacs executable not built in the current directory tree. | |
3238 | |
25908 | 3239 1999-10-07 Peter Breton <pbreton@ne.mediaone.net> |
3240 | |
3241 * filecache.el (file-cache-completion-ignore-case): New variable, | |
3242 defaulting to the value of completion-ignore-case. | |
3243 (file-cache-minibuffer-complete): Use it. | |
3244 (file-cache-files-matching, file-cache-files-matching-internal): | |
3245 New functions. | |
3246 | |
25905
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3247 1999-10-07 Emmanuel Briot <briot@gnat.com> |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3248 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3249 * ada-xref.el: New file |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3250 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3251 * ada-prj.el: New file |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3252 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3253 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3254 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3255 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3256 subprogram being created. |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3257 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3258 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*, |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3259 ada-indent-newline-indent): Rewritten to support the new indentation |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3260 scheme |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3261 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3262 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions): |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3263 New functions |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3264 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3265 * ada-mode.el (ada-fill-comment-paragraph): Add support for the |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3266 justification parameter |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3267 |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3268 * ada-mode.el (ada-make-body, ada-gen-treat-proc, |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3269 ada-make-subprogram-body): Rewritten to benefit from the gnatstub |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3270 external program |
1394eb90cc8d
(log-view-mode-map): Bind "q", "z", "m" and "d".
Gerd Moellmann <gerd@gnu.org>
parents:
25900
diff
changeset
|
3271 |
25900 | 3272 1999-10-07 Dave Love <fx@gnu.org> |
3273 | |
3274 * bindings.el (bound-and-true-p): New macro. | |
3275 (make-mode-line-mouse-sensitive): Don't require easymenu. | |
3276 | |
25886 | 3277 1999-10-07 Gerd Moellmann <gerd@gnu.org> |
3278 | |
3279 * custom.el (defface): Extend documentation for new values of | |
3280 `type'. | |
3281 | |
3282 * faces.el (face-spec-set-match-display): Recognize `type' of | |
3283 `motif', `lucid', `x-toolkit'. | |
3284 (menu): New face. | |
3285 | |
25870 | 3286 1999-10-05 Dave Love <fx@gnu.org> |
3287 | |
3288 * files.el: Recognize temporary crontab files. | |
3289 | |
25873 | 3290 * info.el: Require jka-compr when compiling. |
3291 (Info-suffix-list): Add bzip2 files (non-ms-dos only). | |
3292 | |
25866 | 3293 1999-10-04 Dave Love <fx@gnu.org> |
3294 | |
3295 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines, | |
3296 scroll-up-aggressively, scroll-down-aggressively. | |
3297 | |
3298 * time.el (display-time-mode): Add autoload cookie. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3299 |
25867 | 3300 * rect.el (delete-extract-rectangle): Doc fix from verna. |
25866 | 3301 |
3302 * help-macro.el (three-step-help): Customize. | |
3303 | |
25926 | 3304 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
3305 | |
3306 * hexl.el (hexlify-buffer): Move point in proper range | |
3307 if it is too large. | |
3308 (hexl-after-revert-hook): Update hexl-max-address. | |
3309 (hexl-address-to-marker): Doc fix. | |
3310 | |
25865 | 3311 1999-10-03 Dave Love <fx@gnu.org> |
3312 | |
3313 * image.el (defimage): Remove redundant code. Substitute file in | |
3314 image plist. | |
3315 | |
3316 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
3317 | |
3318 * vc.el (vc-backend-checkout): Use coding system 'no-conversion | |
3319 when doing with-temp-file. | |
3320 | |
3321 1999-10-01 Dave Love <fx@gnu.org> | |
3322 | |
3323 * cus-edit.el (custom-comment-create): Fill :from and :to slots. | |
3324 | |
3325 * help.el: Require view when compiling. | |
3326 (view-emacs-FAQ): Use Info version. | |
3327 | |
25837 | 3328 1999-09-29 Ken'ichi Handa <handa@gnu.org> |
3329 | |
3330 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed | |
3331 (normat->normal). Use correct font names for Korean | |
3332 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H). | |
3333 | |
3334 1999-09-29 Kenichi Handa <handa@etl.go.jp> | |
3335 | |
3336 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit | |
3337 code not used by KOI8 to the same 8-bit code instead of mapping to | |
3338 SPC. | |
3339 (cyrillic-alternativnyj-decode-table): Likewise. | |
3340 | |
3341 1999-09-29 Alex Schroeder <alex@gnu.org> | |
3342 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3343 * sql.el (sql-imenu-generic-expression): Aew, used to set |
25837 | 3344 imenu-generic-expression. |
3345 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting | |
3346 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression, | |
3347 imenu-case-fold-search, and imenu-syntax-alist. | |
3348 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when | |
3349 setting font-lock-defaults' SYNTAX-ALIST. | |
3350 | |
26025 | 3351 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
3352 | |
3353 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard | |
3354 macro, try again. | |
3355 | |
25837 | 3356 1999-09-28 Dave Love <fx@gnu.org> |
3357 | |
3358 * cus-edit.el (custom-comment): Change widget definition. | |
3359 (custom-comment-create, custom-comment-show) | |
3360 (custom-comment-invisible-p): Don't use :comment-overlay. | |
3361 (custom-comment-hide): New function. | |
3362 (custom-variable-set, custom-variable-save) | |
3363 (custom-variable-reset-standard, custom-face-set) | |
3364 (custom-face-save): Use it. | |
3365 | |
25946 | 3366 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
3367 | |
25949 | 3368 * hexl.el (hexl-mode): Do nothing if already in hexl mode. |
3369 | |
3370 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu> | |
3371 | |
25946 | 3372 * faces.el (region): Doc fix. |
3373 | |
25837 | 3374 1999-09-27 Dave Love <fx@gnu.org> |
3375 | |
3376 * isearch.el (isearch): Add :links in defgroup. | |
3377 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank. | |
3378 (isearch-switch-frame-handler): Comment out (unused). | |
3379 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix. | |
3380 (isearch-ring-retreat-edit): Doc fix. | |
3381 (isearch-mouse-yank): New command. | |
3382 (isearch-last-command-char): Removed. Callers changed to use | |
3383 last-command-char. | |
3384 (isearch-char-to-string): Removed. Callers changed to use | |
3385 char-to-string. | |
3386 | |
25944 | 3387 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru> |
3388 | |
3389 * ispell.el (ispell-dictionary-alist-6): Don't use "-C" | |
3390 option for Russian. | |
3391 | |
25837 | 3392 1999-09-25 Gerd Moellmann <gerd@gnu.org> |
3393 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3394 * faces.el (face-differs-from-default-p): Compare face |
25837 | 3395 attributes individually. |
3396 | |
3397 * image.el (put-image, insert-image): Add string argument. | |
3398 | |
3399 1999-09-24 Gerd Moellmann <gerd@gnu.org> | |
3400 | |
3401 * ange-ftp.el (ange-ftp-date-regexp): Make it work for | |
3402 LANG=de_DE.iso88591 on HPUX 11.0. | |
3403 | |
3404 * dired.el (dired-move-to-filename-regexp): Make it work | |
3405 for LANG=de_DE.iso88591 on HPUX 11.0. | |
3406 | |
26171 | 3407 1999-09-24 Richard M. Stallman <rms@caffeine.ai.mit.edu> |
3408 | |
3409 * info.el (info-initialize): Don't test existence of ALTERNATIVE | |
3410 if we know for some other reason it should not be used. | |
3411 | |
26179 | 3412 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg): |
3413 New variable. | |
3414 (edebug-recursive-edit): Save current-prefix-arg there, | |
3415 bind it, and set it back at the end. | |
3416 (edebug-outside-excursion): Restore and update the outside | |
3417 value of current-prefix-arg. | |
3418 (edebug-emacs-version-specific): Delete support for Epoch. | |
3419 | |
26180 | 3420 1999-09-24 Howard Melman <howard@silverstream.com> |
3421 | |
3422 * imenu.el (imenu-after-jump-hook): New variable. | |
3423 (imenu): Run menu-after-jump-hook. | |
3424 (imenu-name-lookup-function): New variable. | |
3425 * imenu.el (imenu--in-alist): Use those variables. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3426 |
25837 | 3427 1999-09-24 Carsten Dominik <cd@gnu.org> |
3428 | |
3429 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3430 multiple thebibliography environments. |
25837 | 3431 |
3432 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug | |
3433 with recentering window. | |
3434 (reftex-extract-bib-entries-from-thebibliography, | |
3435 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal | |
3436 with multiple thebibliography environments. | |
3437 | |
3438 * textmodes/reftex-vars.el | |
3439 (reftex-section-levels): Function allowed as cdr. | |
3440 (reftex-max-section-depth) New option. | |
3441 | |
3442 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal | |
3443 with multiple thebibliography environments. | |
3444 | |
3445 1999-09-23 Gerd Moellmann <gerd@gnu.org> | |
3446 | |
3447 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end | |
3448 instead of point-min in call to delete-region. | |
3449 | |
3450 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
3451 | |
3452 * vc.el (vc-backend-checkout): Use with-temp-file when checking | |
3453 out into arbitrary file names. | |
3454 | |
3455 1999-09-19 Ken'ichi Handa <handa@gnu.org> | |
3456 | |
3457 * language/european.el ("Turkish"): New language environment. | |
3458 | |
3459 1999-09-19 Dave Love <fx@gnu.org> | |
3460 | |
3461 * delim-col.el: New file. | |
3462 | |
3463 1999-09-17 Richard Stallman <rms@gnu.org> | |
3464 | |
3465 * files.el (after-find-file): When visiting a backup file, | |
3466 make it read-only. | |
3467 | |
3468 * apropos.el (apropos-symbol-face): Non-nil even for ttys. | |
3469 (apropos-keybinding-face, apropos-label-face): Likewise. | |
3470 (apropos-property-face, apropos-match-face): Likewise. | |
3471 (apropos-label-properties): New variable. | |
3472 (apropos-print-doc): Use apropos-label-properties. | |
3473 (apropos-print): Set apropos-label-properties. | |
3474 | |
3475 1999-09-15 Richard Stallman <rms@gnu.org> | |
3476 | |
3477 * winner.el: Use aref instead of sref. | |
3478 | |
3479 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars. | |
3480 | |
3481 1999-09-14 Gerd Moellmann <gerd@gnu.org> | |
3482 | |
3483 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print. | |
3484 | |
3485 1999-09-14 Richard Stallman <rms@gnu.org> | |
3486 | |
3487 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload | |
3488 cookie, even if followed by a letter. | |
3489 | |
3490 1999-09-14 Stephen Eglen <stephen@gnu.org> | |
3491 | |
3492 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and | |
3493 --no-line-editing are passed to Octave by including them here | |
3494 rather than storing them in inferior-octave-startup-args. | |
3495 | |
3496 1999-09-14 Eli Zaretskii <eliz@gnu.org> | |
3497 | |
3498 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref, | |
3499 command, option, env and sc. | |
3500 | |
3501 * subr.el (shell-quote-argument): Quote argument with double | |
3502 quotes for ms-dos. | |
3503 | |
3504 1999-09-14 Richard Stallman <rms@gnu.org> | |
3505 | |
3506 * simple.el (eval-expression-print-level): New variable. | |
3507 (eval-expression-print-length): New variable. | |
3508 (eval-expression-debug-on-error): New variable. | |
3509 (eval-expression): Bind print-level, print-length and | |
3510 debug-on-error from those vars. | |
3511 | |
3512 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp): | |
3513 Bind print-level, print-length and debug-on-error. | |
3514 | |
3515 1999-09-14 Inge Frick <inge@nada.kth.se> | |
3516 | |
3517 * dired.el (dired-recursive-deletes): New custom variable. | |
3518 (dired-re-no-dot): New variable. | |
3519 (dired-delete-file): New function deletes files and directories | |
3520 recursively. | |
3521 (dired-internal-do-deletions): Use `dired-delete-file' to delete files. | |
3522 | |
3523 * dired-aux.el (dired-recursive-copies): New custom variable. | |
3524 (dired-handle-overwrite): Broke a long line. | |
3525 (dired-copy-file): Call `dired-copy-file-recursive' instead of | |
3526 `copy-file'. | |
3527 (dired-copy-file-recursive): New function. Copy directories | |
3528 recursively. | |
3529 (dired-do-create-files): Added support for generalized directory | |
3530 target. How-to function may now return a function. New fluid | |
3531 variable `dired-one-file'. | |
3532 (dired-copy-how-to-fn): New variable. | |
3533 (dired-do-copy): Bind `dired-recursive-copies' to preserve it. | |
3534 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files. | |
3535 (dired-do-copy-regexp): No recursive copies. | |
3536 | |
3537 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com> | |
3538 | |
3539 * whitespace.el (whitespace-version): Update version to 2.4 | |
3540 | |
3541 * whitespace.el: Add customization variables to conditionally test | |
3542 any of the five whitespaces, per request from Rune Kleveland | |
3543 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>. | |
3544 | |
3545 * whitespace.el (whitespace-spacetab-regexp): Fix doc string. | |
3546 | |
3547 * whitespace.el (whitespace-modes): Add `change-log-mode' to the | |
3548 list of modes to be checked for bogus whitespaces. | |
3549 | |
3550 * whitespace.el (whitespace-rescan-timer-time): Update | |
3551 documentation. | |
3552 | |
3553 * whitespace.el (whitespace-display-unchecked-whitespaces): | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3554 New function to update modeline with untested whitespaces. |
25837 | 3555 |
3556 * whitespace.el (whitespace-buffer): Test only whitespaces whose | |
3557 checking is turned on, and update modeline using the newly created | |
3558 `whitespace-display-unchecked-whitespaces'. | |
3559 | |
3560 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces | |
3561 whose checking is turned on, and update modeline using the newly | |
3562 created `whitespace-display-unchecked-whitespaces'. | |
3563 | |
3564 * whitespace.el (whitespace-describe): Update documentation. | |
3565 | |
3566 * whitespace.el (whitespace-tickle-timer): Test if | |
3567 `whitespace-rescan-timer-time' is non-zero before tickling timer. | |
3568 | |
3569 1999-09-13 Dave Love <fx@gnu.org> | |
3570 | |
3571 * hideif.el (hide-ifdef-mode): Add autoload cookie. | |
3572 | |
3573 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode | |
3574 for temp buffer. | |
3575 (checkdoc-this-string-valid): Don't assume default comment-start. | |
3576 | |
3577 1999-09-13 Gerd Moellmann <gerd@gnu.org> | |
3578 | |
3579 * rsz-mini.el: Remove code, keep the interface. | |
3580 | |
3581 1999-09-13 Dave Love <fx@gnu.org> | |
3582 | |
3583 * help.el (help-highlight-p): Doc fix. | |
3584 | |
3585 * faces.el (mode-line, header-line, tool-bar): Add :version. | |
3586 (highlight, secondary-selection): Add :group. | |
3587 (trailing-whitespace): Add :group, :version. | |
3588 | |
3589 * wid-edit.el: Remove some compatibility code and checks. | |
3590 (widget-specify-field, widget-specify-button): Don't use XEmacs | |
3591 properties. | |
3592 (widget-overlay-inactive): Change error message. | |
3593 (widget-button-pressed-face): New variable. | |
3594 (widget-button-click): Use it. | |
3595 (widget-documentation-link-add): Specify mouse and button faces. | |
3596 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions | |
3597 removed now the functionality is built in. | |
3598 | |
3599 * cus-edit.el: Don't define-widget-keywords. | |
3600 (multimedia): New group. | |
3601 (custom-last): Function removed. | |
3602 (custom-quote): Add vectorp case, comment out characterp case. | |
3603 (custom-buffer-done-function, custom-raised-buttons): New option. | |
3604 (Custom-buffer-done): New function. | |
3605 (custom-buffer-create-internal): Obey custom-raised-buttons, | |
3606 Custom-buffer-done. | |
3607 (custom-button-face): Make it `released-button'. | |
3608 (custom-button-pressed-face): Make it `pressed-button' | |
3609 (custom-mode-map): Bind "q" to Custom-buffer-done. | |
3610 (custom-mode): Deal with raised/pressed buttons. | |
3611 | |
3612 Changes from Didier Verna: | |
3613 (custom-prompt-variable): Optional third arg makes prompt for a | |
3614 comment string. | |
3615 (customize-set-value, customize-set-variable, | |
3616 customize-save-variable): Optional prefix makes function handle | |
3617 variable comments. | |
3618 (customize-customized, customize-saved, custom-variable-state-set) | |
3619 (custom-variable-set, custom-variable-save, custom-face-state-set) | |
3620 (custom-variable-reset-saved, custom-variable-reset-standard) | |
3621 (custom-face-set, custom-face-save, custom-face-reset-saved) | |
3622 (custom-face-reset-standard, customize-save-customized): Handle | |
3623 custom comments. | |
3624 (custom-comment-face, custom-comment-tag-face): New face. | |
3625 (custom-comment): New widget. | |
3626 (custom-comment-create, custom-comment-delete) | |
3627 (custom-comment-value-set, custom-comment-show) | |
3628 ()custom-comment-invisible-p): New functions. | |
3629 (custom-variable-value-create, custom-face-value-create): Create a | |
3630 comment field widget. | |
3631 (custom-variable-menu, custom-face-menu): New entry for custom | |
3632 comment. | |
3633 (custom-face-value-create): Remove compatibility code. | |
3634 (custom-save-variables, custom-save-faces): Possibly save custom | |
3635 comments. | |
3636 | |
3637 * cus-face.el (custom-face-attributes): Simplify :underline, | |
3638 :overline, :inverse-video cases. Fix up :box case (probably needs | |
3639 more work). | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3640 |
25837 | 3641 Change from Didier Verna: |
3642 (custom-set-faces): The arguments can now have a custom comment as | |
3643 fourth argument. | |
3644 | |
3645 * custom.el: Don't define-widget-keywords. | |
3646 Change from Didier Verna: | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
3647 (custom-set-variables): The arguments can now have a |
25837 | 3648 custom comment as fifth element. |
3649 | |
3650 1999-09-13 Richard Stallman <rms@gnu.org> | |
3651 | |
3652 * info.el (Info-find-node): Cope better if guesspos is too large. | |
3653 | |
3654 1999-09-12 Gerd Moellmann <gerd@gnu.org> | |
3655 | |
3656 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3657 of buffer-substring because buffer-string doesn't copy the |
25837 | 3658 prompt. |
3659 | |
3660 * faces.el (mode-line): Replaces `modeline'. | |
3661 (toplevel): Make `modeline' an alias for `mode-line'. | |
3662 | |
3663 1999-09-12 Gerd Moellmann <gerd@gnu.org> | |
3664 | |
3665 * gs.el: Change `ghostscript' to `postscript' in comment. | |
3666 | |
3667 1999-09-11 Rob Riepel <riepel@Stanford.EDU> | |
3668 | |
3669 * emulation/tpu-edt.el (tpu-version): New version. | |
3670 (tpu-search-overlay, tpu-replace-overlay): New variables. | |
3671 (tpu-search-highlight, tpu-toggle-direction): New functions. | |
3672 (tpu-lm-replace): Set tpu-replace-overlay. | |
3673 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post | |
3674 command hook. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3675 |
25837 | 3676 1999-09-11 Richard Stallman <rms@gnu.org> |
3677 | |
3678 * isearch.el (isearch-mode-map): Undo previous change. | |
3679 | |
3680 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER, | |
3681 use all of that as the sexp. | |
3682 | |
3683 * files.el (find-file-noselect): Catch errors in file-expand-wildcards, | |
3684 and use the initial argument as file name directly. | |
3685 Likewise if nothing matches. | |
3686 | |
3687 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no> | |
3688 | |
3689 * winner.el: Major changes. Avoid changing point and mark. | |
3690 Save configurations after they change, not before. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3691 |
25837 | 3692 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu> |
3693 | |
3694 * emacs-lisp/bytecomp.el (byte-compile-output-docform): | |
3695 Bind print-continuous-numbering and print-number-table. | |
3696 | |
3697 1999-09-10 Dave Love <fx@gnu.org> | |
3698 | |
3699 * bindings.el (debug-ignored-errors): Restore BBDB stuff. | |
3700 | |
3701 1999-09-09 Richard Stallman <rms@gnu.org> | |
3702 | |
3703 * whitespace.el: Finish making it fit Emacs conventions. | |
3704 Add autoloads. | |
3705 | |
3706 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il> | |
3707 | |
3708 * generic-x.el (bat-generic-mode): "::"-style comments don't | |
3709 need to begin with "-". Fix the font-lock definitions of ON/OFF | |
3710 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO | |
3711 from the list of keywords. Add DO to the list of keywords. | |
3712 | |
3713 1999-09-09 Dave Love <fx@gnu.org> | |
3714 | |
26943 | 3715 * emacs-lisp/byte-opt.el (byte-optimize-backward-char): |
25837 | 3716 (byte-optimize-backward-word): New optimizations. |
3717 (side-effect-free-fns, side-effect-and-error-free-fns): Add | |
3718 entries. | |
3719 | |
3720 1999-09-09 Gerd Moellmann <gerd@gnu.org> | |
3721 | |
3722 * image.el (put-image): Remove optional buffer parameter. | |
3723 | |
3724 * faces.el (face-italic-p): Return t only for values `italic' | |
3725 and `oblique'. | |
3726 | |
3727 * mouse.el (mouse-drag-mode-line-1): Extension of former | |
3728 mouse-drag-mode-line that also drags the header line. | |
3729 (mouse-drag-mode-line): Call it. | |
3730 (mouse-drag-header-line): New. | |
3731 (toplevel): Bind down-mouse-1 on header lines to | |
3732 mouse-drage-header-line. | |
3733 | |
3734 1999-09-08 Gerd Moellmann <gerd@gnu.org> | |
3735 | |
3736 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref. | |
3737 (make-mode-line-mouse-sensitive): Replace `top-line' by | |
3738 `header-line'. | |
3739 | |
3740 1998-09-08 Michael Ernst <mernst@alum.mit.edu> | |
3741 | |
3742 * help.el (describe-function-1): Don't return empty string for keymaps. | |
3743 | |
3744 * fill.el (fill-region-as-paragraph, canonically-space-region): | |
3745 Respect colon-double-space at end of line. | |
3746 | |
3747 1999-09-08 Stephen Gildea <gildea@alum.mit.edu> | |
3748 | |
3749 * files.el (backup-by-copying-when-privileged-mismatch): New variable. | |
3750 (backup-buffer): Use it. | |
3751 | |
3752 1999-09-08 Peter Breton <pbreton@ne.mediaone.net> | |
3753 | |
3754 * generic-x.el (generic-define-unix-modes): Added new modes: | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3755 inetd-conf-generic-mode, etc-services-generic-mode, |
25837 | 3756 etc-passwd-generic-mode. These are all defined for Unix by default. |
3757 (apache-generic-mode): Use an imenu-generic-expression to list | |
3758 Configuration keywords. | |
3759 (samba-generic-mode): Use both ; and # as comment characters. | |
3760 (samba-generic-mode): Font-lock expressions now highlight name | |
3761 value pairs. | |
3762 (bat-generic-mode): Keywords are now case-insensitive through | |
3763 font-lock-defaults setting. | |
3764 (java-properties-generic-mode): Supports both ! and # as comment | |
3765 characters. | |
3766 (java-properties-generic-mode): Added an imenu-generic-expression | |
3767 (java-properties-generic-mode): Reworked to support the various | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3768 different ways to separate name and value (viz, '=', ':' and |
25837 | 3769 whitespace). |
3770 (show-tabs-generic-mode): Added this new generic-mode. | |
3771 | |
3772 1999-09-08 Richard Stallman <rms@gnu.org> | |
3773 | |
3774 * progmodes/inf-lisp.el: Moved from top directory. | |
3775 | |
3776 * tar-mode.el (tar-header-block-tokenize): | |
3777 Use `when' instead of `and'. Fix some clobbered text. | |
3778 | |
3779 * gud.el (gud-make-debug-menu): Make a child for the | |
3780 local menu, for its menu bar, and the debug menu. | |
3781 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): | |
3782 Use the history in the simple way. | |
3783 | |
3784 1999-09-07 Kenichi Handa <handa@etl.go.jp> | |
3785 | |
3786 * language/korea-util.el (default-korean-keyboard): Initialize it | |
3787 according to the environment variable HANGUL_KEYBOARD_TYPE. | |
3788 | |
3789 1999-09-07 Richard Stallman <rms@gnu.org> | |
3790 | |
3791 * subr.el (make-temp-file): New function. | |
3792 | |
3793 1999-09-07 Stefan Monnier <monnier@cs.yale.edu> | |
3794 | |
3795 * font-lock.el (font-lock-multiline): New text property contains | |
3796 a boolean to indicate if the char is part of a multiline match. | |
3797 (font-lock-default-fontify-region): Extend the region appropriately | |
3798 for multiline keywords. | |
3799 (font-lock-default-unfontify-region): Also remove the new | |
3800 font-lock-multiline text property. | |
3801 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches. | |
3802 (font-lock-fontify-keywords-region): Mark multiline regexp matches. | |
3803 | |
3804 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
3805 | |
3806 * diary-lib.el (list-diary-entries): Make sure two-digit years | |
3807 have leading zeros. | |
3808 | |
3809 1999-09-07 Gerd Moellmann <gerd@gnu.org> | |
3810 | |
3811 * faces.el (face-set-after-frame-default): Initialize some | |
3812 attributes of some faces from frame parameters. | |
3813 | |
3814 * faces.el (scroll-bar, border, cursor, mouse): New faces. | |
3815 | |
3816 1999-09-07 Gerd Moellmann <gerd@gnu.org> | |
3817 | |
3818 * faces.el (fringe): Replaces face `margin'. | |
3819 | |
3820 1999-09-07 Dave Love <fx@gnu.org> | |
3821 | |
3822 * tar-mode.el (tar-header-block-tokenize): Bind linkname. | |
3823 | |
3824 1999-09-07 Richard Stallman <rms@gnu.org> | |
3825 | |
3826 * subr.el (push): Doc fix. | |
3827 | |
3828 1999-09-06 Richard Stallman <rms@gnu.org> | |
3829 | |
3830 * vc.el (vc-annotate-display): Use < 69 not < 70 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3831 to distinguish 20YY from 19YY. |
25837 | 3832 |
3833 * timezone.el (timezone-parse-date): Use < 69 not < 70 | |
3834 to distinguish 20YY from 19YY. | |
3835 | |
3836 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file. | |
3837 | |
3838 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk> | |
3839 | |
3840 * quickurl.el: (quickurl-list-focused-line): Removed. | |
3841 (quickurl-list-insert): Now works out the focused line using | |
3842 `count-lines' instead of using `quickurl-list-focused-line'. | |
3843 | |
3844 1999-09-06 Richard Stallman <rms@gnu.org> | |
3845 | |
3846 * mail/rmail.el (rmail-retry-failure): Unconditionally move | |
3847 to beginning of message. | |
3848 | |
3849 1999-09-06 Dave Love <fx@gnu.org> | |
3850 | |
3851 * isearch.el (isearch-mode-map): Add mouse-2. | |
3852 | |
26943 | 3853 * mail/rmail.el (rmail-read-password): Deleted. |
25837 | 3854 (rmail-get-pop-password): Use read-password. |
3855 | |
3856 * quickurl.el: Don't conditionally define caddr. | |
3857 (quickurl-url-comment): Use nth, not caddr in function and | |
3858 defsetf. | |
3859 | |
3860 1999-09-06 Richard Stallman <rms@gnu.org> | |
3861 | |
3862 * auto-show.el: Doc fixes. | |
3863 | |
3864 1999-09-06 Stephen Eglen <stephen@gnu.org> | |
3865 | |
3866 * progmodes/octave-inf.el (inferior-octave-startup-args): Add | |
3867 --no-line-editing so that TABs in source files are not interpreted | |
3868 as completion requests. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3869 |
25837 | 3870 1999-09-06 Gerd Moellmann <gerd@gnu.org> |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
3871 |
25837 | 3872 * hscroll.el, auto-show.el: Remove all code, keep the public |
3873 interface as no-ops. | |
3874 | |
3875 * faces.el (face-bold-p): Don't return t if face has lighter | |
3876 weight than normal. | |
3877 | |
3878 1999-09-06 Eli Zaretskii <eliz@gnu.org> | |
3879 | |
3880 * startup.el (command-line): Make small-temporary-file-directory | |
3881 be nil except on ms-dos. | |
3882 | |
3883 * files.el (small-temporary-file-directory): Ditto. Also doc fix. | |
3884 | |
3885 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it | |
3886 is defined. | |
3887 | |
3888 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive | |
3889 letters with a colon after d or l. | |
3890 | |
3891 1999-09-06 Dave Love <fx@gnu.org> | |
3892 | |
26943 | 3893 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now |
3894 primitive.) | |
25837 | 3895 |
3896 1999-09-05 Richard Stallman <rms@gnu.org> | |
3897 | |
3898 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY. | |
3899 | |
3900 * textmodes/paragraphs.el (backward-kill-sentence): | |
3901 Don't test minibuffer-prompt-end here. | |
3902 (forward-sentence): Do handle it here. | |
3903 (backward-kill-paragraph): Don't test it here. | |
3904 (forward-paragraph): Handle it here. | |
3905 | |
3906 * mouse.el (font-menu-add-default): Simplify code. | |
3907 | |
3908 1999-09-05 Gerd Moellmann <gerd@gnu.org> | |
3909 | |
3910 * faces.el (header-line): Renamed from `top-line'. | |
3911 | |
3912 1999-09-05 Gerd Moellmann <gerd@gnu.org> | |
3913 | |
3914 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'. | |
3915 | |
3916 1999-09-04 Richard Stallman <rms@gnu.org> | |
3917 | |
3918 * whitespace.el: New file. | |
3919 | |
3920 1999-09-04 Dave Love <fx@gnu.org> | |
3921 | |
3922 * paths.el: Make some doc strings obey the make-docfile convention. | |
3923 | |
3924 * bindings.el: Likewise. | |
3925 (debug-ignored-errors): Remove BBDB ones. | |
3926 | |
3927 1999-09-03 Richard Stallman <rms@gnu.org> | |
3928 | |
3929 * mail/mh-comp.el (mh-forward): Get new subject line from the original, | |
3930 not from the draft to forward. | |
3931 | |
3932 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun. | |
3933 | |
3934 1999-09-03 Dave Love <fx@gnu.org> | |
3935 | |
3936 * double.el (double-mode): Customize the variable. | |
3937 | |
3938 1999-09-03 Kenichi Handa <handa@etl.go.jp> | |
3939 | |
3940 * international/characters.el: Delete duplicated code. | |
3941 | |
3942 1999-09-02 Richard Stallman <rms@gnu.org> | |
3943 | |
3944 * indent.el (indent-relative): Doc fix. | |
3945 | |
3946 * quickurl.el (quickurl): Doc fix. | |
3947 | |
3948 1999-09-02 Gerd Moellmann <gerd@gnu.org> | |
3949 | |
3950 * faces.el (margin): Change background to "gray" for mono (this is | |
3951 drawn with a stipple pattern). | |
3952 | |
3953 1999-09-02 Gerd Moellmann <gerd@gnu.org> | |
3954 | |
3955 * simple.el (next-history-element): Use minibuffer-prompt-end once | |
3956 again. Remove test for minibuffer-prompt-in-buffer. | |
3957 | |
3958 1999-09-02 Eli Zaretskii <eliz@gnu.org> | |
3959 | |
3960 * files.el (small-temporary-file-directory): New variable. | |
3961 | |
3962 * startup.el (command-line): Compute the value of | |
3963 small-temporary-file-directory. | |
3964 | |
3965 * ediff-init.el (ediff-temp-file-prefix): Use | |
3966 small-temporary-file-directory if non-nil. | |
3967 | |
3968 * vc.el (vc-update-change-log): Likewise. | |
3969 | |
3970 * progmodes/cmacexp.el (c-macro-expansion): Likewise. | |
3971 | |
3972 * simple.el (shell-command, shell-command-on-region): Use | |
3973 make-temp-name properly. Use small-temporary-file-directory if | |
3974 non-nil, otherwise temporary-file-directory, to generate temporary | |
3975 files. | |
3976 | |
3977 * dos-w32.el (direct-print-region-helper): Use | |
3978 temporary-file-directory. (From Stefan Monnier.) | |
3979 | |
3980 1999-09-02 Richard Stallman <rms@gnu.org> | |
3981 | |
3982 * progmodes/asm-mode.el (asm-mode): Set comment-start properly | |
3983 from asm-comment-char. | |
3984 (asm-font-lock-keywords): Recognize instruction width suffixes. | |
3985 | |
3986 1999-09-01 Richard Stallman <rms@gnu.org> | |
3987 | |
3988 * play/fortune.el: New file. | |
3989 | |
3990 1999-08-31 Dave Love <fx@gnu.org> | |
3991 | |
3992 * help.el (help-make-xrefs): Don't lose on non-empty blank line | |
3993 after key table. | |
3994 | |
26943 | 3995 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and |
3996 redisplay variables. | |
25837 | 3997 |
3998 * subr.el (push): Fix typo. | |
3999 | |
4000 1999-08-30 Kevin Blake <kblake@ticnet.com> | |
4001 | |
4002 * emacs-lisp/ring.el: Many doc fixes. | |
4003 (ring-size, ring-copy): New functions. | |
4004 | |
4005 1999-08-29 Richard Stallman <rms@gnu.org> | |
4006 | |
4007 * progmodes/etags.el (tags-loop-continue): | |
4008 After tags-loop-operate returns, force skip to next file. | |
4009 | |
4010 * mail/mail-extr.el (mail-extr-all-letters-but-separators) | |
4011 (mail-extr-first-letters, mail-extr-last-letters): | |
4012 Use character classes [:alpha:] and [:alnum:]. | |
4013 | |
4014 * subr.el (push, pop): New macros. | |
4015 | |
4016 * progmodes/compile.el (compilation-error-regexp-alist): | |
4017 New item for SGI IRIX MipsPro compilers. | |
4018 | |
4019 * speedbar.el (speedbar-directory-buttons): Recognize | |
4020 device names when checking for file names. | |
4021 | |
4022 * array.el (array-reconfigure-rows): Use generate-new-buffer. | |
4023 | |
4024 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros, | |
4025 and specially handle defvar inside their expansions. | |
4026 (eval-defun-1): New subroutine. | |
4027 | |
4028 * progmodes/compile.el (compilation-error-regexp-alist): | |
4029 Fix the Perl -w entry to allow period after line number. | |
4030 Don't allow newlines in file name, but allow them after line number | |
4031 for Perl debugging traces. | |
4032 | |
4033 * which-func.el (which-func-cleanup-function): New variable. | |
4034 (which-function): Call that function. | |
4035 | |
4036 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or ( | |
4037 to end a function name. | |
4038 | |
4039 * informat.el (Info-tagify): Don't insert more than one newline | |
4040 before the tag table. | |
4041 | |
4042 1999-08-29 Stefan Monnier <monnier@cs.yale.edu> | |
4043 | |
4044 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather | |
4045 than make-temp-name, use match-string-no-properties, and eliminate | |
4046 a quadratic behavior when building bibtex-strings. | |
4047 | |
4048 1999-08-29 Alex Schroeder <alex@gnu.org> | |
4049 | |
4050 * comint.el (comint-input-ring-separator): New variable. | |
4051 (comint-read-input-ring): Doc change; use | |
4052 comint-input-ring-separator when reading file. | |
4053 (comint-write-input-ring): Use | |
4054 comint-input-ring-separator when writing file. | |
4055 | |
4056 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com> | |
4057 | |
4058 * informat.el (Info-tagify): Start by widening. | |
4059 Match node headers that don't list the file name, | |
4060 and more kinds of page separations. | |
4061 Strip properties during tagification. | |
4062 Use start of node header line as tag's position. | |
4063 Fix the "done" message. | |
4064 | |
4065 (Info-validate): Save and restore match data around narrowing down. | |
4066 | |
4067 1999-08-28 Richard M. Stallman <rms@gnu.org> | |
4068 | |
4069 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode): | |
4070 On repeated call, override previous values put into | |
4071 minor-mode-map-alist and minor-mode-alist. | |
4072 | |
4073 1999-08-28 Michael Ernst <mernst@alum.mit.edu> | |
4074 | |
4075 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format. | |
4076 | |
4077 1999-08-27 Andreas Schwab <schwab@gnu.org> | |
4078 | |
4079 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker | |
4080 from cvs update. | |
4081 | |
4082 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
4083 | |
4084 * calendar/calendar.el (calendar-move-hook): New hook. | |
4085 | |
4086 * calendar/cal-move.el: Call the new hook in every movement function. | |
4087 | |
4088 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload | |
4089 the right function name. | |
4090 | |
4091 1999-08-26 Stephen Gildea <gildea@alum.mit.edu> | |
4092 | |
4093 * time-stamp.el: Put quote-backquote around all symbol names | |
4094 in doc strings, for mousing. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4095 (time-stamp): Support multi-line patterns. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4096 (time-stamp-inserts-lines): New variable. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4097 (time-stamp-count): New variable. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4098 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes |
25837 | 4099 "Thu" instead of "%a". |
4100 | |
4101 1999-08-25 Gerd Moellmann <gerd@gnu.org> | |
4102 | |
4103 * simple.el (kill-word): Undo previous change. | |
4104 | |
4105 1999-08-25 Gerd Moellmann <gerd@gnu.org> | |
4106 | |
4107 * jit-lock.el (jit-lock-function): Extend the fontified range | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
4108 to the beginning of the line containing the range start and |
25837 | 4109 the beginning of the line following the range end. |
4110 | |
4111 1999-08-24 Dave Love <fx@gnu.org> | |
4112 | |
4113 * timezone.el: Move provide to end. | |
4114 (timezone-parse-date): Simplify somewhat. Assume 2-digit years | |
4115 <70 are 2000+. | |
4116 (timezone-parse-time): Simplify somewhat. | |
4117 | |
4118 1999-08-24 Gerd Moellmann <gerd@gnu.org> | |
4119 | |
4120 * faces.el (margin): Renamed from bitmap-area. | |
4121 | |
4122 1999-08-24 Alex Schroeder <alex@gnu.org> | |
4123 | |
4124 * sql.el: Doc changes. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4125 (sql-sybase): Use sql-server instead of sql-database. |
25837 | 4126 |
4127 1999-08-23 Dave Love <fx@gnu.org> | |
4128 | |
4129 * rect.el: Add/fix various doc strings. Add `*' to all the | |
4130 interactive specs. | |
4131 | |
4132 1999-08-21 Gerd Moellmann <gerd@gnu.org> | |
4133 | |
4134 * jit-lock.el (jit-lock-function): Use line-beginning-position. | |
4135 Don't unwind-protect font-lock-fontify-region. | |
4136 | |
4137 * paragraphs.el (backward-kill-paragraph): Don't move | |
4138 point into mini-buffer prompt. | |
4139 (backward-kill-sentence): Ditto. | |
4140 | |
4141 * simple.el (next-history-element): Use minibuffer-prompt-end. | |
4142 Remove test for minibuffer-prompt-in-buffer. | |
4143 (kill-word): Don't move point into mini-buffer prompt. | |
4144 | |
4145 1999-08-21 Dave Love <fx@gnu.org> | |
4146 | |
4147 * Makefile: Exclude CVS dirs like RCS. | |
4148 | |
4149 1999-08-19 Dave Love <fx@gnu.org> | |
4150 | |
4151 * tooltip.el (tooltip-mode): Customize this, per convention. | |
4152 (tooltip-active): Option deleted. | |
4153 | |
4154 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize. | |
4155 | |
4156 * hanoi.el, page-ext.el: Declare dynamic vars. | |
4157 | |
4158 * term.el: Avoid ange-ftp related compilation warnings. | |
4159 | |
4160 1999-08-18 Gerd Moellmann <gerd@gnu.org> | |
4161 | |
4162 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode' | |
4163 the default so that beginners can benefit from it without | |
4164 searching in manuals. | |
4165 | |
4166 1999-08-18 Ray Blaak <blaak@gnu.org> | |
4167 | |
4168 * progmodes/delphi.el: Consider assembly sections as blocks, to | |
4169 indent them better. Make auto-indent on newline optional. | |
4170 | |
4171 1999-08-17 Gerd Moellmann <gerd@gnu.org> | |
4172 | |
4173 * bindings.el (mode-line-modified): Look up key binding for C-x | |
4174 C-q. If it's bound call that binding, otherwise call | |
4175 toggle-read-only. | |
4176 | |
4177 1999-08-17 Dave Love <fx@gnu.org> | |
4178 | |
4179 * info.el (info): Doc fix. | |
4180 | |
4181 * finder.el (finder-known-keywords): Add `multimedia'. | |
4182 | |
4183 * apropos.el: Don't capitalize custom group name. | |
4184 | |
4185 * info-look.el: Remove compatibility code. | |
4186 (info-lookup-guess-default*): DTRT for point at start of symbol. | |
4187 (info-complete): Don't lose with point not at end of symbol. | |
4188 | |
4189 1999-08-16 Gerd Moellmann <gerd@gnu.org> | |
4190 | |
4191 * term.el (toplevel): Make face `term-default' an empty face. | |
4192 The code relied on the fact that Emacs ignored invalid faces in | |
4193 face text properties in 20.4. | |
4194 | |
4195 1999-08-16 Richard M. Stallman <rms@gnu.org> | |
4196 | |
4197 * subr.el (point-at-eol, point-at-bol): New aliases. | |
4198 | |
4199 * simple.el: Functions reordered. | |
4200 | |
4201 * rect.el (delete-rectangle-line): Use line-end-position. | |
4202 | |
4203 1999-08-16 Karl Heuer <kwzh@gnu.org> | |
4204 | |
4205 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved | |
4206 here from simple.el. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
4207 |
25837 | 4208 1999-08-16 Dave Love <fx@gnu.org> |
4209 | |
4210 * mouse.el: Provide `mldrag' for compatibility. | |
4211 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases, | |
4212 marked obsolete. | |
4213 | |
4214 * mldrag.el: Removed since the features are in mouse.el. | |
4215 | |
4216 * jka-compr.el (auto-compression-mode): New variable for | |
4217 customization. | |
4218 | |
4219 * bindings.el (mode-line-mule-info): Doc fix. | |
4220 | |
4221 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in | |
4222 name comparisons. | |
4223 | |
4224 * files.el (interpreter-mode-alist): Add make, guile, clisp. | |
4225 (find-file): Doc fix. | |
4226 | |
4227 1999-08-16 Carsten Dominik <cd@gnu.org> | |
4228 | |
4229 * textmodes/reftex.el: Most of the code moved to other files. | |
4230 * textmodes/reftex-auc.el: New file, split out from reftex.el | |
4231 * textmodes/reftex-cite.el: New file, split out from reftex.el | |
4232 * textmodes/reftex-global.el: New file, split out from reftex.el | |
4233 * textmodes/reftex-index.el: New file, split out from reftex.el | |
4234 * textmodes/reftex-parse.el: New file, split out from reftex.el | |
4235 * textmodes/reftex-ref.el: New file, split out from reftex.el | |
4236 * textmodes/reftex-sel.el: New file, split out from reftex.el | |
4237 * textmodes/reftex-toc.el: New file, split out from reftex.el | |
4238 * textmodes/reftex-vars.el: New file, split out from reftex.el | |
4239 * textmodes/reftex-vcr.el: New file, split out from reftex.el | |
4240 | |
4241 1999-08-16 Carsten Dominik <cd@gnu.org> | |
4242 | |
4243 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed | |
4244 conflict with pop-up-frames. | |
4245 (reftex-special-environment-parsers): New constant. | |
4246 (reftex-label-alist): car of an entry can also be a function. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4247 (reftex-what-special-env): Cew function. |
25837 | 4248 (reftex-label-location): Call `reftex-what-special-env'. |
4249 (reftex-compile-variables): Check for symbol in | |
4250 `reftex-label-alist'. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4251 (reftex-what-environment): Fixed bug with stacked environments of |
25837 | 4252 same kind (e.g. enumerate). |
4253 (reftex-process-string): Preserve default directory. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4254 (reftex-label-alist-builtin): Changed prefixes of endnote and |
25837 | 4255 footnote. Also the magic words. |
4256 (reftex-reference): Interprete new option | |
4257 `reftex-fref-is-default'. | |
4258 (reftex-replace-prefix-escapes): Interprete new `%S' format. | |
4259 (reftex-toc-mouse-view-line): Command removed (had no binding). | |
4260 (reftex-everything-regexp): New function. | |
4261 (reftex-nearest-match): Made better. | |
4262 (reftex-toc-find-section): Use new version of | |
4263 `reftex-nearest-match'. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
4264 (reftex-insert-docstruct): Adapted to work with the index stuff. |
25837 | 4265 (reftex-parse-from-file): Find index entries as well. |
4266 (reftex-toc-toggle-index): New function | |
4267 (reftex-toc-map): `i' is now used to togle the index, File | |
4268 boundaries has been moved to `F'. | |
4269 (reftex-select-label-map): Toggling display of file boundaries is | |
4270 now on the `F' key, for consistency with `reftex-toc-map'. | |
4271 (reftex-erase-all-selection-and-index-buffers): Renamed from | |
4272 `reftex-erase-all-selection-buffer'. Now also kills the index | |
4273 buffers. | |
4274 (reftex-viewing-cross-references): Customization group renamed | |
4275 from reftex-viewing-cross-references-and-citations. | |
4276 (reftex-index-macro-regexp, | |
4277 reftex-find-index-entry-regexp-format): New variables | |
4278 (reftex-macros-with-index): New variable | |
4279 (reftex-add-index-macros): New function | |
4280 (reftex-renumber-simple-labels, reftex-translate): Allow for | |
4281 multiple labels in a single ref command. | |
4282 (reftex-index-support): New customization group | |
4283 (reftex-support-index, reftex-index-special-chars, | |
4284 reftex-index-macros, reftex-index-default-macro, | |
4285 reftex-index-default-tag, reftex-index-math-format, | |
4286 reftex-index-section-letters, reftex-index-include-context, | |
4287 reftex-index-follow-mode, reftex-index-header-face, | |
4288 reftex-index-section-face, reftex-index-tag-face, | |
4289 reftex-index-face): New options | |
4290 (reftex-index-map, reftex-index-menu, reftex-last-index-file, | |
4291 reftex-index-tag, reftex-index-return-marker, | |
4292 reftex-index-restriction-indicator, reftex-index-restriction-data, | |
4293 reftex-index-macro-regexp, reftex-index-level-re, | |
4294 reftex-index-key-end-re, reftex-find-index-entry-regexp-format, | |
4295 reftex-everything-regexp-no-index, reftex-index-re, | |
4296 reftex-macros-with-index, reftex-index-macro-alist): New variables | |
4297 (reftex-index-help, reftex-index-macros-builtin, | |
4298 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt, | |
4299 reftex-query-index-macro-help): New constants | |
4300 (reftex-index-selection-or-word, reftex-index, | |
4301 reftex-default-index, reftex-update-default-index, | |
4302 reftex-index-complete-tag, reftex-index-select-tag, | |
4303 reftex-index-complete-key, reftex-index-update-taglist, | |
4304 reftex-index-globally, reftex-index-mode, reftex-index-show-entry, | |
4305 reftex-display-index, reftex-insert-index, | |
4306 reftex-index-insert-new-letter, reftex-get-restriction, | |
4307 reftex-index-pre-command-hook, reftex-index-post-command-hook, | |
4308 reftex-index-show-help, reftex-index-next, reftex-index-previous, | |
4309 reftex-index-toggle-follow, reftex-index-toggle-context, | |
4310 reftex-index-view-entry, reftex-index-goto-entry-and-hide, | |
4311 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide, | |
4312 reftex-index-quit, reftex-index-quit-and-kill, | |
4313 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan, | |
4314 reftex-index-revert, reftex-index-switch-index-tag, | |
4315 reftex-index-restrict-to-section, reftex-index-widen, | |
4316 reftex-index-restriction-forward, | |
4317 reftex-index-restriction-backward, reftex-index-visit-location, | |
4318 reftex-index-analyze-entry, reftex-index-globalize, | |
4319 reftex-index-edit, reftex-index-toggle-range-beginning, | |
4320 reftex-index-toggle-range-end, reftex-index-edit-key, | |
4321 reftex-index-edit-attribute, reftex-index-edit-visual, | |
4322 reftex-index-edit-part, reftex-index-level-down, | |
4323 reftex-index-level-up, reftex-index-kill, reftex-index-undo, | |
4324 reftex-index-change-entry, reftex-index-goto-letter, | |
4325 reftex-add-index-macros, reftex-ensure-index-support, | |
4326 reftex-index-info-safe, reftex-index-info): New functions. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
4327 |
25837 | 4328 |
4329 1999-08-15 Richard M. Stallman <rms@gnu.org> | |
4330 | |
4331 * paren.el (show-paren-mode): Support making show-paren-mode | |
4332 a buffer-local variable. Don't check for a window system. | |
4333 (show-paren-function): Check whether show-paren-function is | |
4334 enabled in current buffer; do the right thing if not. | |
4335 Don't check for a window system. | |
4336 (show-paren-mode): Make it a user variable. | |
4337 | |
4338 * add-log.el (add-log-current-defun): Exclude all trailing whitespace. | |
4339 Handle `enum' like `struct'. | |
4340 | |
4341 * server.el (server-process-filter): If a client visits no buffers, | |
4342 close it immediately before recording it. | |
4343 | |
4344 * mail/mail-utils.el (mail-unquote-printable): Make it autoload. | |
4345 Optimize by calling concat just once. Handle =\n sequence. | |
4346 (mail-unquote-printable-region): New command. | |
4347 (mail-quote-printable): Make it autoload. | |
4348 | |
4349 1999-08-15 Karl Heuer <kwzh@gnu.org> | |
4350 | |
4351 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org. | |
4352 | |
4353 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
4354 | |
4355 * lisp/texinfmt.el: Handle @ifnottex. | |
4356 | |
4357 1999-08-15 Eli Zaretskii <eliz@gnu.org> | |
4358 | |
4359 * frame.el (blink-cursor): Don't turn on cursor blinking for | |
4360 ms-dos. | |
4361 | |
4362 * faces.el (face-valid-attribute-values): Look in | |
4363 x-bitmap-file-path only for x and w32 window systems. | |
4364 | |
4365 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default". | |
4366 Do that if width is nil as well. | |
4367 (x-display-mm-height, x-display-mm-width): Update values. | |
4368 (x-colors): Compute the list from msdos-color-values. | |
4369 (x-select-enable-clipboard): Doc fix. | |
4370 (x-frob-font-weight, x-font-family-list): New functions. | |
4371 | |
4372 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk> | |
4373 | |
4374 * window.el (shrink-window-if-larger-than-buffer): Don't try to | |
4375 back up from beginning of buffer. | |
4376 | |
4377 1999-08-13 Karl Heuer <kwzh@gnu.org> | |
4378 | |
4379 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound. | |
4380 | |
4381 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US> | |
4382 | |
4383 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G | |
4384 doomsday clock, speed control is added and changes are made to | |
4385 allow large numbers of rings: rings now show the whole ring | |
4386 number, not just the last digit; consecutive rings are allowed to | |
4387 be the same size when necessary to fit all the rings in the | |
4388 window; and poles can be oriented horizontally. Face support is | |
4389 thrown in gratuitously. | |
4390 (hanoi): Changed default number of rings back to 3. | |
4391 (hanoi-unix, hanoi-unix-64): New commands | |
4392 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces, | |
4393 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face, | |
4394 hanoi-odd-ring-face): New variables. | |
4395 (hanoi-internal, hanoi-current-time-float, hanoi-put-face, | |
4396 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for, | |
4397 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions. | |
4398 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n. | |
4399 (hanoi-topos, hanoi-draw-ring): Removed. | |
4400 | |
4401 1999-08-12 Gerd Moellmann <gerd@gnu.org> | |
4402 | |
4403 * faces.el (face-valid-attribute-values): Return an alist for | |
4404 families on ttys. | |
4405 (face-read-integer): Handle unspecified face attributes. Add | |
4406 completion for `unspecified'. | |
4407 (read-face-attribute): Handle unspecified font attributes. | |
4408 (face-valid-attribute-values): Add `unspecified' to lists so that | |
4409 it can be chosen via completion. | |
4410 (face-read-string): Don't recognize "none" as input. | |
4411 | |
4412 1999-08-10 Dave Love <fx@gnu.org> | |
4413 | |
4414 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc | |
4415 string. | |
4416 | |
4417 * sun-curs.el: Require sun-fns. | |
4418 | |
4419 1999-08-10 Dave Love <fx@gnu.org> | |
4420 | |
4421 * autorevert.el (auto-revert-mode): Add autoload cookie. | |
4422 | |
4423 * hscroll.el, auto-show.el: Files deleted -- we have built-in | |
4424 hscroll. | |
4425 | |
4426 * simple.el (hscroll-step, hscroll-point-visible) | |
4427 (hscroll-window-column): Remove now we have the mentioned real | |
4428 horizontal autoscrolling. | |
4429 | |
4430 1999-08-10 Richard M. Stallman <rms@gnu.org> | |
4431 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
4432 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from |
25837 | 4433 control use of -f option. |
4434 (mail-specify-envelope-from): New variable. | |
4435 (mail-from-style): Doc fix. | |
4436 | |
4437 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn. | |
4438 (easy-menu-get-map): New arg TO-MODIFY helps choose | |
4439 between local and global maps. | |
4440 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map. | |
4441 (easy-menu-change): Doc fix. | |
4442 | |
4443 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward. | |
4444 (info-lookup-guess-default): Simplified and cleaned up. | |
4445 (info-lookup-guess-default*): Preserve point. | |
4446 | |
4447 * view.el (view-mode-disable): If buffer-read-only is nil, | |
4448 don't change it. | |
4449 | |
4450 * files.el (after-find-file): Disable View mode if buffer is no | |
4451 longer read-only. | |
4452 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
4453 * view.el (view-mode-enable, view-mode-disable): |
25837 | 4454 Call force-mode-line-update. |
4455 | |
4456 1999-08-10 Karl Heuer <kwzh@gnu.org> | |
4457 | |
4458 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call. | |
4459 * array.el, play/landmark.el, international/latin-3.el: Likewise. | |
4460 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise. | |
4461 | |
4462 1999-08-10 Alex Schroeder <asc@bsiag.com> | |
4463 | |
4464 * ansi-color.el (ansi-color-to-text-properties): Added New state 5 | |
4465 to prevent m-eating-bug. | |
4466 | |
4467 1999-08-10 Eli Zaretskii <eliz@gnu.org> | |
4468 | |
4469 * term/pc-win.el (msdos-bg-mode): Remove. Call | |
4470 frame-set-background-mode instead. All callers changed. | |
4471 (msdos-face-setup): Don't force color display parameter, it is set | |
4472 by frame-set-background-mode. | |
4473 (make-msdos-frame): Call x-handle-reverse-video and | |
4474 face-set-after-frame-default. Delete frame if creation failed. | |
4475 | |
4476 * faces.el (face-set-after-frame-default): Don't call | |
4477 make-face-x-resource-internal for the pc window-system. | |
4478 | |
4479 1999-08-10 Dave Love <fx@melange.gnu.org> | |
4480 | |
4481 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat | |
4482 case with no docstring specially. | |
4483 | |
4484 1999-08-09 Eli Zaretskii <eliz@gnu.org> | |
4485 | |
4486 * complete.el (PC-do-completion): If completing on file name, | |
4487 reproduce str by concatenating its directory and basename parts. | |
4488 | |
4489 1999-08-07 Dave Love <fx@gnu.org> | |
4490 | |
4491 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid | |
4492 unibyte to multibyte conversion of search-forward (from Handa), | |
4493 but avoid the replacement if the language is Latin-N. | |
4494 | |
4495 1999-08-06 Richard Stallman <rms@gnu.org> | |
4496 | |
4497 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args | |
4498 of eval-buffer. | |
4499 | |
4500 * international/mule.el (load-with-code-conversion): | |
4501 Pass t to eval-buffer for DO-ALLOW-PRINT. | |
4502 | |
4503 1999-08-06 Geoff Voelker <voelker@cs.washington.edu> | |
4504 | |
4505 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist | |
4506 of filenames and attributes. | |
4507 (ls-lisp-insert-directory): Use directory-files-and-attributes | |
4508 for speed. | |
4509 | |
4510 1999-08-05 Dave Love <fx@gnu.org> | |
4511 | |
4512 * auto-show.el (auto-show-mode): Fix :set. | |
4513 | |
4514 * widget.el (define-widget-keywords): Make dummy definition and | |
4515 comment-out its use. | |
4516 | |
4517 1999-08-04 Richard Stallman <rms@gnu.org> | |
4518 | |
4519 * progmodes/tcl.el: Customized. | |
4520 | |
4521 * sql.el (sql-accumulate-and-indent): Instead of testing | |
4522 whether this is Emacs 20 before calling comint-accumulate, | |
4523 test whether comint-accumulate is defined. | |
4524 | |
4525 1999-08-04 Dave Love <fx@gnu.org> | |
4526 | |
4527 * sgml-mode.el: Require outline when compiling. | |
4528 (sgml-mode-hook, html-mode-hook): Customize. | |
4529 (sgml-validate-command): Fix :version. | |
4530 (html-autoview-mode): Doc fix. | |
4531 | |
4532 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do | |
4533 nothing in Latin-N environment. | |
4534 | |
4535 * info.el (Info-find-node): Call info-initialize here. | |
4536 (info): Not here. | |
4537 (Info-file-list-for-emacs): Add message, dired-x, c, viper. | |
4538 | |
4539 1999-08-04 Richard Stallman <rms@gnu.org> | |
4540 | |
4541 * ansi-color.el: New file. | |
4542 | |
4543 1999-08-04 Stefan Monnier <monnier@cs.yale.edu> | |
4544 | |
4545 * dired.el (dired-string-replace-match): Return `nil' when no match | |
4546 found with global search. | |
4547 | |
4548 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file): | |
4549 * terminal.el (te-terminfo-directory): | |
4550 * mail/mailpost.el (post-mail-send-it): | |
4551 * mail/metamail.el (metamail-region): | |
4552 * progmodes/ada-mode.el (ada-tmp-directory): | |
4553 Use temporary-file-directory. | |
4554 | |
4555 * progmodes/compile.el (compilation-parsing-end,compilation-setup) | |
4556 (compilation-filter, compilation-forget-errors) | |
4557 (compilation-parse-errors): Use a marker instead of an integer for | |
4558 `compilation-parsing-end'. | |
4559 | |
4560 * progmodes/diff.el (diff-parse-differences): | |
4561 Use a marker instead of an integer for `compilation-parsing-end'. | |
4562 * textmodes/tex-mode.el (tex-compilation-parse-errors): | |
4563 Use a marker instead of an integer for `compilation-parsing-end'. | |
4564 | |
4565 1999-08-03 Richard Stallman <rms@gnu.org> | |
4566 | |
4567 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View. | |
4568 (Buffer-menu-mode): Doc fix. | |
4569 (Buffer-menu-view): New command. | |
4570 (Buffer-menu-view-other-window): New command. | |
4571 | |
4572 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com> | |
4573 | |
4574 * replace.el (query-replace-regexp-eval) | |
4575 (replace-eval-replacement, replace-loop-through-replacements) | |
4576 (replace-match-string-symbols): New functions. | |
4577 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA). | |
4578 Use replace-loop-through-replacements. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
4579 |
25837 | 4580 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk> |
4581 | |
4582 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f. | |
4583 (5x5): Doc fix. | |
4584 | |
4585 1999-08-03 Dave Love <fx@gnu.org> | |
4586 | |
4587 * fortran.el (fortran-indent-new-line): Make it an alias | |
4588 for reindent-then-newline-and-indent. | |
4589 | |
4590 1999-08-03 Didier Verna <verna@inf.enst.fr> | |
4591 | |
4592 * rect.el: All functions rewritten, except when noted above | |
4593 their declaration. Below is a list of interface changes. | |
4594 (apply-on-rectangle): New function, mostly replaces | |
4595 `operate-on-rectangle'. All callers changed. | |
4596 (move-to-column-force): Pass new second argument to `move-to-column'. | |
4597 (kill-rectangle): Added optional prefix arg to fill lines. | |
4598 (delete-rectangle): Ditto. | |
4599 (delete-whitespace-rectangle): Ditto. | |
4600 (delete-extract-rectangle): Ditto. | |
4601 (open-rectangle): Ditto. | |
4602 (clear-rectangle): Ditto. | |
4603 (delete-whitespace-rectangle-line): New function. | |
4604 (delete-rectangle-line): Added third arg FILL. | |
4605 (delete-extract-rectangle-line): Ditto. | |
4606 (open-rectangle-line): Ditto. | |
4607 (clear-rectangle-line): Ditto. | |
4608 | |
4609 1999-08-03 Ray Blaak <blaak@gnu.org> | |
4610 | |
4611 * progmodes/delphi.el: New file. | |
4612 | |
4613 1999-08-02 Richard Stallman <rms@gnu.org> | |
4614 | |
4615 * textmodes/outline.el (outline-previous-heading): New function. | |
4616 (outline-up-heading-all): Use outline-previous-heading. | |
4617 (outline-next-heading): Delete definition inserted yesterday. | |
4618 | |
4619 1999-08-01 Richard Stallman <rms@gnu.org> | |
4620 | |
4621 * textmodes/outline.el (outline-next-heading): New function. | |
4622 (outline-up-heading-all): New function. | |
4623 (outline-font-lock-level): Using outline-up-heading-all. | |
4624 Tell outline-back-to-heading to accept invisible headings. | |
4625 | |
4626 * simple.el (shell-command-on-region): EXIT-STATUS can be a string. | |
4627 | |
4628 * mail/mh-utils.el (mh-find-path-run): New variable. | |
4629 (mh-find-path): Test and set that. | |
4630 Set mail-user-agent only the first time this function is run. | |
4631 (mail-user-agent): Defvar deleted. | |
4632 | |
4633 * info.el (info-initialize): New function. | |
4634 (info): Call info-initialize. | |
4635 (Info-directory-list): Initialize to nil, | |
4636 so info-initialize will set it up for real. | |
4637 | |
4638 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
4639 | |
4640 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it | |
4641 does not interpret a time as the year in a day-month entry. | |
4642 | |
4643 * calendar/diary-lib.el: Change syntax table entry for colon in | |
4644 the diary as part of the european-date-diary-pattern fix. | |
4645 | |
4646 1999-08-01 Eli Zaretskii <eliz@gnu.org> | |
4647 | |
4648 * international/mule.el (set-auto-coding): Allow whitespace before | |
4649 and after the "variable: value" pair. | |
4650 | |
4651 1999-07-30 Ken'ichi Handa <handa@gnu.org> | |
4652 | |
4653 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed. | |
4654 (default-sendmail-coding-system): Doc-string fixed. | |
4655 | |
4656 1999-07-30 Dave Love <fx@gnu.org> | |
4657 | |
4658 * subr.el (assoc-delete-all): New function, renamed from | |
4659 frame-delete-all. | |
4660 | |
4661 * frame.el: Change comments to doc strings and other doc fixes. | |
4662 (frame-delete-all): Moved to subr.el as `assoc-delete-all'. | |
4663 Callers changed. | |
4664 (set-background-color, set-foreground-color, set-cursor-color) | |
4665 (set-mouse-color, set-border-color): Offer completion of colours. | |
4666 (cursor): Add :version to defgroup. | |
4667 | |
4668 * facemenu.el (list-colors-display): Make it work on ttys. | |
4669 (facemenu-read-color): Likewise. | |
4670 | |
4671 1999-07-30 Richard M. Stallman <rms@gnu.org> | |
4672 | |
4673 * frame.el (frame-notice-user-settings): If background | |
4674 color has been changed, update background-mode from it, | |
4675 then update faces. | |
4676 | |
4677 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com> | |
4678 | |
4679 * net-utils.el (finger): Don't do indirect fingering. | |
4680 | |
4681 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
4682 | |
4683 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of | |
4684 rules. Add separator at end of holidays. | |
4685 (cal-tex-rules): New customizable variable. | |
4686 (cal-tex-latexify-list): Add optional parameter to put separator | |
4687 at end. | |
4688 | |
4689 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu> | |
4690 | |
4691 * textmodes/fill.el (fill-individual-paragraphs): Calculate new | |
4692 fill prefix on each line while looping to the end of paragraph. | |
4693 End paragraph if it's longer than the existing fill prefix. | |
4694 | |
4695 * textmodes/fill.el (fill-context-prefix): Doc fix. | |
4696 | |
4697 1999-07-30 Dave Love <fx@gnu.org> | |
4698 | |
4699 * font-lock.el (jit-lock): Fix :load, add :version. | |
4700 | |
4701 1999-07-30 Eli Zaretskii <eliz@gnu.org> | |
4702 | |
4703 * term/pc-win.el (msdos-face-setup): Register standard colors in | |
4704 Vface_tty_color_alist. | |
4705 (face-color-supported-p, face_color_gray_p): New functions. | |
4706 | |
4707 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p | |
4708 is bound. | |
4709 | |
4710 * startup.el (command-line): Don't register default colors for | |
4711 MSDOS window-system. | |
4712 | |
4713 1999-07-29 Dave Love <fx@gnu.org> | |
4714 | |
4715 * f90.el (f90-mode-syntax-table): Change backslash to escape, not | |
4716 charquote. | |
4717 | |
4718 * lisp-mode.el (eval-defun): Re-written to avoid | |
4719 capturing variables. | |
4720 | |
4721 * picture.el (picture-beginning-of-line): Don't call | |
4722 hscroll-point-visible now we have real autoscrolling. | |
4723 (picture-end-of-line, picture-newline, picture-open-line): | |
4724 Likewise. | |
4725 | |
4726 * international/latin-8.el: New file. | |
4727 * international/latin-9.el: New file. | |
4728 | |
4729 1999-07-28 Dave Love <fx@gnu.org> | |
4730 | |
4731 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter. | |
4732 | |
4733 * msb.el: Require cl only when compiling. | |
4734 (msb--home-dir): Deleted. | |
4735 (msb--format-title): Use abbreviate-file-name. | |
4736 (msb--choose-file-menu): Simplify string comparison. | |
4737 | |
4738 1999-07-28 Gerd Moellmann <gerd@gnu.org> | |
4739 | |
4740 * faces.el (toolbar): Add face definition for mono displays. | |
4741 | |
4742 1999-07-27 Richard M. Stallman <rms@gnu.org> | |
4743 | |
4744 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change. | |
4745 | |
4746 * frame.el (frame-initialize): When setting frame-initial-frame-alist, | |
4747 force copying of default-frame-alist. | |
4748 | |
4749 1999-07-26 Ken'ichi Handa <handa@gnu.org> | |
4750 | |
4751 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp. | |
4752 | |
4753 1999-07-26 Richard M. Stallman <rms@gnu.org> | |
4754 | |
4755 * frame.el (set-mouse-color): If new color is nil, | |
4756 really respecify the current color. | |
4757 | |
4758 1999-07-26 Gerd Moellmann <gerd@gnu.org> | |
4759 | |
4760 * faces.el (bitmap-area): Change background of face `bitmap-area' | |
4761 to white for mono displays. | |
4762 | |
4763 1999-07-26 Kenichi Handa <handa@etl.go.jp> | |
4764 | |
4765 * international/ccl.el (ccl-embed-symbol): New function. | |
4766 (ccl-program-p): Deleted. Now it's implemented in C code. | |
4767 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol. | |
4768 (ccl-compile-translate-character): Likewise. | |
4769 (ccl-compile-map-single): Likewise. | |
4770 (ccl-compile-multiple-map-function): Likewise. | |
4771 (declare-ccl-program): Doc-string modified. | |
4772 (check-ccl-program): Check compiled CCL code by ccl-program-p. | |
4773 | |
4774 1999-07-25 Ken'ichi Handa <handa@etl.go.jp> | |
4775 | |
4776 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change. | |
4777 | |
4778 1999-07-25 Markus Rost <rost@gnu.org> | |
4779 | |
4780 * cus-edit.el (custom-save-variables, custom-save-faces): Sort | |
4781 the entries to make custom-file more readable. | |
4782 | |
4783 1999-07-25 Richard M. Stallman <rms@gnu.org> | |
4784 | |
4785 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs. | |
4786 | |
4787 * emacs-lisp/edebug.el: Delete compatibility code. | |
4788 (edebug-next-token-class): If . is followed by a digit, | |
4789 return `symbol' for the token class. | |
4790 | |
4791 * startup.el (command-line): If we don't find the user's init file, | |
4792 set user-init-file to nil. | |
4793 | |
4794 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4795 | |
4796 * info-look.el (info-lookup-interactive-arguments): Add optional | |
4797 argument query for new choice of help mode. | |
4798 (info-lookup-symbol): Use it. | |
4799 (info-lookup-file): Ditto. | |
4800 (info-lookup): Don't switch to other window, if already in Info | |
4801 buffer. | |
4802 | |
4803 1999-07-23 Dave Love <fx@gnu.org> | |
4804 | |
4805 * fortran.el (fortran-mode-syntax-table): Change `\' to `\' | |
4806 syntax. | |
26624 | 4807 (fortran-fontify-string, fortran-match-!-comment): Deleted. |
25837 | 4808 (fortran-font-lock-syntactic-keywords): New variable. |
4809 (fortran-mode): Use it. | |
4810 (fortran-font-lock-keywords-1): Don't do comments. | |
4811 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save | |
4812 match data. | |
4813 | |
4814 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls. | |
4815 | |
4816 * msb.el (msb-menu-bar-update-buffers): Renamed from | |
4817 menu-bar-update-buffers. | |
4818 (msb-custom-set, msb--toggle-menu-type): Call | |
4819 msb-menu-bar-update-buffers. | |
4820 (msb-mode): Revise the hook setting. | |
4821 | |
4822 * font-lock.el (turn-on-font-lock): Use tty-display-color-p. | |
4823 | |
4824 1999-07-23 Gerd Moellmann <gerd@gnu.org> | |
4825 | |
25956 | 4826 * font-lock.el, help.el, simple.el: Re-integrate previously |
4827 described changes that were lost due to errors while checking them | |
4828 in. | |
25837 | 4829 |
4830 1999-07-23 Kevin Blake <kblake@ticnet.com> | |
4831 | |
4832 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp. | |
4833 | |
4834 1999-07-23 Ken'ichi Handa <handa@etl.go.jp> | |
4835 | |
4836 * international/encoded-kb.el | |
4837 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character | |
4838 but push it to unread-command-events. | |
4839 (encoded-kbd-self-insert-iso2022-8bit): Likewise. | |
4840 (encoded-kbd-self-insert-sjis): Likewise. | |
4841 (encoded-kbd-self-insert-big5): Likewise. | |
4842 | |
4843 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up | |
4844 before left margin and fill-prefix by fill-find-break-point. | |
4845 | |
4846 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
4847 | |
4848 * info-look.el (info-lookup-setup-mode): Don't give up, if | |
4849 info-lookup-make-completions returns an error. | |
4850 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file | |
4851 name latex, not latex2e. | |
4852 | |
4853 1999-07-21 Richard M. Stallman <rms@gnu.org> | |
4854 | |
4855 * replace.el (perform-replace): Turn off case-fold-search | |
4856 if FROM-STRING argument has uppercase in it. | |
4857 | |
4858 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4859 | |
4860 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock | |
4861 mode is on. Don't use end of changed text. | |
4862 | |
4863 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4864 | |
4865 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table. | |
4866 (cl-hash-table-p): Renamed from hash-table-p. | |
4867 (cl-hash-table-count): Renamed from hash-table-count. | |
4868 (maphash): Alias to cl-maphash removed. | |
4869 (gethash): Likewise. | |
4870 (puthash): Likewise. | |
4871 (remhash): Likewise. | |
4872 (clrhash): Likewise. | |
4873 | |
4874 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4875 | |
4876 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with | |
4877 third arg non-nil. See comment there why this isn't a good idea. | |
4878 | |
4879 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4880 | |
4881 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message. | |
4882 | |
4883 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call | |
4884 sit-for with 3rd arg non-nil to prevent redisplay. | |
4885 | |
4886 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4887 | |
4888 * image.el (image-type-from-file-header): If file doesn't | |
4889 have a directory part, add data-directory. | |
4890 | |
4891 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4892 | |
4893 * tooltip.el (tooltip-gud-tips-p): Set default to nil. | |
4894 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse | |
4895 motion handling when tooltip-gud-tips-p is nil. | |
4896 | |
4897 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4898 | |
4899 * tooltip.el (tooltip-mode): Don't use `plusp'. | |
4900 (tooltip-active): Use initial value of nil. | |
4901 | |
4902 * jit-lock.el (jit-lock-mode): Don't use `plusp'. | |
4903 | |
4904 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4905 | |
4906 * bindings.el (make-mode-line-mouse-sensitive): Add key | |
4907 definitions for `top-line'. | |
4908 | |
4909 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4910 | |
4911 * faces.el (top-line): New face. | |
4912 | |
4913 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4914 | |
4915 * image.el (image-type-regexps): Add regexp for PS files. | |
4916 | |
4917 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4918 | |
4919 * faces.el (set-face-attribute): Fix wrong handling of frame | |
4920 begin equal to t. | |
4921 | |
4922 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4923 | |
4924 * image.el (image-type-regexps): Add PNG format. | |
4925 | |
4926 1999-07-21 Dave Love <fx@gnu.org> | |
4927 | |
4928 * bindings.el (mode-line-modified): New variable. | |
4929 (mode-line-mode-menu-1): Switch to appropriate window before | |
4930 showing menu. | |
4931 | |
4932 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4933 | |
4934 * faces.el (face-underline): Removed. | |
4935 (face-underline-color): Ditto. | |
4936 | |
4937 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4938 | |
4939 * faces.el (face-x-resources): Fix typo. | |
4940 | |
4941 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4942 | |
4943 * faces.el: Remove handling of `:relief', extend handling of | |
4944 `:box'. | |
4945 (frame-set-background-mode): Choose new defface specs after | |
4946 frame parameters have changed. | |
4947 | |
4948 * cus-face.el: Ditto. | |
4949 | |
4950 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4951 | |
4952 * custom.el (defface): Extend documentation to include new | |
4953 face attributes. | |
4954 | |
4955 * cus-face.el (custom-face-attributes): Add overline, | |
4956 strike-through, box. | |
4957 | |
4958 * faces.el (face-valid-attribute-values): Handle overline, | |
4959 strike-through, box. | |
4960 (face-attribute-name-alist): Add pairs for new face attributes. | |
4961 (describe-face): Handle new face attributes. | |
4962 | |
4963 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4964 | |
4965 * faces.el (face-x-resources): Add overline, strike-through, box. | |
4966 | |
4967 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4968 | |
4969 * enriched.el (enriched-translations): Add `display' and | |
4970 "x-display". | |
4971 (enriched-handle-display-prop): New. | |
4972 (enriched-decode-display-prop): New. | |
4973 | |
4974 * format.el (top-level): Give `display' property | |
4975 `format-list-atomic-p. | |
4976 (format-annotate-single-property-change): Test that property. | |
4977 If present, treat list property values like atoms. | |
4978 | |
4979 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4980 | |
4981 * cus-face.el (custom-face-attributes): Use `choice' everywhere | |
4982 so that "*" can be entered. | |
4983 | |
4984 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4985 | |
4986 * cus-face.el (custom-face-attributes): Don't use `#''. | |
4987 | |
4988 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp> | |
4989 | |
4990 * cus-face.el (custom-face-attributes): Return underline | |
4991 face attribute directly from the second lambda of underline. | |
4992 | |
4993 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
4994 | |
4995 * jit-lock.el (jit-lock-stealth-verbose): Set to nil. | |
4996 | |
4997 * frame.el (after-setting-font-hooks): New variable. | |
4998 (set-frame-font): Run those hooks. | |
4999 | |
5000 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region. | |
5001 | |
5002 * faces.el (set-face-attribute): Fix doc string. | |
5003 | |
5004 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5005 | |
5006 * cus-face.el (custom-face-attributes): Accept color name. | |
5007 | |
5008 * faces.el (face-underline-p): Accept unspecified underlining. | |
5009 (face-underline): Ditto. Fix doc string. | |
5010 | |
5011 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp> | |
5012 | |
5013 * faces.el (face-underline-color): New function. | |
5014 | |
5015 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp> | |
5016 | |
5017 * cus-face.el (custom-face-attributes): Support underline coloring. | |
5018 Added slot to choose a color. | |
5019 | |
5020 * faces.el (face-underline): New function. | |
5021 (face-underline-p): Support underline coloring. | |
5022 Return nil only if the underline attribute is 'normal. | |
5023 (set-face-underline): New function. | |
5024 (face-valid-attribute-values): Support underline coloring. | |
5025 | |
5026 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5027 | |
5028 * image.el (insert-image): Use `display' instead of `glyph' | |
5029 as text property name. | |
5030 (put-image): Ditto. | |
5031 (image-type-from-file-header): Use insert-file-contents-literally. | |
5032 | |
5033 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5034 | |
5035 * easymenu.el (easy-menu-do-add-item): Don't use the empty | |
5036 string to indicate separators. | |
5037 | |
5038 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5039 | |
5040 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max | |
5041 instead of message-log. | |
5042 | |
5043 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5044 | |
5045 * faces.el (bitmap-area): New face. | |
5046 | |
5047 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5048 | |
5049 * image.el (insert-image): New. | |
5050 | |
5051 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5052 | |
5053 * frame.el (blink-cursor): Set the symbol's value. | |
5054 (show-trailing-whitespace): Change group to font-lock. | |
5055 | |
5056 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5057 | |
5058 * jit-lock.el: New. | |
5059 * font-lock.el: Add jit-mode as new support mode. | |
5060 | |
5061 * font-lock.el (font-lock-fontify-keywords-region): Stop when | |
5062 reaching end instead of letting re-search-forward signal an error. | |
5063 (demand-lock-mode): New. | |
5064 (font-lock-turn-on-thing-lock): Add demand-lock-mode. | |
5065 (font-lock-turn-off-thing-lock): Ditto. | |
5066 (font-lock-after-fontify-buffer): Ditto. | |
5067 (font-lock-after-unfontify-buffer): Ditto. | |
5068 | |
5069 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5070 | |
5071 * gs.el: New file. | |
5072 | |
5073 * startup.el (command-line-1): Activate tooltip mode if | |
5074 interactive. | |
5075 | |
5076 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5077 | |
5078 * faces.el (toolbar): Grey default background. | |
5079 (modeline): Ditto. | |
5080 | |
5081 * image.el (image-type-regexps): New. | |
5082 (image-type-from-file-header): New. | |
5083 (create-image): Call it. | |
5084 | |
5085 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5086 | |
5087 * image.el: New file. | |
5088 | |
5089 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5090 | |
5091 * bindings.el (mode-line-format): Replace `mode-name' with | |
5092 `(:eval mode-line-mode-name)'. | |
5093 (mode-line-mode-name): New. | |
5094 (make-mode-line-mouse-sensitive): Don't change default value | |
5095 of `mode-name'. | |
5096 | |
5097 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5098 | |
5099 * tooltip.el: New file. | |
5100 | |
5101 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5102 | |
5103 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3 | |
5104 instead of mouse-3 to pop up menus. | |
5105 (mode-line-kill-buffer): Removed. | |
5106 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over | |
5107 buffer name. | |
5108 (mode-line-buffer-menu-1): Removed. | |
5109 | |
5110 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive. | |
5111 | |
5112 * bindings.el (mode-line-buffer-identification-keymap): New. | |
5113 (mode-line-buffer-menu-keymap): New. | |
5114 (mode-line-mode-menu-keymap): New. | |
5115 (mode-line-unbury-buffer): New. | |
5116 (mode-line-other-buffer): New. | |
5117 (mode-line-kill-buffer): New. | |
5118 (mode-line-buffer-menu-1): New. | |
5119 (mode-line-mode-menu-1): New. | |
5120 (make-mode-line-mouse-sensitive): New. | |
5121 | |
5122 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5123 | |
5124 * help.el (describe-key-briefly): Handle mode line strings | |
5125 with local-map properties. | |
5126 (describe-key): Ditto. | |
5127 (mode-line-key-binding): New. | |
5128 | |
5129 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5130 | |
5131 * scroll-bar.el (scroll-bar-timer): New. | |
5132 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer. | |
5133 | |
5134 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5135 | |
5136 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top' | |
5137 and `bottom'. | |
5138 | |
5139 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5140 | |
5141 * scroll-bar.el (scroll-bar-toolkit-scroll): New. | |
5142 (global): Use different key bindings if using tookit scroll bars. | |
5143 | |
5144 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5145 | |
5146 * faces.el (modeline): Define mode line face with relief for | |
5147 class color, only. | |
5148 (toolbar): New face. | |
5149 | |
5150 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5151 | |
5152 * frame.el (frame-initialize): Set frame-creation-function to | |
5153 tty-create-frame-with-faces. | |
5154 | |
5155 * faces.el (frame-set-background-mode): Make it work for | |
5156 window-system nil. | |
5157 | |
5158 * faces.el (tty-create-frame-with-faces): New. | |
5159 (face-set-after-frame-default): Make it work for TTY frames. | |
5160 | |
5161 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5162 | |
5163 * faces.el (face-valid-attribute-values): Use tty-defined-colors. | |
5164 Return a list of one font family for TTYs. Don't return bitmap | |
5165 file paths for TTY frames. | |
5166 | |
5167 * faces.el: Add face specs for tty displays to basic faces. | |
5168 | |
5169 * font-lock.el (font-lock-comment-face): Add spec for color tty. | |
5170 (font-lock-string-face): Ditto. | |
5171 (font-lock-keyword-face): Ditto. | |
5172 (font-lock-builtin-face): Ditto. | |
5173 (font-lock-function-name-face): Ditto. | |
5174 (font-lock-variable-name-face): Ditto. | |
5175 (font-lock-type-face): Ditto. | |
5176 (font-lock-constant-face): Ditto. | |
5177 (font-lock-warning-face): Ditto. | |
5178 | |
5179 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5180 | |
5181 * startup.el (command-line): Register default tty colors. | |
5182 | |
5183 * faces.el (face-spec-set-match-display): Recognize `type tty'. | |
5184 | |
5185 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5186 | |
5187 * faces.el (modeline): For X frames, use a modeline with relief. | |
5188 | |
5189 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5190 | |
5191 * faces.el (frame-update-faces): Copied from 20.2. | |
5192 (frame-update-face-colors): Ditto. Code removed that isn't | |
5193 applicable in the new face implementation. | |
5194 | |
5195 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5196 | |
5197 * frame.el (show-trailing-whitespace): New. | |
5198 | |
5199 * faces.el (trailing-whitespace): New basic face. | |
5200 | |
5201 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5202 | |
5203 * cus-face.el (custom-facep): Always define as alias for facep. | |
5204 | |
5205 * cus-face.el (custom-face-attributes): Use choice widgets. | |
5206 Remove :bold and :italic. | |
5207 | |
5208 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5209 | |
5210 * faces.el (face-charset-registries): Removed since fontset.el | |
5211 is no always loaded. | |
5212 | |
5213 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5214 | |
5215 * faces.el (internal-get-face): Added as obsolete function for | |
5216 compatibility. | |
5217 | |
5218 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5219 | |
5220 * frame.el (blink-cursor-end): Call show-cursor. | |
5221 (blink-cursor-mode): Ditto. | |
5222 | |
5223 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5224 | |
5225 * faces.el (face-spec-reset-face): Reset all attributes to | |
5226 `unspecified'. | |
5227 (face-spec-set): Use it. | |
5228 | |
5229 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5230 | |
5231 * faces.el (read-all-face-attributes): Bug fix. | |
5232 (face-read-integer): Allow nil default value. | |
5233 (face-valid-attribute-values): Use symbol names of attribute | |
5234 values for completion list. | |
5235 | |
5236 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5237 | |
5238 * faces.el (internal-find-face): Define for compatibility with | |
5239 20.2. | |
5240 (face-id): Likewise. | |
5241 | |
5242 * faces.el (face-id): Return the ID of a realized face for ASCII. | |
5243 | |
5244 * fontset.el (x-charset-registries): Removed. Now in faces.el. | |
5245 (x-complement-fontset-spec): Use face-charset-registries. | |
5246 | |
5247 * faces.el (face-font-selection-order): Set font selection order | |
5248 from Lisp. | |
5249 (face-alternative-font-family-alist): Set alternative font | |
5250 families from Lisp. | |
5251 | |
5252 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5253 | |
5254 * faces.el (set-face-charset-registries): Set symbol value. | |
5255 | |
5256 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5257 | |
5258 * faces.el (face-set-after-frame-default): Call function | |
5259 internal-merge-in-global-face. | |
5260 | |
5261 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5262 | |
5263 * faces.el (face-list): Return symbols from face-global-alist. | |
5264 | |
5265 * faces.el (face-list): Return a copy of the face name list so | |
5266 that it cannot be modified from outside (facemenu.el uses | |
5267 nreverse, for example). | |
5268 | |
5269 * cus-face.el (custom-face-attributes): Add :bold and :italic | |
5270 for compatibility with old code. | |
5271 | |
5272 * faces.el (set-face-attributes-from-resources): Additional | |
5273 frame parameter. | |
5274 (make-face-x-resource-internal): Set attributes from resources | |
5275 for a given frame or all frames. | |
5276 | |
5277 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5278 | |
5279 * faces.el (all-faces): Removed. | |
5280 | |
5281 * custom.el (defface): Add new face attributes to function | |
5282 comment. | |
5283 | |
5284 * font-lock.el (font-lock-comment-face): Use new face attribute | |
5285 names. | |
5286 (font-lock-string-face): Ditto. | |
5287 (font-lock-keyword-face): Ditto. | |
5288 (font-lock-builtin-face): Ditto. | |
5289 (font-lock-function-name-face): Ditto. | |
5290 (font-lock-variable-name-face): Ditto. | |
5291 (font-lock-type-face): Ditto. | |
5292 (font-lock-reference-face): Ditto. | |
5293 (font-lock-warning-face): Ditto. | |
5294 ((boundp 'font-lock-face-attributes)): Ditto. | |
5295 | |
5296 * cus-face.el (custom-face-attributes): Use new face attributes. | |
5297 | |
5298 * faces.el (set-face-attribute-from-resource): Initialize | |
5299 from resources only for X and W32. | |
5300 | |
5301 * cus-face.el (custom-declare-face): Don't make frame-local | |
5302 faces. | |
5303 | |
5304 * faces.el (describe-face): Use princ instead of insert. | |
5305 | |
5306 * faces.el: Add XLFD manipulation functions from 20.2 again | |
5307 because fontset.el uses them. | |
5308 (face-set-after-frame-default): Add empty definition. | |
5309 | |
5310 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5311 | |
5312 * faces.el (make-face): Correct typo. | |
5313 (set-face-attribute-from-resource): Use let*. | |
5314 (face-underline-p): Correct typo. | |
5315 (face-inverse-video-p): Ditto. | |
5316 (set-face-stipple): Ditto. | |
5317 (face-read-string): Make completion-list optional parameter. | |
5318 | |
5319 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5320 | |
5321 * faces.el (face-charset-registries): Alist mapping charset | |
5322 symbols to registries and encoding. | |
5323 | |
5324 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5325 | |
5326 * frame.el (blink-cursor-mode): Use interactive spec "P". | |
5327 | |
5328 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5329 | |
5330 * frame.el (blink-cursor-mode): Function to toggle blinking cursor | |
5331 mode. The cursor of selected_window blinks if the mode is enabled. | |
5332 | |
5333 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5334 | |
5335 * simple.el (next-history-element): Set point to the end of the | |
5336 prompt if minibuffer-prompt-in-buffer. | |
5337 | |
5338 1999-07-21 Gerd Moellmann <gerd@gnu.org> | |
5339 | |
5340 * faces.el (x-font-regexp): Add sub-expression parentheses for | |
5341 several font name components. | |
5342 | |
5343 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
5344 | |
5345 * faces.el (set-face-relief): Use index 12 for relief. | |
5346 (face-fill-in): Set relief from data. | |
5347 (internal-make-face): Init relief to zero. | |
5348 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
5349 * faces.el (face-spec-set): Call modify-face with additional |
25837 | 5350 parameters for relief and fixed-p. |
5351 | |
5352 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
5353 | |
5354 * cus-face.el: ':fixed and ':relief added. | |
5355 | |
5356 * faces.el (describe-face): Add fixed font attribute and relief. | |
5357 (face-attr-match-p): Ditto. | |
5358 (face-attr-construct): Ditto. | |
5359 (face-spec-set): Ditto. | |
5360 | |
5361 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
5362 | |
5363 * faces.el (internal-make-face): Function to create a Lisp vector | |
5364 suitable for representing a face. | |
5365 (make-face): Use it instead of make-vector. | |
5366 (x-create-frame-with-faces): Use it instead of vector. | |
5367 (internal-facep): Increase vector size to 14. | |
5368 (internal-make-face): Ditto. | |
5369 (face-relief): Access relief thickness. | |
5370 (face-fixed-p): Access fixed font attribute. | |
5371 (set-face-fixed-p): Set fixed font attribute. | |
5372 (set-face-relief): Set relief attribute. | |
5373 (internal-face-interactive-int): Read int attribute of face. | |
5374 (modify-face): Add fixed-p and relief parameters. | |
5375 (copy-face): Handle fixed-p and relief. | |
5376 (face-equal): Compare fixed-p and relief. | |
5377 (face-differs-from-default-p): Ditto. | |
5378 (face-nontrivial-p): Add fixed-p and relief. | |
5379 | |
5380 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
5381 | |
5382 * faces.el (eval-when-compile): Add set-face-shadow-thickness. | |
5383 (internal-facep): Increase vector size. | |
5384 (make-face): Ditto. | |
5385 (face-shadow-thickness): Added. | |
5386 (set-face-shadow-thickness): Added. | |
5387 (modify-face): Add optional shadow-thickness parameter. | |
5388 (make-face-x-resource-internal): Add shadows. | |
5389 (copy-face): Ditto. | |
5390 (face-equal): Ditto. | |
5391 (face-differs-from-default-p): Ditto. | |
5392 (face-nontrivial-p): Ditto. | |
5393 (face-attr-match-p): Ditto. | |
5394 (face-attr-construct): Ditto. | |
5395 (face-spec-set): Ditto. | |
5396 (face-fill-in): Ditto. | |
5397 | |
5398 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
5399 | |
5400 * bench.el (bench-mark-split-window): New bench mark. | |
5401 | |
5402 1999-07-21 Gerd Moellmann <gerd@acm.org> | |
5403 | |
5404 * faces.el (set-face-font): Don't pass default font to | |
5405 x-resolve-font so that font will not have to be of the same | |
5406 size. | |
5407 | |
5408 1999-07-20 Dave Love <fx@gnu.org> | |
5409 | |
5410 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it | |
5411 unconditionally t. | |
5412 | |
5413 1999-07-20 Karl Heuer <kwzh@gnu.org> | |
5414 | |
5415 * font-lock.el (c++-font-lock-extra-types): Add "type_info". | |
5416 | |
5417 1999-07-20 Dave Love <fx@gnu.org> | |
5418 | |
5419 * help.el (describe-variable): Fix test for customizability. | |
5420 | |
5421 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer): | |
5422 Check for readonly buffer in interactive spec. | |
5423 (zap-to-char, kill-line, kill-region, comment-region, kill-word) | |
5424 (backward-kill-word): Add * to interactive spec. | |
5425 | |
5426 * underline.el (underline-region, ununderline-region): Add * to | |
5427 interactive spec. | |
5428 | |
5429 * fill.el (canonically-space-region, justify-current-line): Add * | |
5430 to interactive spec. | |
5431 (fill-region-as-paragraph, fill-paragraph, fill-region) | |
5432 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check | |
5433 readonly buffer in interactive spec. | |
5434 | |
5435 * paragraphs.el: (kill-paragraph, backward-kill-paragraph) | |
5436 (backward-kill-sentence, kill-sentence): Add * to interactive | |
5437 spec. | |
5438 | |
5439 1999-07-19 Richard M. Stallman <rms@gnu.org> | |
5440 | |
5441 * dired-aux.el (dired-do-shell-command): Doc fix. | |
5442 | |
5443 * shell.el (shell-unquote-argument): New function. | |
5444 (shell-directory-tracker): Use shell-unquote-argument. | |
5445 * comint.el (comint-arguments): Handle \ followed by space or tab. | |
5446 | |
5447 1999-07-19 John Wiegley <jwiegley@borland.com> | |
5448 | |
5449 * term.el (ansi-term-fg-faces-vector): Added support for ANSI | |
5450 color codes 39 and 49, which by the way lynx uses them seem to | |
5451 mean "foreground reset" and "background reset". | |
5452 | |
5453 1999-07-19 Karl Heuer <kwzh@gnu.org> | |
5454 | |
5455 * font-lock.el (c++-keywords): Add "typeid". | |
5456 | |
5457 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but | |
5458 selects no font, treat that as zero selections, not one. | |
5459 | |
5460 1999-07-19 Dave Love <fx@gnu.org> | |
5461 | |
5462 * info.el (Info-search): Don't lose with empty regexp. | |
5463 | |
5464 * version.el: Cater for (free) `ident' program, not `which'. | |
5465 | |
5466 * hl-line.el: New file. | |
5467 | |
5468 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu | |
5469 for modes which don't define menus. | |
5470 | |
5471 1999-07-16 Richard M. Stallman <rms@gnu.org> | |
5472 | |
5473 * webjump.el (webjump-sample-sites): Update some URLs. | |
5474 | |
5475 1999-07-14 Richard Stallman <rms@gnu.org> | |
5476 | |
5477 * Version 20.4 released. | |
5478 | |
5479 1999-07-14 Andreas Schwab <schwab@gnu.org> | |
5480 | |
5481 * compare-w.el (compare-windows): Try to find the next window in | |
5482 the current frame before looking at the other frames. | |
5483 | |
5484 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru> | |
5485 | |
5486 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"): | |
5487 Use cyrillic-jcuken as default input method. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
5488 |
25837 | 5489 1999-07-12 Richard Stallman <rms@gnu.org> |
5490 | |
5491 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for | |
5492 Java anonymous array expressions ("new Foo[] {.. bracelist ..}"). | |
5493 | |
5494 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian. | |
5495 (ispell-local-dictionary-alist): Add koi8-r for character set. | |
5496 | |
5497 * textmodes/flyspell.el (flyspell-get-word): | |
5498 Add special handling for when ispell-otherchars is empty. | |
5499 | |
5500 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no> | |
5501 | |
5502 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior | |
5503 when having nested functons. | |
5504 (pascal-indent-nested-functions) (pascal-indent-line) | |
5505 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for | |
5506 indenting nested functions. | |
5507 | |
5508 1999-07-09 Richard Stallman <rms@gnu.org> | |
5509 | |
5510 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes. | |
5511 | |
5512 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no> | |
5513 | |
5514 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when | |
5515 the `end' keyword was in the very beginning of the buffer. | |
5516 | |
5517 1999-07-08 Richard Stallman <rms@gnu.org> | |
5518 | |
5519 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix. | |
5520 | |
5521 * term.el (term-emulate-terminal): Avoid infinite loop | |
5522 in strange case where minibuffer window is selected but not active. | |
5523 | |
5524 1999-07-07 Stephen Eglen <stephen@gnu.org> | |
5525 | |
5526 * progmodes/octave-inf.el (inferior-octave-directory-tracker): | |
5527 Change regexp so that it doesn't match commands beginning with `cd'. | |
5528 | |
5529 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
5530 | |
5531 * mail/rmail.el (mail-unsent-separator): Add a missing \\|. | |
5532 | |
5533 1999-07-06 Richard Stallman <rms@gnu.org> | |
5534 | |
5535 * hscroll.el (hscroll-minibuffer-hook): New function. | |
5536 (hscroll-global-mode): Add and remove that hook. | |
5537 Set hscroll-old-truncate-was-global's default value. | |
5538 | |
5539 1999-07-05 Richard Stallman <rms@gnu.org> | |
5540 | |
5541 * files.el (revert-buffer): Don't preserve point here. | |
5542 (revert-buffer-insert-file-contents-function): Doc fix. | |
5543 | |
5544 * isearch.el (isearch-process-search-char): Write octal 200 correctly. | |
5545 | |
5546 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid | |
5547 doing a `stat' when it isn't necessary because that can cause | |
5548 trouble when an NFS server is down. | |
5549 | |
5550 1999-07-04 Richard Stallman <rms@gnu.org> | |
5551 | |
5552 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer. | |
5553 | |
5554 1999-07-03 Richard Stallman <rms@gnu.org> | |
5555 | |
5556 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte | |
5557 for \200...\240 also. | |
5558 (isearch-printing-char): Use unibyte-char-to-multibyte. | |
5559 | |
5560 1999-07-02 Richard Stallman <rms@gnu.org> | |
5561 | |
5562 * frame.el (minibuffer-frame-alist): Use defcustom. | |
5563 (pop-up-frame-alist): Likewise. | |
5564 (initial-frame-alist): Specify * in the doc string. | |
5565 | |
5566 * hscroll.el (hscroll-mode): Make it a permanent local. | |
5567 (hscroll-mode): Don't cancel the timer | |
5568 if HScroll mode is enabled in some other buffer. | |
5569 | |
5570 * isearch.el (isearch-done): If search ends in middle of intangible | |
5571 text (due to text property), move on to the limit of that text. | |
5572 | |
5573 1999-07-01 Andrew Innes <andrewi@gnu.org> | |
5574 | |
5575 * man.el (Man-build-man-command): Use value of null-device, | |
5576 instead of hard-coding "/dev/null". | |
5577 | |
5578 * dos-w32.el (untranslated-canonical-name): Avoid expanding | |
5579 ange-ftp file names, which might force ange-ftp to prompt for a | |
5580 password. | |
5581 | |
5582 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t, | |
5583 to prevent references to temp files. | |
5584 | |
5585 1999-06-30 Richard Stallman <rms@gnu.org> | |
5586 | |
5587 * progmodes/sh-script.el (sh-feature): If nothing is known | |
5588 about the given shell, use the values for `sh'. | |
5589 | |
5590 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
5591 | |
5592 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status", | |
5593 to make it non-recursive. | |
5594 | |
5595 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly. | |
5596 | |
5597 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
5598 | |
5599 * auto-show.el (auto-show-mode): Fix Typo in :set. | |
5600 | |
5601 1999-06-29 Richard M. Stallman <rms@gnu.org> | |
5602 | |
5603 * progmodes/sh-script.el (sh-mode): When setting syntax | |
5604 table, default to the standard one. | |
5605 | |
5606 1999-06-27 Richard M. Stallman <rms@gnu.org> | |
5607 | |
5608 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix. | |
5609 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
5610 1999-06-27 Stefan Monnier <monnier@cs.yale.edu> |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
5611 |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
5612 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up |
25837 | 5613 a frame when `return' is requested (even if pop-up-frames = t) |
5614 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function' | |
5615 should only be set for the bibtex buffer. | |
5616 | |
5617 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix. | |
5618 | |
5619 * progmodes/compile.el: Deal with compilation-error-screen-columns | |
5620 being buffer-local. | |
5621 | |
5622 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
5623 | |
5624 * comint.el (comint-password-prompt-regexp): Allow "(again)". | |
5625 | |
5626 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
5627 | |
5628 * cal-x.el (calendar-only-one-frame-setup): New function. | |
5629 * calendar.el (calendar): Call it if requested. | |
5630 | |
5631 1999-06-24 Karl Heuer <kwzh@gnu.org> | |
5632 | |
5633 * startup.el (iso-8859-n-locale-regexp): Doc fix. | |
5634 | |
5635 1999-06-22 Richard M. Stallman <rms@gnu.org> | |
5636 | |
5637 * mail/supercite.el (sc-emacs-features): Doc fix. | |
5638 | |
5639 1999-06-22 Karl Heuer <kwzh@gnu.org> | |
5640 | |
5641 * files.el (auto-mode-alist): Add pike-mode. | |
5642 | |
5643 1999-06-20 Paul R. Eggert <eggert@twinsun.com> | |
5644 | |
5645 * tar-mode.el (tar-header-block-tokenize): Don't assume that the | |
5646 last byte of a numeric field is a space or a NUL. Parse it as | |
5647 potentially part of the number. This is used by GNU tar | |
5648 1.12.64012 to handle larger values. | |
5649 | |
5650 1999-06-20 Karl Heuer <kwzh@gnu.org> | |
5651 | |
5652 * custom.el (custom-handle-keyword): Fix error message. | |
5653 | |
5654 1999-06-18 Andrew Innes <andrewi@gnu.org> | |
5655 | |
5656 * mail/smtpmail.el (smtpmail-send-it): Use | |
5657 convert-standard-filename to make file names for queued mail safe | |
5658 on Windows (`:' is invalid in file names on Windows). | |
5659 | |
5660 1999-06-17 Kenichi Handa <handa@etl.go.jp> | |
5661 | |
5662 * international/mule-cmds.el (describe-current-input-method): | |
5663 Current-input-method is string. | |
5664 (toggle-input-method): Docstring fixed. | |
5665 | |
5666 * international/mule-diag.el | |
5667 (describe-current-coding-system-briefly): Fix format string. | |
5668 | |
5669 * international/mule-util.el (coding-system-eol-type-mnemonic): | |
5670 Docstring modified. Return a string. | |
5671 | |
5672 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch> | |
5673 | |
5674 * sql.el (sql-input-ring-file-name): Doc fix. | |
5675 | |
5676 1999-06-17 Richard M. Stallman <rms@gnu.org> | |
5677 | |
5678 * calendar/cal-x.el (special-display-buffer-names): | |
5679 Don't put (get-file-buffer diary-file) on this list. | |
5680 | |
5681 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov> | |
5682 | |
5683 * play/mpuz.el (mpuz-try-proposal): Fix message call. | |
5684 Don't penalize player for certain impossible guesses. | |
5685 | |
5686 1999-06-16 Andrew Innes <andrewi@gnu.org> | |
5687 | |
5688 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid, | |
5689 return the string "Unk 0 0000" so at least it appears to be a | |
5690 valid timestamp to `dired-move-to-filename-regexp'. | |
5691 | |
5692 1999-06-15 Ken'ichi Handa <handa@gnu.org> | |
5693 | |
5694 * ps-print.el (ps-control-character): Fix previous change. | |
5695 | |
5696 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
5697 | |
5698 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid | |
5699 multiple output of the last message. | |
5700 | |
5701 1999-06-14 Eli Zaretskii <eliz@gnu.org> | |
5702 | |
5703 * term/internal.el (IT-display-table-setup): Do not remap \222 to | |
5704 the ASCII apostrophe, as most DOS codepages have some other glyph | |
5705 there. | |
5706 | |
5707 1999-06-14 Ken'ichi Handa <handa@gnu.org> | |
5708 | |
5709 * language/ethio-util.el (setup-ethiopic-environment-internal): | |
5710 Use quail-activate-hook instead of obsolete hook quail-mode-hook. | |
5711 (exit-ethiopic-environment): Likewize. | |
5712 | |
5713 1999-06-12 Richard M. Stallman <rms@gnu.org> | |
5714 | |
5715 * cus-start.el (scroll-preserve-screen-position): Fix typo in type. | |
5716 | |
5717 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
5718 | |
5719 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with | |
5720 custom-initialize-default to avoid infinite loop. | |
5721 (crisp-mode): (defun) Call transient-mark-mode here, not when | |
5722 loading the file. Run crisp-mode-hook here, and run | |
5723 crisp-load-hook when loading the file. | |
5724 | |
5725 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in | |
5726 rmail-summary buffer, search for pattern in rmail-file. | |
5727 | |
5728 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo. | |
5729 | |
5730 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type. | |
5731 | |
5732 * ps-print.el (ps-printer-name): Fix custom type. | |
5733 | |
5734 1999-06-12 Reto Zimmermann <reto@synopsys.com> | |
5735 | |
5736 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug. | |
5737 (vhdl-port-paste-generic-map): Fix indentation bug. | |
5738 (vhdl-port-paste-port-map): Fix indentation bug. | |
5739 (vhdl-scan-file-contents): Make scanning case insensitive. | |
5740 | |
5741 1999-06-11 Richard M. Stallman <rms@gnu.org> | |
5742 | |
5743 * files.el (write-file): When buffer is not already visiting a file, | |
5744 don't put buffer name in the minibuffer, just make it the default. | |
5745 Also handle just directory as arg usefully in that case. | |
5746 | |
5747 * simple.el (sendmail-user-agent-compose): | |
5748 Ignore case when inserting the rest of the "other" headers. | |
5749 | |
5750 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n. | |
5751 | |
5752 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix. | |
5753 (info-lookup-interactive-arguments): Never insert the default | |
5754 into the minibuffer automatically. | |
5755 | |
5756 * emacs-lisp/cl-extra.el (getf): Don't call get*. | |
5757 | |
5758 1999-06-09 Richard M. Stallman <rms@gnu.org> | |
5759 | |
5760 * simple.el (shell-command): Avoid printing "mark set" message. | |
5761 | |
5762 1999-06-09 Dave Love <fx@gnu.org> | |
5763 | |
5764 * progmodes/compile.el (compilation-error-regexp-alist): Allow | |
5765 digits in program name in first pattern. | |
5766 | |
5767 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
5768 | |
5769 * vc.el (vc-dired-mode): Don't match anything before the date in | |
5770 dired-move-to-filename-regexp. | |
5771 | |
5772 1999-06-07 Ken'ichi Handa <handa@gnu.org> | |
5773 | |
5774 * international/quail.el (quail-define-rules): Fix typo in | |
5775 docstring. | |
5776 | |
5777 1999-06-05 Stephen Eglen <stephen@gnu.org> | |
5778 | |
5779 * iswitchb.el (iswitchb-default-keybindings): Add | |
5780 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather | |
5781 than when package is loaded. | |
5782 | |
5783 1999-06-04 Richard M. Stallman <rms@gnu.org> | |
5784 | |
5785 * startup.el (command-line): Don't set user-init-file directly; | |
5786 tell `load' to set it. | |
5787 | |
5788 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg. | |
5789 | |
5790 * simple.el (next-history-element): | |
5791 Handle minibuffer-text-before-history properly when reading sexps. | |
5792 | |
5793 * disp-table.el (standard-display-european): | |
5794 For an interactive call by the user, | |
5795 don't set enable-multibyte-characters, | |
5796 and don't set the terminal coding system. | |
5797 | |
5798 * textmodes/refbib.el: Don't print any messages or display | |
5799 a buffer when loading the library. | |
5800 (r2b-help): Doc fix. | |
5801 (r2b-help-message): Update the documentation. | |
5802 (r2b-load-quietly): Variable deleted. | |
5803 (r2b-convert-buffer): Doc fix. | |
5804 | |
5805 1999-06-04 Dave Love <fx@gnu.org> | |
5806 | |
5807 * help.el (help-xref-interned): Fix insertion of fdoc and revamp. | |
5808 | |
5809 * auto-show.el: Don't change hooks on loading. | |
5810 (auto-show-mode): Autoload. Default to nil. Add :set &c. | |
5811 (auto-show-mode): Add to hooks here. | |
5812 | |
5813 1999-06-04 Richard Sharman <rsharman@pobox.com> | |
5814 | |
5815 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite | |
5816 recursion on bogus input. | |
5817 | |
5818 1999-06-04 Eric M. Ludlam <zappo@ultranet.com> | |
5819 | |
5820 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user | |
5821 does not select a buffer from the buffers menu, then the attached | |
5822 frame is not switched to anything. | |
5823 | |
5824 1999-06-03 Ken'ichi Handa <handa@gnu.org> | |
5825 | |
5826 * language/vietnamese.el (ccl-encode-vscii): Typo fixed | |
5827 (viet-viscii-...->viet-vscii...). | |
5828 | |
5829 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed. | |
5830 | |
5831 1999-06-01 Dave Love <fx@gnu.org> | |
5832 | |
5833 * progmodes/fortran.el: Add :link to defgroup. | |
5834 (fortran-blink-matching-if): Match ELSE statements too. | |
5835 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so | |
5836 that filling is always done. | |
5837 | |
5838 1999-05-31 Richard M. Stallman <rms@gnu.org> | |
5839 | |
5840 * simple.el (append-next-kill): Use an arg to distinguish | |
5841 interactive calls from Lisp calls, rather than (interactive-p). | |
5842 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
5843 * international/iso-transl.el (iso-transl-language-alist): |
25837 | 5844 Interchange n and N. |
5845 | |
5846 1999-05-31 Dave Love <fx@gnu.org> | |
5847 | |
5848 * msb.el Add to minor-mode-map-alist. Remove hook installation | |
5849 and keymap munging on load. | |
5850 (msb-mode): New option. | |
5851 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory): | |
5852 Doc fix. | |
5853 (msb-mode-map): New variable. | |
5854 (msb-mode): New command. | |
5855 | |
5856 1999-05-31 Dave Love <fx@gnu.org> | |
5857 | |
5858 * ispell.el: (ispell-alternate-dictionary): Fix custom type. | |
5859 (ispell-complete-word-dict): Likewise. | |
5860 | |
5861 1999-05-31 Eli Zaretskii <eliz@gnu.org> | |
5862 | |
5863 * forms.el (forms-save-buffer): Call set-buffer-modified-p to | |
5864 force the data buffer to be saved, even if the data didn't | |
5865 change, in case the write filter was modified. Restore the | |
5866 current record after read-file-filter finishes. | |
5867 | |
5868 1999-05-29 Karl Heuer <kwzh@gnu.org> | |
5869 | |
5870 * ispell4.el: Obsolete; file deleted. | |
5871 | |
5872 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line. | |
5873 | |
5874 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if | |
5875 VALUE is a syntax table. | |
5876 | |
5877 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie. | |
5878 | |
5879 * simple.el (zap-to-char): Doc fix. | |
5880 | |
5881 1999-05-27 Ken'ichi Handa <handa@gnu.org> | |
5882 | |
5883 * isearch.el (isearch-quote-char): Don't assume character codes | |
5884 0200 - 0237 stand for characters in some single-byte character | |
5885 charset. | |
5886 | |
5887 1999-05-27 Dave Love <fx@gnu.org> | |
5888 | |
5889 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c. | |
5890 | |
5891 1999-05-27 Andreas Schwab <schwab@gnu.org> | |
5892 | |
5893 * dired-aux.el (dired-insert-subdir-doinsert): Check that the | |
5894 headerline does not exist already. | |
5895 | |
5896 1999-05-26 Richard Stallman <rms@gnu.org> | |
5897 | |
5898 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): | |
5899 Avoid nested null-loops. | |
5900 | |
5901 1999-05-26 Ken'ichi Handa <handa@gnu.org> | |
5902 | |
5903 * international/characters.el: Typo fixed; prefered->preferred. | |
5904 | |
5905 * international/mule-cmds.el (find-coding-systems-for-charsets): | |
5906 Typo fixed; prefered->preferred. | |
5907 | |
5908 * map-ynp.el (map-y-or-n-p): Don't inherit the current input | |
5909 method in read-event. | |
5910 | |
5911 * international/mule.el (charset-info): Doc-string fixed. | |
5912 | |
5913 1999-05-25 Ken'ichi Handa <handa@gnu.org> | |
5914 | |
5915 * mail/smtpmail.el (smtpmail-send-it): Bind | |
5916 smtpmail-code-conv-from properly. | |
5917 (smtpmail-send-data-1): If DATA is a multibyte string, encode it | |
5918 by smtpmail-code-conv-from. | |
5919 | |
5920 1999-05-24 Richard Stallman <rms@gnu.org> | |
5921 | |
5922 * emulation/crisp.el (crisp-submit-bug-report): Function deleted. | |
5923 Binding deleted also. | |
5924 | |
5925 1999-05-24 Karl Heuer <kwzh@gnu.org> | |
5926 | |
5927 * comint.el (comint-bol-or-process-mark): Doc fix. | |
5928 | |
5929 1999-05-23 Dave Love <fx@gnu.org> | |
5930 | |
5931 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map. | |
5932 Enter it on minor-mode-map-alist. | |
5933 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed. | |
5934 Autoload. Add custom setter. | |
5935 (crisp-mark-line): Doc fix. | |
5936 (crisp-mode): Autoload. Re-write not to frob keymaps directly. | |
5937 (crisp-mode-hook): Define. | |
5938 | |
5939 1999-05-23 Ken'ichi Handa <handa@gnu.org> | |
5940 | |
5941 * files.el (recover-file): Recover buffer-file-coding-system. | |
5942 | |
5943 1999-05-22 Richard Stallman <rms@gnu.org> | |
5944 | |
5945 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp | |
5946 regexp match the date, to avoid treating date as file size. | |
5947 Add YYYY S option to WESTERN/ | |
5948 | |
5949 * bookmark.el: Delete some XEmacs compatibility code. | |
5950 (bookmark-jump-noselect): Check vc-backend. | |
5951 | |
5952 * subr.el (add-to-list): Doc fix. | |
5953 | |
5954 1999-05-21 Stephen Eglen <stephen@gnu.org> | |
5955 | |
5956 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer. | |
5957 | |
5958 1999-05-18 Richard Stallman <rms@gnu.org> | |
5959 | |
5960 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a | |
5961 non-space after the @anchor command. | |
5962 (texinfo-format-var): Handle other nested constructs, using | |
5963 texinfo-parse-expanded-arg and texinfo-discard-command, not | |
5964 texinfo-parse-arg-discard. | |
5965 | |
5966 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable. | |
5967 (debug): Bind and use debugger-outer-inhibit-redisplay. | |
5968 Bind inhibit-redisplay to nil. | |
5969 (debugger-env-macro): Treat inhibit-redisplay like other outside vars. | |
5970 | |
5971 1999-05-17 Dave Love <fx@gnu.org> | |
5972 | |
5973 * help.el (describe-function-1): Extra arg, interactive-p. | |
5974 (describe-key, describe-function): Use it. | |
5975 | |
5976 1999-05-17 Karl Heuer <kwzh@gnu.org> | |
5977 | |
5978 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie. | |
5979 | |
5980 1999-05-16 Dave Love <fx@gnu.org> | |
5981 | |
5982 * cus-start.el (all): Delete selective-display. Add scroll-margin, | |
5983 scroll-preserve-screen-position, scroll-conservatively. | |
5984 | |
5985 1999-05-16 Dave Love <fx@gnu.org> | |
5986 | |
5987 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case. | |
5988 | |
5989 1999-05-15 Reto Zimmermann <reto@Synopsys.COM> | |
5990 | |
5991 * progmodes/vhdl-mode.el: Completely revised and massively extended. | |
5992 | |
5993 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it> | |
5994 | |
5995 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no | |
5996 magic number and is not associated with a file. | |
5997 | |
5998 1999-05-14 Richard M. Stallman <rms@gnu.org> | |
5999 | |
6000 * files.el (find-file-noselect-1): Fix previous change. | |
6001 | |
6002 1999-05-14 Simon Marshall <simon@gnu.org> | |
6003 | |
6004 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'. | |
6005 | |
6006 1999-05-13 Ken'ichi Handa <handa@gnu.org> | |
6007 | |
6008 * international/mule-diag.el (mule-diag): Change MULE to Mule in | |
6009 docstring. | |
6010 | |
6011 * international/mule-cmds.el: Change MULE to Mule in docstrings | |
6012 and menus. | |
6013 | |
6014 1999-05-10 Kenichi HANDA <handa@etl.go.jp> | |
6015 | |
6016 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule | |
6017 to correctly reflect the value of BaseLineOffset in | |
6018 RelativeCompose. Now the value of RelativeCompose is an array of | |
6019 low and high positions. | |
6020 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and | |
6021 RLC for the above change. | |
6022 | |
6023 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org> | |
6024 | |
6025 * comint.el (comint-password-prompt-regexp): Modified to match the | |
6026 output of ksu and ssh-add. | |
6027 | |
6028 1999-05-11 Kenichi HANDA <handa@etl.go.jp> | |
6029 | |
6030 * language/korea-util.el (isearch-toggle-korean-input-method): | |
6031 Adjusted for the change of input method handling in isearch.el. | |
6032 (isearch-hangul-switch-symbol-ksc): Likewise. | |
6033 (isearch-hangul-switch-hanja): Likewise. | |
6034 | |
6035 1999-05-10 Dave Love <fx@gnu.org> | |
6036 | |
6037 * help.el (help-make-xrefs): Fix typo. | |
6038 | |
6039 1999-05-10 Andreas Schwab <schwab@gnu.org> | |
6040 | |
6041 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add | |
6042 unibyte-display-via-language-environment. | |
6043 | |
6044 * help.el (help-make-xrefs): Handle more cases when looking for | |
6045 commands in a keymap description. | |
6046 | |
6047 1999-05-10 Eli Zaretskii <eliz@gnu.org> | |
6048 | |
6049 * loadup.el: For ms-dos systems, load ccl and codepage. | |
6050 | |
6051 1999-05-09 Ken'ichi Handa <handa@gnu.org> | |
6052 | |
6053 * ps-print.el (ps-control-character): Call | |
6054 ps-mule-prepare-ascii-font to setup ASCII fonts. | |
6055 | |
6056 * ps-mule.el (ps-mule-begin-job): Redo this change "if | |
6057 ps-multibyte-buffer is nil, use | |
6058 ps-mule-font-info-database-default." | |
6059 | |
6060 1999-05-08 Ken Stevens <k.stevens@ieee.org> | |
6061 | |
6062 * ispell.el (ispell-local-dictionary-alist): New variable for | |
6063 customizing local dictionaries not accessable by everyone. | |
6064 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'. | |
6065 (ispell-required-version): Changed format `(major minor | |
6066 revision)' to support general pattern matching. | |
6067 (ispell-tex-skip-alists): AMS Tex block comment and `\author' | |
6068 skip region commented out due to incorrect skip potential in std latex. | |
6069 (ispell-word): Removed `when' macro. Fixed bug of not restoring | |
6070 cursor point on small words for calls from `ispell-minor-mode'. | |
6071 (check-ispell-version): Tests and accepts versions major.minor | |
6072 and above, with adjustments for interactions in 3.1.0-3.1.11. | |
6073 (ispell-get-line): No longer skips ispell process special characters. | |
6074 (ispell-comments-and-strings): Removed `when' macro call. | |
6075 (ispell-minor-check): Requires ispell-word to restore cursor point. | |
6076 (ispell-buffer-local-parsing): Supports checking comments only. | |
6077 | |
6078 1999-05-08 Karl Heuer <kwzh@gnu.org> | |
6079 | |
6080 * comint.el (comint-password-prompt-regexp): Fix last change to be | |
6081 more specific. | |
6082 | |
6083 1999-05-07 Richard M. Stallman <rms@gnu.org> | |
6084 | |
6085 * subr.el (with-temp-message): Fix the other call to message | |
6086 to use %s. | |
6087 | |
6088 1999-05-07 Michael Ernst <mernst@alum.mit.edu> | |
6089 | |
6090 * gud.el (gud-format-command): "%F" means file sans extension. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
6091 (jdb): Use %F, not %f, for gud-break. |
25837 | 6092 |
6093 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org> | |
6094 | |
6095 * comint.el (comint-password-prompt-regexp): Modified so that it | |
6096 matches the output of kinit. | |
6097 | |
6098 1999-05-06 Greg Stark <gsstark@mit.edu> | |
6099 | |
6100 * timezone.el (timezone-parse-date): Recognize new format used in | |
6101 internet cookies. | |
6102 | |
6103 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu> | |
6104 | |
6105 * international/iso-acc.el (iso-languages): Add latin-2 cedillas. | |
6106 | |
6107 1999-05-04 Andrew Innes <andrewi@gnu.org> | |
6108 | |
6109 * time.el (display-time-update): Allow for wrap-around when | |
6110 checking against display-time-server-down-time. | |
6111 | |
6112 1999-05-04 Ken'ichi Handa <handa@gnu.org> | |
6113 | |
6114 * international/mule-diag.el (describe-coding-system): Fix English | |
6115 message. | |
6116 | |
6117 1999-05-03 Jason Rumney <jasonr@altavista.net> | |
6118 | |
6119 * term/w32-win.el: Change the x-charset-registry property for the | |
6120 Japanese charsets that are supported by Japanese Windows fonts. | |
6121 | |
6122 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
6123 | |
6124 * diary-lib.el (diary-remind): Rewritten to behave sensibly for | |
6125 diary-block diary entries for which the reminders and the diary | |
6126 entries can overlap. | |
6127 | |
6128 1999-05-02 Jason Rumney <jasonr@altavista.net> | |
6129 | |
6130 * term/w32-win.el (mouse-set-font): Ensure constructed fontset | |
6131 matches the font selected in the dialog. | |
6132 | |
6133 1999-05-02 Dave Love <fx@gnu.org> | |
6134 | |
6135 * browse-url.el (browse-url-browser-function): Add :version. | |
6136 | |
6137 * international/mule.el (auto-coding-alist): Add .tgz. | |
6138 | |
6139 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il> | |
6140 | |
6141 * international/codepage.el (cp-coding-system-for-codepage-1): | |
6142 Make the magnification parameter for the -dos encoder be 2. | |
6143 | |
6144 1999-05-2 Andrew Innes <andrewi@gnu.org> | |
6145 | |
6146 * term/w32-win.el (w32-drag-n-drop): Select file in window where | |
6147 it is dropped, rather than current window. | |
6148 | |
6149 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables | |
6150 after switching buffer, as case-fold-search is a buffer local | |
6151 variable. | |
6152 | |
6153 * w32-fns.el (convert-standard-filename): Only convert directory | |
6154 separators to backslash if the interactive shell is one of the | |
6155 standard Windows shells that has DOS semantics. | |
6156 | |
6157 * ls-lisp.el (ls-lisp-format-time): Trap errors from | |
6158 format-time-string, and return a suitable string to indicate the | |
6159 timestamp was invalid. | |
6160 | |
6161 * hexl.el (hexlify-command): Apply shell-quote-argument after | |
6162 expanding hexl-program in case exec-directory contains a space. | |
6163 (dehexlify-command): Ditto. | |
6164 | |
6165 * dos-w32.el (file-name-buffer-file-type-alist): Remove various | |
6166 file extension regexps which aren't necessarily binary files. | |
6167 (direct-print-region-helper): Use subst-char-in-string instead of | |
6168 binding directory-sep-char to convert filenames to DOS syntax. | |
6169 (direct-print-region-use-command-dot-com): New variable. | |
6170 (direct-print-region-helper): Use it to control whether to invoked | |
6171 command.com to print on Windows 9x. | |
6172 | |
6173 * browse-url.el (browse-url-browser-function): Default to | |
6174 browse-url-default-windows-browser on windows-nt. | |
6175 (browse-url-default-windows-browser): New function. | |
6176 | |
6177 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il> | |
6178 | |
6179 * forms.el (forms-mode): Don't call forms-first-record or | |
6180 forms-last-record if the data file has zero records. | |
6181 | |
6182 1999-04-29 Richard M. Stallman <rms@gnu.org> | |
6183 | |
6184 * files.el (find-file-noselect-1): If buffer-file-name has changed | |
6185 after find-file-not-found-hooks runs, recompute the truename. | |
6186 And don't use FILENAME after that point. | |
6187 | |
6188 1999-04-27 Dave Love <fx@gnu.org> | |
6189 | |
6190 * paren.el (show-paren-mode) | |
6191 * which-func.el (which-func-mode-global) | |
6192 * type-break.el (type-break-mode) | |
6193 * time.el (display-time-mode) | |
6194 * rsz-mini.el (resize-minibuffer-mode) | |
6195 * mouse-sel.el (mouse-sel-mode) | |
6196 * icomplete.el (icomplete-mode) | |
6197 * hscroll.el (hscroll-global-mode) | |
6198 * help.el (temp-buffer-resize-mode) | |
6199 * font-lock.el (global-font-lock-mode) | |
6200 * delsel.el (delete-selection-mode) | |
6201 * avoid.el (mouse-avoidance-mode) | |
6202 * autoinsert.el (auto-insert-mode) | |
6203 * winner.el (winner-mode): Doc fix. | |
6204 | |
6205 1999-04-26 Karl Heuer <kwzh@gnu.org> | |
6206 | |
6207 * mail/rmail.el (rmail-next-same-subject): When searching, ignore | |
6208 the same whitespace that was ignored in choosing the subject string. | |
6209 | |
6210 1999-04-26 Richard M. Stallman <rms@gnu.org> | |
6211 | |
6212 * info.el (Info-find-node): Position properly after finding anchor. | |
6213 | |
6214 * cus-start.el (all): Handle unibyte-display-via-language-environment. | |
6215 | |
6216 * simple.el (indent-new-comment-line): Fix previous change. | |
6217 | |
6218 * complete.el: Delete the wildcard expansion feature | |
6219 since that is now standard in find-file. | |
6220 (PC-try-load-many-files): Function deleted. | |
6221 (PC-after-load-many-files): Function deleted. | |
6222 (PC-many-files-list): Variable deleted. | |
6223 (PC-disable-wildcards): Variable deleted. | |
6224 (partial-completion-mode): Don't enable the wildcard feature. | |
6225 | |
6226 * complete.el (PC-look-for-include-file): Don't set global variables | |
6227 `error', `buf' and `filename' here. | |
6228 | |
6229 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker. | |
6230 | |
6231 1999-04-26 John Wiegley <johnw@oneworld.new-era.com> | |
6232 | |
6233 * textmodes/outline.el (outline-regexp): Doc fix. | |
6234 | |
6235 1999-04-26 John Wiegley <johnw@borland.com> | |
6236 | |
6237 * progmodes/compile.el (compilation-error-regexp-alist): Recognize | |
6238 C++Builder 4.0 error message syntax. | |
6239 | |
6240 1999-04-26 Mark Diekhans <markd@Grizzly.COM> | |
6241 | |
6242 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't | |
6243 supported, use find -exec. | |
6244 | |
6245 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp> | |
6246 | |
6247 * textmodes/texinfmt.el (texinfo-format-buffer): Bind | |
6248 coding-system-for-write, to avoid hanging when non-interactive. | |
6249 | |
6250 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de> | |
6251 | |
6252 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to | |
6253 start with a newline. | |
6254 | |
6255 1999-04-13 Ken'ichi Handa <handa@gnu.org> | |
6256 | |
6257 * international/mule-conf.el (x-ctext): New coding system. | |
6258 | |
6259 1999-04-12 Richard M. Stallman <rms@gnu.org> | |
6260 | |
6261 * international/mule-cmds.el (input-method-function): | |
6262 Add permanent-local property. | |
6263 | |
6264 1999-04-12 Dave Love <fx@gnu.org> | |
6265 | |
6266 * jka-compr.el (jka-compr-insert-file-contents): Fix previous | |
6267 change to use jka-compr-byte-compiler-base-file-name. | |
6268 | |
6269 * supercite.el (sc-scan-info-alist): Revert last change. | |
6270 (sc-attrib-selection-list): Fix :type here instead. | |
6271 | |
6272 1999-04-11 Eli Zaretskii <eliz@gnu.org> | |
6273 | |
6274 * international/mule.el (auto-coding-alist-lookup): Include ms-dos | |
6275 in the list of case-insensitive filesystems. | |
6276 | |
6277 1999-04-09 Kenichi Handa <handa@etl.go.jp> | |
6278 | |
6279 * international/fontset.el (create-fontset-from-fontset-spec): | |
6280 Don't register duplicated alias fontset names. | |
6281 | |
6282 1999-04-08 Richard Stallman <rms@gnu.org> | |
6283 | |
6284 * international/mule.el (auto-coding-alist-lookup): New function. | |
6285 (set-auto-coding): Use auto-coding-alist-lookup. | |
6286 | |
6287 * jka-compr.el (jka-compr-insert-file-contents): | |
6288 Use auto-coding-alist-lookup to check for files that | |
6289 should not have eol conversion, in the unibyte case. | |
6290 | |
6291 1999-04-07 Dave Love <fx@gnu.org> | |
6292 | |
6293 * help.el (describe-variable): Check custom-loads property as well | |
6294 as custom-type. | |
6295 | |
6296 * abbrev.el (abbrev-mode): Customizing sets the default value. | |
6297 | |
6298 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
6299 | |
6300 * vc.el (vc-backend-revert): For CVS files that were made | |
6301 writeable with "cvs edit", call "cvs unedit" to undo that. | |
6302 | |
6303 1999-04-08 Dave Love <fx@gnu.org> | |
6304 | |
6305 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type | |
6306 more. | |
6307 (sc-emacs-features): Recognize Emacs 20. | |
6308 (sc-read-string): Use history arg. | |
6309 (sc-scan-info-alist): Check for rtnvalue a cons. | |
6310 | |
6311 1999-04-08 Kenichi HANDA <handa@etl.go.jp> | |
6312 | |
6313 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a | |
6314 coding system to encode the message by | |
6315 select-message-coding-system. | |
6316 | |
6317 1999-04-07 Richard Stallman <rms@gnu.org> | |
6318 | |
6319 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition. | |
6320 | |
6321 * winner.el: Reorder definitions. | |
6322 | |
6323 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs. | |
6324 | |
6325 * mail/rmail.el (rmail-decode-babyl-format): | |
6326 Undo previous change. | |
6327 | |
6328 1999-04-06 Richard Stallman <rms@gnu.org> | |
6329 | |
6330 * info.el (Info-find-node): Check for an anchor at the | |
6331 proper place, before reading an indirect file. | |
6332 | |
6333 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL. | |
6334 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
6335 * jka-compr.el (jka-compr-insert-file-contents): |
25837 | 6336 Use raw-text-unix when we want no conversion. |
6337 | |
6338 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr> | |
6339 | |
6340 * timezone.el (timezone-parse-date): Corrected regexp for | |
6341 style (5) date format so that tenths of seconds are optional. | |
6342 | |
6343 1999-04-05 Eli Zaretskii <eliz@gnu.org> | |
6344 | |
6345 * term/internal.el (dos-cpNNN-setup): New function, with the guts | |
6346 of dos-codepage-setup. | |
6347 (cjk-codepages-alist): New variable, an alist of Far-Eastern | |
6348 codepages for which there's no need to set up cpNNN coding | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
6349 systems. |
25837 | 6350 (dos-codepage-setup): Support Far-Eastern DOS terminals. |
6351 | |
6352 1999-04-05 Richard Stallman <rms@gnu.org> | |
6353 | |
6354 * mail/rmail.el (rmail-ignored-headers): Doc fix. | |
6355 | |
6356 1999-04-02 Richard Stallman <rms@gnu.org> | |
6357 | |
6358 * progmodes/compile.el (compilation-handle-exit): Do right thing | |
6359 if (car status) doesn't end in a newline. | |
6360 | |
6361 1999-04-01 Dave Love <fx@gnu.org> | |
6362 | |
6363 * progmodes/sql.el (SQL): Add defgroup :version. | |
6364 | |
6365 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu> | |
6366 | |
6367 * emacs-lisp/bytecomp.el (byte-compile-file): Clear | |
6368 buffer-file-coding-system. If the coding system used is raw-text, | |
6369 etc., make the *Compiler Input* buffer unibyte. | |
6370 | |
6371 * international/mule.el (find-new-buffer-file-coding-system): Doc fix. | |
6372 | |
6373 * loadup.el: Don't write the fns-...el file if not dumping. | |
6374 | |
6375 1999-03-31 Dave Love <fx@gnu.org> | |
6376 | |
6377 * snmp-mode.el (snmp): Fix defgroup :version. | |
6378 | |
6379 * hilit-chg.el (highlight-changes): Add defgroup :version. | |
6380 | |
6381 1999-03-31 Andreas Schwab <schwab@gnu.org> | |
6382 | |
6383 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after | |
6384 the gnus-save-hidden-threads macro. | |
6385 | |
6386 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk> | |
6387 | |
6388 * faces.el (face-set-after-frame-default): Obey the | |
6389 `customized-face' for new faces. | |
6390 | |
6391 1999-03-30 Dave Love <fx@gnu.org> | |
6392 | |
6393 * international/mule-cmds.el (current-language-environment): Doc fix. | |
6394 * abbrev.el (abbrev-mode): Doc fix. | |
6395 * autoinsert.el (auto-insert-mode): Doc fix. | |
6396 * complete.el (partial-completion-mode): Doc fix. | |
6397 * avoid.el (mouse-avoidance-mode): Doc fix. | |
6398 * delsel.el (delete-selection-mode): Doc fix. | |
6399 * font-lock.el (global-font-lock-mode): Doc fix. | |
6400 * help.el (temp-buffer-resize-mode): Doc fix. | |
6401 * hscroll.el (hscroll-global-mode): Doc fix. | |
6402 * icomplete.el (icomplete-mode): Doc fix. | |
6403 * mouse-sel.el (mouse-sel-mode): Doc fix. | |
6404 * paren.el (show-paren-mode): Doc fix. | |
6405 * rsz-mini.el (resize-minibuffer-mode): Doc fix. | |
6406 * time.el (display-time-mode): Doc fix. | |
6407 * type-break.el (type-break-mode): Doc fix. | |
6408 * which-func.el (which-func-mode-global): Doc fix. | |
6409 * winner.el (winner-mode): Doc fix. | |
6410 | |
6411 1999-03-30 Michael Ernst <mernst@alum.mit.edu> | |
6412 | |
6413 * wid-edit.el (widget-before-change): Signal text-read-only rather | |
6414 than an ordinary error. | |
6415 | |
6416 1999-03-30 Richard M. Stallman <rms@gnu.org> | |
6417 | |
6418 * repeat.el: Don't require advice. | |
6419 (repeat): Do function-indirection in check for kbd macro. | |
6420 In self-insert case, use the *last* char in INSERTION. | |
6421 | |
6422 1999-03-30 Karl Heuer <kwzh@gnu.org> | |
6423 | |
6424 * progmodes/cc-cmds.el (c-indent-command): Doc fix. | |
6425 | |
6426 1999-03-29 Andreas Schwab <schwab@gnu.org> | |
6427 | |
6428 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for | |
6429 comint-input-filter-functions. Make variables related to shell | |
6430 directory tracking local. | |
6431 | |
6432 1999-03-26 Andreas Schwab <schwab@gnu.org> | |
6433 | |
6434 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable. | |
6435 | |
6436 * simple.el (shell-command-on-region): Cope with exit-status being | |
6437 nil, which happens if call-process-region was interrupted. | |
6438 | |
6439 1999-03-26 Richard M. Stallman <rms@gnu.org> | |
6440 | |
6441 * simple.el (indent-new-comment-line): Handle use at a point | |
6442 after a comment-end. Handle multiple comments. | |
6443 | |
6444 * mail/rmail.el (rmail-decode-babyl-format): | |
6445 To prevent locking, bind buffer-file-name to nil. | |
6446 | |
6447 1999-03-26 Karl Fogel <kfogel@red-bean.com> | |
6448 | |
6449 * mail-hist.el (mail-hist-current-header-name): Don't make | |
6450 off-by-one-error when determining if in message body. | |
6451 | |
6452 1999-03-25 Andrew Innes <andrewi@gnu.org> | |
6453 | |
6454 * w32-fns.el (set-default-process-coding-system): Copied from | |
6455 dos-w32.el, but modified to use Unix line endings for process | |
6456 input, and to add a suitable entry to process-coding-system-alist | |
6457 for DOS shells. | |
6458 | |
6459 * dos-fns.el (set-default-process-coding-system): Copied from | |
6460 dos-w32.el. | |
6461 | |
6462 * dos-w32.el (set-default-process-coding-system): Move function to | |
6463 dos-fns.el; a different version is used in w32-fns.el. | |
6464 | |
6465 1999-03-24 Dave Love <fx@gnu.org> | |
6466 | |
6467 * info.el (Info-directory-list): Revert change to re-writing | |
6468 Info-default-directory-list, but put `alternative' first. | |
6469 (Info-insert-dir): Modify selecting the top dir file as a consequence. | |
6470 | |
6471 1999-03-23 Simon Marshall <simon@gnu.org> | |
6472 | |
6473 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is | |
6474 on the line by itself. | |
6475 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if | |
6476 it is not in a declarative context. | |
6477 | |
6478 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk> | |
6479 | |
6480 * cus-edit.el (custom-variable-prompt): Allow customization of | |
6481 autoloaded symbols. | |
6482 | |
6483 1999-03-22 Kenichi HANDA <handa@etl.go.jp> | |
6484 | |
6485 * simple.el (what-cursor-position): Don't cause error when point | |
6486 is at invalid multibyte sequence. | |
6487 | |
6488 1999-03-21 Karl Heuer <kwzh@gnu.org> | |
6489 | |
6490 * complete.el (partial-completion-mode): Doc fix. | |
6491 | |
6492 1999-03-19 Richard M. Stallman <rms@gnu.org> | |
6493 | |
6494 * progmodes/cplus-md.el (old-c++): Remove :group. | |
6495 | |
6496 * progmodes/c-mode.el (old-c): Remove :group. | |
6497 | |
6498 1999-03-18 Simon Marshall <simon@gnu.org> | |
6499 | |
6500 * font-lock.el (c-font-lock-keywords-2): Added "complex" type. | |
6501 (java-font-lock-keywords-2): Added "strictfp" keyword. | |
6502 | |
6503 1999-03-17 Jason Rumney <jasonr@altavista.net> | |
6504 | |
6505 * w32-fns.el (set-w32-system-coding-system) New function. | |
6506 (w32-system-coding-system) Initialize to 'iso-latin-1. | |
6507 | |
6508 1999-03-17 Eli Zaretskii <eliz@gnu.org> | |
6509 | |
6510 * international/mule-cmds.el (set-language-environment): Fix | |
6511 previous change: don't use dos-codepage when unbound. | |
6512 | |
6513 1999-03-17 Karl Heuer <kwzh@gnu.org> | |
6514 | |
6515 * calendar/appt.el (appt-make-list): Fix previous change. | |
6516 | |
6517 1999-03-16 Richard M. Stallman <rms@gnu.org> | |
6518 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
6519 * window.el (shrink-window-if-larger-than-buffer): |
25837 | 6520 Don't try to redisplay with the cursor at the end |
6521 on its own line--that would force a scroll and spoil things. | |
6522 | |
6523 1999-03-16 Eli Zaretskii <eliz@gnu.org> | |
6524 | |
6525 * international/mule-cmds.el (set-language-environment): Don't use | |
6526 cpNNN-nonascii-translation-table if it is unbound. | |
6527 | |
6528 * term/internal.el (dos-codepage-setup): Compute the unibyte | |
6529 syntax table and bind unibyte-display-via-language-environment | |
6530 here, rather than at top level, so that resetting to unibyte in | |
6531 .emacs works as expected. | |
6532 | |
6533 1999-03-15 Simon Marshall <simon@gnu.org> | |
6534 | |
6535 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword. | |
6536 | |
6537 1999-03-14 Milan Zamazal <pdm@pvt.net> | |
6538 | |
6539 * abbrev.el (inverse-add-abbrev): Inherit the current input method. | |
6540 | |
6541 1999-03-14 Kenichi Handa <handa@etl.go.jp> | |
6542 | |
6543 * international/mule-util.el (detect-coding-with-priority): | |
6544 Restore the internal database. | |
6545 | |
6546 1999-03-14 Stephen Eglen <stephen@gnu.org> | |
6547 | |
6548 * mail/sendmail.el (sendmail-send-it): Fix typo in error string | |
6549 if mail-from-style has invalid value. | |
6550 | |
6551 1999-03-12 Karl Heuer <kwzh@gnu.org> | |
6552 | |
6553 * vc.el (vc-delete-logbuf-window): New var. | |
6554 (vc-finish-logentry): Use it. | |
6555 | |
6556 1999-03-12 Richard M. Stallman <rms@gnu.org> | |
6557 | |
6558 * startup.el (command-line-1): Improve startup msg. | |
6559 | |
6560 1999-03-12 Eric M. Ludlam <zappo@ultranet.com> | |
6561 | |
6562 * speedbar.el: Added commentary about stealthy functions. | |
6563 (speedbar-message) new function. | |
6564 (speedbar-y-or-n-p): New function | |
6565 (speedbar-with-attached-buffer) Moved macro before reference. | |
6566 Now uses `save-selected-window'. | |
6567 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh, | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
6568 speedbar-generic-item-info, speedbar-item-info-file-helper, |
25837 | 6569 speedbar-item-delete, speedbar-insert-generic-list, |
6570 speedbar-timer-fn, speedbar-check-vc-this-line, | |
6571 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags, | |
6572 speedbar-buffers-item-info) Use speedbar-message. | |
6573 (speedbar-item-info) Limit `message-log-max'. | |
6574 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename, | |
6575 speedbar-item-delete, speedbar-item-object-delete, | |
6576 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p. | |
6577 | |
6578 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp> | |
6579 | |
6580 * server.el (server-start): Set coding system for the server | |
6581 process to raw-text. | |
6582 (server-process-filter): Decode file names if necessary. | |
6583 | |
6584 1999-03-12 Dave Love <fx@gnu.org> | |
6585 | |
6586 * textmodes/fill.el (sentence-end-double-space): Doc fix. | |
6587 | |
6588 * textmodes/paragraphs.el (sentence-end): Doc fix. | |
6589 | |
6590 1999-03-11 Karl Heuer <kwzh@gnu.org> | |
6591 | |
6592 * comint.el (comint-password-prompt-regexp): Accept "login password:" | |
6593 | |
6594 1999-03-09 Karl Heuer <kwzh@gnu.org> | |
6595 | |
6596 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line. | |
6597 (ispell-dictionary-alist-2): Likewise. | |
6598 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars. | |
6599 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars. | |
6600 (ispell-dictionary-alist): Build from six pieces, not just two. | |
6601 | |
6602 * ps-bdf.el (bdf-directory-list): Doc fix. | |
6603 | |
6604 * enriched.el (enriched-mode): Make var permanent-local. | |
6605 | |
6606 1999-03-09 Dave Love <fx@gnu.org> | |
6607 | |
6608 * textmodes/sgml-mode.el (html-mode): Use | |
6609 sentence-end-double-space when setting sentence-end. | |
6610 | |
6611 1999-03-09 Ken'ichi Handa <handa@gnu.org> | |
6612 | |
6613 * language/thai.el (tis-620): New alias coding system for thai-tis620. | |
6614 | |
6615 1999-03-08 Felix Lee <flee@cygnus.com> | |
6616 | |
6617 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook. | |
6618 | |
6619 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok. | |
6620 | |
6621 1999-03-08 Karl Heuer <kwzh@gnu.org> | |
6622 | |
6623 * dired-aux.el (dired-do-copy-regexp): Doc fix. | |
6624 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix. | |
6625 | |
6626 * dired.el (dired-do-copy-regexp): Doc fix. | |
6627 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix. | |
6628 | |
6629 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com> | |
6630 | |
6631 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp. | |
6632 | |
6633 1999-03-08 Jason Rumney <jasonr@altavista.net> | |
6634 | |
6635 * international/codepage.el (cp1250-decode-table) | |
6636 (cp1251-decode-table, cp1253-decode-table) | |
6637 (cp1257-decode-table): New translation tables for MS Windows codepages. | |
6638 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages. | |
6639 | |
6640 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp> | |
6641 | |
6642 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly. | |
6643 | |
6644 1999-03-07 Eli Zaretskii <eliz@gnu.org> | |
6645 | |
6646 * ps-bdf.el (bdf-directory-list): Different value for ms-dos. | |
6647 | |
6648 * term/internal.el (top level): Display character 255 as 8bit as well. | |
6649 | |
6650 1999-03-06 Dave Love <fx@gnu.org> | |
6651 | |
6652 * progmodes/cc-cmds.el (c-outline-level): Bind | |
6653 buffer-invisibility-spec. | |
6654 | |
6655 * progmodes/c-mode.el (c-outline-level): Likewise. | |
6656 | |
6657 * progmodes/ada-mode.el (ada-outline-level): Likewise. | |
6658 | |
6659 1999-03-05 Felix Lee <flee@cygnus.com> | |
6660 | |
6661 * textmodes/outline.el (outline-get-last-sibling): Doc fix. | |
6662 | |
6663 1999-03-05 Richard M. Stallman <rms@gnu.org> | |
6664 | |
6665 * bindings.el (complete-symbol): Invert meaning of prefix arg. | |
6666 | |
6667 1999-03-05 Andrew Innes <andrewi@gnu.org> | |
6668 | |
6669 * w32-fns.el (convert-standard-filename): Convert directory | |
6670 separators to Windows format. | |
6671 | |
6672 1999-03-05 Andreas Schwab <schwab@gnu.org> | |
6673 | |
6674 * international/skkdic-cnv.el: Provide skkdic-cnv. | |
6675 (skkdic-convert): Emit code to require skkdic-cnv at compile time. | |
6676 (batch-skkdic-convert): Doc fix. | |
6677 | |
6678 1999-03-04 Dave Love <fx@gnu.org> | |
6679 | |
6680 * custom.el (custom-set-variables): Protect against setter errors. | |
6681 | |
6682 1999-03-04 Eli Zaretskii <eliz@gnu.org> | |
6683 | |
6684 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of | |
6685 the file sizes from overflowing. | |
6686 (ls-lisp-format): If file size is a float, use %8.0f to print it. | |
6687 Under -s, print the size in blocks with %4.0f, in case they have | |
6688 a *really* huge file. | |
6689 | |
6690 1999-03-03 Dave Love <fx@gnu.org> | |
6691 | |
6692 * options.el (edit-options): Doc fix. | |
6693 (list-options): Don't lose with unbound symbols. Maintain | |
6694 Edit-options-mode. | |
6695 | |
6696 1999-03-01 Dave Love <fx@gnu.org> | |
6697 | |
6698 * mail/supercite.el (sc-attrib-selection-list): Fix custom type. | |
6699 | |
6700 1999-02-28 Richard M. Stallman <rms@gnu.org> | |
6701 | |
6702 * ispell.el (ispell-dictionary-alist-override): New variable. | |
6703 (ispell-dictionary-alist): Don't setq it, | |
6704 if ispell-dictionary-alist-override is set. | |
6705 | |
6706 * simple.el (shell-command-default-error-buffer): Renamed from | |
6707 shell-command-on-region-default-error-buffer. | |
6708 (shell-command-on-region): Mention in echo area when there | |
6709 is some error output. Mention success or failure, too. | |
6710 Accumulate multiple error outputs | |
6711 going forward, with formfeed in between. Display the error buffer | |
6712 when we have put something in it. | |
6713 (shell-command): Add the ERROR-BUFFER argument feature. | |
6714 | |
6715 1999-02-28 Karl Heuer <kwzh@gnu.org> | |
6716 | |
6717 * mail/mh-utils.el (mh-lib): Doc fix. | |
6718 (mh-lib-progs, mh-nmh-p): New vars. | |
6719 (mh-find-progs): Set mh-lib-progs along with other vars. | |
6720 (mh-path-search): New arg FUNC-P; if specified, use that instead | |
6721 of mh-file-command-p. | |
6722 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs. | |
6723 | |
6724 * mail/mh-comp.el (mh-repl-formfile): New var. | |
6725 (mh-smail-batch): Don't ignore all arguments. | |
6726 (mh-reply): Do the right thing when using nmh. | |
6727 | |
6728 1999-02-27 Kenichi Handa <handa@etl.go.jp> | |
6729 | |
6730 * international/mule-cmds.el (select-safe-coding-system): Be sure | |
6731 to show a buffer being decoded. | |
6732 | |
6733 1999-02-26 Ken'ichi Handa <handa@gnu.org> | |
6734 | |
6735 * ps-bdf.el (bdf-directory-list): Initialize it to | |
6736 '("/usr/local/share/emacs/fonts/bdf"). | |
6737 | |
6738 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
6739 | |
6740 * ps-print.el: PostScript programming fix. | |
6741 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use | |
6742 setpagedevice operator). | |
6743 | |
6744 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
6745 | |
6746 * ps-print.el: Doc fix, font size specifies landscape and portrait | |
6747 sizes. | |
6748 (ps-print-version): New version number (4.1.4). | |
6749 (ps-font-size, ps-header-font-size, ps-header-title-font-size): | |
6750 Specifies landscape and portrait sizes. | |
6751 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages) | |
6752 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun | |
6753 fix. | |
6754 (ps-get-font-size): New fun. | |
6755 (ps-font-size-internal, ps-header-font-size-internal) | |
6756 (ps-header-title-font-size-internal): New vars. | |
6757 | |
6758 * ps-mule.el: Change of ps-print font size variable name. | |
6759 (ps-mule-generate-font): Fun fix. | |
6760 (ps-mule-begin-job): Programming uniformization. | |
6761 | |
6762 1999-02-25 Dave Love <fx@gnu.org> | |
6763 | |
6764 * help.el (help-xref-info-regexp): Allow linebreaks and capital. | |
6765 (help-make-xrefs): Do Info case first. | |
6766 | |
6767 * repeat.el: Don't require advice. | |
6768 (repeat-last-kill-command): Variable deleted. | |
6769 | |
6770 1999-02-25 Richard Stallman <rms@gnu.org> | |
6771 | |
6772 * simple.el (shell-command-on-region): Don't go into the REPLACE = t | |
6773 case just because the current buffer is the output buffer. | |
6774 | |
6775 1999-02-25 Kenichi Handa <handa@etl.go.jp> | |
6776 | |
6777 * simple.el (what-cursor-position): To show the character's | |
6778 encoding, use encoded-string-description instead of information | |
6779 of chaset-origin-alist. | |
6780 | |
6781 * international/mule-cmds.el (iso-2022-control-alist): New variable. | |
6782 (encoded-code-description): New function. | |
6783 (encoded-string-description): New function. | |
6784 (encode-coding-char): New function. | |
6785 | |
6786 1999-02-25 Andrew Innes <andrewi@gnu.org> | |
6787 | |
6788 * startup.el (command-line) [windows-nt]: Fix typo in regexp | |
6789 checking for .emacs[.el[c]]. | |
6790 | |
6791 1999-02-24 Richard Stallman <rms@gnu.org> | |
6792 | |
6793 * help.el (describe-function-1): Don't print a whole lambda-function. | |
6794 | |
6795 1999-02-23 Ken'ichi Handa <handa@gnu.org> | |
6796 | |
6797 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow | |
6798 inputting ?\240. | |
6799 | |
6800 1999-02-23 Karl Heuer <kwzh@gnu.org> | |
6801 | |
6802 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst. | |
6803 | |
6804 * midnight.el (clean-buffer-list-kill-regexps): Doc fix. | |
6805 (clean-buffer-list-kill-buffer-names): Doc fix. | |
6806 | |
6807 * gud.el (gud-jdb-massage-args): Spelling fix. | |
6808 | |
6809 1999-02-23 Richard M. Stallman <rms@gnu.org> | |
6810 | |
6811 * subr.el (with-temp-message): Use %s so % in old msg won't fool us. | |
6812 | |
6813 1999-02-22 Eli Zaretskii <eliz@gnu.org> | |
6814 | |
6815 * arc-mode.el (archive-set-buffer-as-visiting-file): Save | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
6816 excursion while calling set-auto-coding-function. |
25837 | 6817 |
6818 * play/handwrite.el (handwrite): Require ps-print, and use | |
6819 ps-printer-name and ps-lpr-command. Call ps-print-region-function | |
6820 if it's defined, instead of forking ps-lpr-command unconditionally. | |
6821 | |
6822 1999-02-22 Kenichi Handa <handa@etl.go.jp> | |
6823 | |
6824 * international/codepage.el (cp-coding-system-for-codepage-1): Put | |
6825 charset-origin-alist property to a coding system for the codepage. | |
6826 | |
6827 * international/mule.el: Modify comment for charset-origin-alist | |
6828 property of a coding system. | |
6829 | |
6830 * simple.el (what-cursor-position): charset-origin-alist property | |
6831 of a coding system may be a translation table or a symbol of which | |
6832 `translation-table' property is a translation table. | |
6833 | |
6834 1999-02-21 Richard Stallman <rms@gnu.org> | |
6835 | |
6836 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body | |
6837 to the "html" template. | |
6838 | |
6839 1999-02-21 Peter Breton <pbreton@ne.mediaone.net> | |
6840 | |
6841 * dirtrack.el (dirtrack): Added docstring. Now returns input. | |
6842 | |
6843 1999-02-18 Peter Breton <pbreton@ne.mediaone.net> | |
6844 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
6845 * dirtrack.el (dirtrack): Check for the prompt in the input string |
25837 | 6846 instead of the buffer. |
6847 | |
6848 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch> | |
6849 | |
6850 * sql.el: Set version to 1.4.1. Changed mail address to | |
6851 alex@gnu.org. Mention the mailing list sql.el@gnu.org. | |
6852 (sql-input-ring-separator): Doc fix. | |
6853 (sql-mode-syntax-table): double-dash starts comments is defined as | |
6854 ". 56" instead of ". 12b" for XEmacs. | |
6855 (sql-stop, sql-interactive-mode): Doc fixes. | |
6856 (sql-postgres): Queries for database and server, not just one. | |
6857 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted. | |
6858 | |
6859 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is | |
6860 changed. This is needed for master.el to work. | |
6861 (sql-set-sqli-buffer): Use the new hook. | |
6862 | |
6863 * sql.el (sql-make-alternate-buffer-name): Function that sets | |
6864 sql-alternate-buffer-name. | |
6865 (sql-alternate-buffer-name): Possible name of SQLi buffers. | |
6866 (sql-interactive-mode): Set sql-alternate-buffer-name. | |
6867 (sql-rename-buffer): New command. | |
6868 (sql-interactive-mode-menu): Menu for SQLi buffers. | |
6869 | |
6870 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator | |
6871 and sql-input-ring-file-name are used to temporarily set | |
6872 comint-input-ring-file-name and comint-input-ring-separator when | |
6873 reading and writing input history files. | |
6874 | |
6875 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name. | |
6876 (sql-input-ring-file-name): New variable with customization. | |
6877 (sql-input-ring-separator): New variable with customization. | |
6878 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer. | |
6879 Callers changed. | |
6880 (sql-show-sqli-buffer): The message for "sql-buffer is not set" | |
6881 now includes the name of the current buffer. | |
6882 | |
6883 (sql-mode): Set paragraph-separate and paragraph-start so that | |
6884 sql-send-paragraph sends the entire SQL statements, even if it | |
6885 contains indented lines. | |
6886 | |
6887 1999-02-18 Dave Love <fx@gnu.org> | |
6888 | |
6889 * format.el (format-encode-run-method, format-decode-run-method): | |
6890 Fix previous change. | |
6891 | |
6892 1999-02-18 Ken'ichi Handa <handa@gnu.org> | |
6893 | |
6894 * international/mule.el (coding-system-list): Moved here from | |
6895 mule-util.el to avoid autoloading mule-util by the call of | |
6896 select-safe-coding-system. | |
6897 | |
6898 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk> | |
6899 | |
6900 * simple.el (turn-on-auto-fill): Mark it as an option for | |
6901 `text-mode-hook'. | |
6902 | |
6903 1999-02-17 Richard Stallman <rms@gnu.org> | |
6904 | |
6905 * emacs-lisp/easymenu.el (easy-menu-get-map): | |
6906 Don't crash if (current-local-map) is nil. | |
6907 | |
6908 1999-02-17 Peter Breton <pbreton@ne.mediaone.net> | |
6909 | |
6910 * filecache.el (file-cache-filter-regexps): Added .class. | |
6911 | |
6912 1999-02-17 Ken'ichi Handa <handa@gnu.org> | |
6913 | |
6914 * international/mule-util.el (decompose-region): Use | |
6915 insert-buffer-substring instead of insert-buffer to avoid putting | |
6916 mark. | |
6917 | |
6918 1999-02-17 Andreas Schwab <schwab@gnu.org> | |
6919 | |
6920 * calendar/cal-move.el (scroll-calendar-left): Don't set | |
6921 displayed-month and displayed-year here, let generate-calendar do | |
6922 it, after range checking. | |
6923 | |
6924 1999-02-17 Simon Marshall <simon@gnu.org> | |
6925 | |
6926 * progmodes/cc-engine.el (c-at-toplevel-p): New function. | |
6927 | |
6928 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish | |
6929 correctly between an object declared via a constructor and a method. | |
6930 (font-lock-defaults-alist): Don't give `.' word syntax for Java. | |
6931 (java-font-lock-keywords-1): Fontify package names individually. | |
6932 (java-font-lock-extra-types): Ensure regexp matches capitalised only. | |
6933 (java-font-lock-keywords-2): Simplify type fontification. | |
6934 (java-font-lock-keywords-3): Likewise. | |
6935 | |
6936 1999-02-17 Kenichi Handa <handa@etl.go.jp> | |
6937 | |
6938 * language/japanese.el (iso-2022-jp-2): New coding system. | |
6939 ("Japanese"): Put iso-2022-jp-2 in coding-priority property. | |
6940 | |
6941 1999-02-16 Dave Love <fx@gnu.org> | |
6942 | |
6943 * help.el (describe-function-1): Accept non-symbols. | |
6944 | |
6945 1999-02-16 Paul Eggert <eggert@twinsun.com> | |
6946 | |
6947 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we | |
6948 find the last match if there are multiple matches. | |
6949 | |
6950 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
6951 | |
6952 * tex-mode.el (tex-run-command, latex-run-command) | |
6953 (slitex-run-command, tex-command): Doc changes. | |
6954 (tex-start-options-string): Autoload it. Doc change. Provide | |
6955 a menu for customization. Allow nil. Quote backslashes only once. | |
6956 (tex-start-tex): Handle nil value of tex-start-options-string | |
6957 and apply shell-quote-argument to it. | |
6958 | |
6959 1999-02-16 Eli Zaretskii <eliz@gnu.org> | |
6960 | |
6961 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round | |
6962 the size in blocks, since it can be a float. | |
6963 (ls-lisp-format): Likewise | |
6964 | |
6965 1999-02-16 Ken'ichi Handa <handa@gnu.org> | |
6966 | |
6967 * language/japanese.el (japanese-shift-jis): Add | |
6968 charset-origin-alist property. | |
6969 | |
6970 1999-02-15 Richard Stallman <rms@gnu.org> | |
6971 | |
6972 * progmodes/compile.el (compile-internal): Use save-selected-window. | |
6973 | |
6974 * subr.el (momentary-string-display): Bind inhibit-read-only. | |
6975 | |
6976 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line. | |
6977 | |
6978 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il> | |
6979 | |
6980 * mail/rmail.el (rmail-show-message): If an unseen message has a | |
6981 Summary-line in its header, get past one more line before looking | |
6982 for the X-Coding-System header. | |
6983 | |
6984 1999-02-15 Geoff Voelker <voelker@cs.washington.edu> | |
6985 | |
6986 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files | |
6987 explicitly to accomodate Windows 9X lack of a useful copy program. | |
6988 | |
6989 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk> | |
6990 | |
6991 * wid-edit.el (widget-choice-value-create): Use `equal' | |
6992 instead of `eq'. | |
6993 | |
6994 1999-02-14 Richard Stallman <rms@gnu.org> | |
6995 | |
6996 * international/iso-transl.el: | |
6997 (iso-transl-ae): Renamed from iso-transl-e-slash. | |
6998 (iso-transl-a-ring): Renamed from iso-transl-a-slash. | |
6999 (iso-transl-AE): Renamed from iso-transl-E-slash. | |
7000 (iso-transl-A-ring): Renamed from iso-transl-A-slash. | |
7001 (iso-transl-char-map): Related changes. | |
7002 | |
7003 * format.el (format-replace-strings): Fix value of TO in REVERSE case. | |
7004 | |
7005 1999-02-13 Richard Stallman <rms@gnu.org> | |
7006 | |
7007 * textmodes/texinfmt.el (texinfo-alias): New function. | |
7008 (texinfo-fold-nodename-case): Add defvar. | |
7009 (texinfo-format-node): Do case folding if specified. | |
7010 | |
7011 * ffap.el (ffap-file-at-point): Test local file names | |
7012 immediately. Strip off line numbers. | |
7013 | |
7014 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch> | |
7015 | |
7016 * sql.el: Set version to 1.3.2 | |
7017 (sql-solid-program): Added support for solid. | |
7018 (sql-help): Doc mentions sql-solid. | |
7019 (sql-solid): Entry function for Solid. | |
7020 (sql-buffer): Doc explains the use of the variable and how to | |
7021 change it. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
7022 (sql-mode-menu): Included entries for sql-show-sqli-buffer and |
25837 | 7023 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are |
7024 disabled if sql-buffer doesn't have a process; sql-send-paragraph | |
7025 is new. | |
7026 (sql-show-sqli-buffer): New function to display the value of | |
7027 sql-buffer. | |
7028 (sql-change-sqli-buffer): New function to change sql-buffer. | |
7029 (sql-mode): Doc explains how to change sql-buffer. | |
7030 (sql-send-paragraph): New function to send a paragraph. | |
7031 (sql-mode-map): Added keybinding for sql-send-paragraph. | |
7032 (sql-mysql): Doc corrected. | |
7033 (sql-ms): Doc corrected. | |
7034 | |
7035 * sql.el (sql-server): Doc fix. | |
7036 (sql-mysql): Added the use of sql-server to specify the host, | |
7037 sql-database now specifies database instead of host. | |
7038 (sql-mode-menu): Send... menu items are only active if sql-buffer | |
7039 is non-nil. | |
7040 (sql-help): Changed tag of entry functions a bit. | |
7041 | |
7042 * sql.el: Added keywords from `finder-by-keyword'. | |
7043 (sql-mode): Made sql-buffer a local variable, changed the | |
7044 documentation: removed instructions to add *.sql files to | |
7045 auto-mode-alist, added documentation for having mutliple SQL | |
7046 buffers sending their stuff to different SQLi buffers, each | |
7047 running a different process. | |
7048 (sql-postgres): Quoted *SQL* in doc string. | |
7049 (sql-ms): Likewise. | |
7050 (sql-ingres): Likewise. | |
7051 (sql-ingres): Quoted *SQL* in doc string, added references to | |
7052 sql-user and sql-password used during login. | |
7053 (sql-sybase): Quoted *SQL* in doc string, added comma. | |
7054 (sql-oracle): Likewise. | |
7055 (sql-interactive-mode): Added extensive documentation for having | |
7056 mutliple SQL buffers sending their stuff to different SQLi | |
7057 buffers, each running a different process. | |
7058 (sql-buffer): Changed doc from *SQL* to SQLi. | |
7059 (sql-get-login): Doc fix. | |
7060 | |
7061 1999-02-12 Ken'ichi Handa <handa@gnu.org> | |
7062 | |
7063 * international/mule-conf.el (undecided): Set ascii in | |
7064 safe-charsets property. | |
7065 | |
7066 1999-02-12 Richard Stallman <rms@gnu.org> | |
7067 | |
7068 * textmodes/paragraphs.el (paragraph-separate): Doc fix. | |
7069 | |
7070 1999-02-12 Ken'ichi Handa <handa@gnu.org> | |
7071 | |
7072 * ps-mule.el (ps-mule-font-info-database-default): Set the initial | |
7073 value to ps-mule-font-info-database-latin. | |
7074 | |
7075 1999-02-13 Kenichi HANDA <handa@etl.go.jp> | |
7076 | |
7077 * ps-mule.el (ps-multibyte-buffer): Doc-string modified. | |
7078 (ps-mule-font-info-database-default): New variable. | |
7079 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use | |
7080 ps-mule-font-info-database-default. | |
7081 | |
7082 1999-02-12 Dave Love <fx@gnu.org> | |
7083 | |
7084 * timezone.el (timezone-make-date-sortable) | |
7085 (timezone-make-date-arpa-standard): Doc fix. | |
7086 | |
7087 1999-02-12 Ken'ichi Handa <handa@gnu.org> | |
7088 | |
7089 * international/quail.el (quail-show-kbd-layout): Bind | |
7090 blink-matching-paren to nil. | |
7091 | |
7092 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field | |
7093 for ASCII and Latin-1. | |
7094 | |
7095 1999-02-12 Andreas Schwab <schwab@gnu.org> | |
7096 | |
7097 * gud.el (jdb): Fix regexp for comint-prompt-regexp. | |
7098 | |
7099 1999-02-12 Kenichi Handa <handa@etl.go.jp> | |
7100 | |
7101 * international/mule-cmds.el (language-info-alist): Remove | |
7102 description about charset-origin-alist. | |
7103 | |
7104 * international/mule.el: Comment added for a new coding system | |
7105 property `charset-origin-alit'. | |
7106 (make-translation-table): This variable deleted. | |
7107 | |
7108 * language/chinese.el (chinese-big5): Add charset-origin-alist | |
7109 property. | |
7110 ("Chinese-CNS"): Remove charset-origin-alist property. | |
7111 | |
7112 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist | |
7113 property. | |
7114 (cyrillic-alternativnyj): Likewise. | |
7115 ("Cyrillic-KOI8"): Remove charset-origin-alist property. | |
7116 ("Cyrillic-ALT"): Likewise. | |
7117 | |
7118 * language/vietnamese.el (vietnamese-viqr): Add | |
7119 charset-origin-alist property. | |
7120 ("Vietnamese"): Remove charset-origin-alist property. | |
7121 | |
7122 * simple.el (what-cursor-position): Don't use the varialbe | |
7123 charset-origin-alist, but use charset-origin-alist property of | |
7124 buffer-file-coding-system to decide external character set code. | |
7125 | |
7126 1999-02-10 Richard Stallman <rms@gnu.org> | |
7127 | |
7128 * shadowfile.el: Don't turn on the mode when the file is loaded. | |
7129 | |
7130 1999-02-09 Richard Stallman <rms@gnu.org> | |
7131 | |
7132 * progmodes/compile.el (compile-auto-highlight): Customize. | |
7133 | |
7134 * add-log.el (add-log-file-name-function): New variable. | |
7135 (add-change-log-entry): Call that function, if non-nil. | |
7136 | |
7137 1999-02-09 Michael Ernst <mernst@alum.mit.edu> | |
7138 | |
7139 * rmail.el (rmail-search): Track match with a marker, not an integer. | |
7140 | |
7141 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7142 | |
7143 * progmodes/compile.el (compilation-setup): Set value of | |
7144 compilation-directory-stack as in compilation-forget-errors. | |
7145 (compile-reinitialize-errors): Bind buffer-undo-list and | |
7146 deactivate-mark. | |
7147 (compilation-forget-errors): Likewise. | |
7148 | |
7149 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com> | |
7150 | |
7151 * textmodes/texinfo.el (texinfo-environment-regexp): Add the | |
7152 def... constructs. | |
7153 | |
7154 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu): | |
7155 Remove calls to sleep-for. | |
7156 | |
7157 1999-02-08 Eli Zaretskii <eliz@gnu.org> | |
7158 | |
7159 * international/codepage.el (cp-coding-system-for-codepage-1): On | |
7160 MS-DOS, use dos-unsupported-char-glyph for characters not | |
7161 supported by the codepage. | |
7162 (cp-make-coding-systems-for-codepage): Likewise. | |
7163 | |
7164 1999-02-08 Andreas Schwab <schwab@gnu.org> | |
7165 | |
7166 * international/mule-util.el (coding-system-list): Don't sort | |
7167 coding-system-list here. | |
7168 | |
7169 * international/mule.el (coding-system-lessp): Moved here from | |
7170 mule-util.el | |
7171 (add-to-coding-system-list): New function. | |
7172 (make-subsidiary-coding-system, make-coding-system, | |
7173 define-coding-system-alias): Use it instead of setting | |
7174 coding-system-list directly. | |
7175 | |
7176 1999-02-07 Dave Love <fx@gnu.org> | |
7177 | |
7178 * calendar/appt.el (appt-make-list): Don't splice quotes and date | |
7179 onto message. | |
7180 | |
7181 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7182 | |
7183 * imenu.el (imenu--last-menubar-index-alist): Add doc. | |
7184 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist. | |
7185 | |
7186 1999-02-06 Richard Stallman <rms@gnu.org> | |
7187 | |
7188 * language/european.el (setup-slovenian-environment): New function. | |
7189 ("Slovenian"): New language environment. | |
7190 | |
7191 * progmodes/sql.el (sql-help): Doc fix. | |
7192 (sql-mysql): Doc fix. | |
7193 | |
7194 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7195 | |
7196 * tex-mode.el: When compiling, require compare-w and skeleton | |
7197 to pacify the byte-compiler. Move the def's of the tex-commands | |
7198 together. Add a comment on kill-process vs. quit-process. | |
7199 | |
7200 1999-02-05 Dave Love <fx@gnu.org> | |
7201 | |
7202 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with | |
7203 null markers. | |
7204 (compile-goto-error): Likewise. | |
7205 | |
7206 1999-02-05 Stephen Gildea <gildea@alum.mit.edu> | |
7207 | |
7208 * time-stamp.el (time-stamp-format): Format doc tighter. | |
7209 (time-stamp-line-limit): 0 searches the entire buffer (careful!). | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
7210 (time-stamp): Don't re-write the time stamp if it didn't change. |
25837 | 7211 |
7212 1999-02-05 Alex Schroeder <asc@bsiag.com> | |
7213 | |
7214 * progmodes/sql.el: Changed version to 1.2.1. | |
7215 (sql-pop-to-buffer-after-send-region): Improved documentation. | |
7216 (sql-mysql-program): Added MySQL support. | |
7217 (sql-prompt-length): Made prompt-length configurable. | |
7218 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter. | |
7219 (sql-help): Added MySQL support, changed documentation. | |
7220 (sql-send-region): A message is displayed if something is sent. | |
7221 (sql-mode): Added buffer-local comment-start. | |
7222 (sql-interactive-mode): Use sql-prompt-length to set left-margin. | |
7223 (sql-interactive-mode): Added buffer-local comment-start. | |
7224 (sql-oracle): Set sql-prompt-length. | |
7225 (sql-sybase): Set sql-prompt-length. | |
7226 (sql-mysql): Added MySQL support. | |
7227 (sql-ingres): Set sql-prompt-length. | |
7228 (sql-ms): Set sql-prompt-length. | |
7229 (sql-postgres): Set sql-prompt-length. | |
7230 | |
7231 1999-02-04 Eli Zaretskii <eliz@gnu.org> | |
7232 | |
7233 * term/internal.el (dos-codepage-setup): Set selection coding | |
7234 system to cpNNN-dos. | |
7235 | |
7236 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
7237 | |
7238 * international/characters.el: Let ethiopic use iso-2022-7bit. | |
7239 | |
7240 1999-02-02 Dave Love <fx@gnu.org> | |
7241 | |
7242 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here... | |
7243 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here. | |
7244 | |
7245 1999-02-02 Karl Heuer <kwzh@gnu.org> | |
7246 | |
7247 * terminal.el (terminal-emulator): Doc fix. | |
7248 | |
7249 1999-02-02 Ken'ichi Handa <handa@gnu.org> | |
7250 | |
7251 * international/mule-util.el (compose-chars): Doc-string | |
7252 modified. Correctly handle a composition character in ARGS. | |
7253 | |
7254 1999-02-01 Richard Stallman <rms@gnu.org> | |
7255 | |
7256 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var. | |
7257 (makefile-menu-index-function): Function deleted. | |
7258 (makefile-mode): Use makefile-imenu-generic-expression. | |
7259 | |
7260 1999-02-01 Geoff Voelker <voelker@cs.washington.edu> | |
7261 | |
7262 * term/w32-win.el (w32-create-initial-fontsets): Back out previous | |
7263 change, invoke from before-init-hook. | |
7264 | |
7265 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu> | |
7266 | |
7267 * subr.el (remove-from-invisibility-spec): Cope with the case when | |
7268 buffer-invisibility-spec is t. | |
7269 | |
7270 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu> | |
7271 | |
7272 * calendar/calendar.el (calendar-mode-map): Fix bindings for | |
7273 appt-add and appt-delete. | |
7274 | |
7275 1999-02-01 Eli Zaretskii <eliz@gnu.org> | |
7276 | |
7277 * term/pc-win.el (msdos-approximate-color): New function. | |
7278 (msdos-color-translate): Call it to find a DOS color that best | |
7279 approximates an X-style "#NNNNNN" color specification. | |
7280 | |
7281 1999-02-01 Ken'ichi Handa <handa@gnu.org> | |
7282 | |
7283 * international/mule-util.el (compose-chars-component): Add | |
7284 autoload cookie. | |
7285 | |
7286 1999-01-31 Ken'ichi Handa <handa@gnu.org> | |
7287 | |
7288 * international/quail.el (quail-lookup-key): If cdr of MAP is a | |
7289 function, replace cdr of MAP by the return value of the function | |
7290 unconditionally. | |
7291 | |
7292 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7293 | |
7294 * progmodes/compile.el (compilation-next-error-locus): Don't | |
7295 decrease argument FIND-AT-LEAST of compilation-next-error-locus. | |
7296 | |
7297 1999-01-31 Eli Zaretskii <eliz@gnu.org> | |
7298 | |
7299 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs | |
7300 and NLs before "charset", and allow the charset name be in double | |
7301 quotes. | |
7302 | |
7303 1999-01-31 Richard Stallman <rms@gnu.org> | |
7304 | |
7305 * imenu.el (imenu-sort-function): Fix custom type. | |
7306 | |
7307 1999-01-30 Richard Stallman <rms@gnu.org> | |
7308 | |
7309 * speedbar.el (speedbar-line-token): Match {...} instead of [...]. | |
7310 (speedbar-line-token): Likewise. | |
7311 | |
7312 * play/gametree.el (gametree-default-score): Use defcustom. | |
7313 (gametree-score-regexp, gametree-score-closer): Likewise. | |
7314 (gametree-score-manual-flag, gametree-score-opener): Likewise. | |
7315 | |
7316 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7317 | |
7318 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when | |
7319 decoding. | |
7320 | |
7321 1999-01-29 Markus Rost <rost@gnu.org> | |
7322 | |
7323 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by | |
7324 tex-validate-buffer. | |
7325 (plain-tex-mode, latex-mode, slitex-mode): Likewise. | |
7326 (tex-validate-buffer): Renamed from validate-tex-buffer. Works | |
7327 now with recent occur-mode. | |
7328 (tex-validate-region): Really walk through all Sexps. | |
7329 (tex-region): Bind shell-dirtrack-verbose. | |
7330 (tex-file, tex-bibtex-file): Likewise. | |
7331 | |
7332 1999-01-29 Dave Love <fx@gnu.org> | |
7333 | |
7334 * finder.el: (finder-commentary): Fix interactive spec. Try | |
7335 appending .el to file name. | |
7336 (finder-find-library, finder-commentary): Doc fixes. | |
7337 | |
7338 1999-01-29 Andrew Innes <andrewi@gnu.org> | |
7339 | |
7340 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes | |
7341 where the userid contains directory separators. | |
7342 | |
7343 1999-01-29 Dave Love <fx@gnu.org> | |
7344 | |
7345 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list. | |
7346 (lm-commentary): Doc fix. | |
7347 | |
7348 1999-01-29 Andreas Schwab <schwab@gnu.org> | |
7349 | |
7350 * files.el (file-expand-wildcards): Never consider `.' and `..' a | |
7351 wildcard match. Fix regexp that tests if dirpart contains | |
7352 wildcard characters. | |
7353 | |
7354 1999-01-28 Richard Stallman <rms@gnu.org> | |
7355 | |
7356 * font-lock.el (font-lock-default-unfontify-region): | |
7357 If not font-lock-syntactic-keywords, don't remove syntax-table prop. | |
7358 | |
7359 1999-01-27 Jason Rumney <jasonr@altavista.net> | |
7360 | |
7361 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard | |
7362 from FAMILY field. | |
7363 (w32-create-initial-fontsets): Do not use before-init-hook. | |
7364 (mouse-set-font): Document. Automatically create and use fontsets. | |
7365 | |
7366 * dos-w32.el (direct-print-region-helper): Check for printer | |
7367 being t as well as a string. | |
7368 | |
7369 1999-01-27 Kenichi Handa <handa@etl.go.jp> | |
7370 | |
7371 * mail/rmail.el (rmail-decode-mime-charset): New variable. | |
7372 (rmail-mime-charset-pattern): New variable. | |
7373 (rmail-convert-to-babyl-format): Decode by MIME-charset if | |
7374 rmail-decode-mime-charset is non-nil. | |
7375 | |
7376 1999-01-27 Ken'ichi Handa <handa@gnu.org> | |
7377 | |
7378 * international/characters.el: Set category `q' for all characters | |
7379 in tibetan and tibetan-1-column. | |
7380 | |
7381 1999-01-27 Andrew Innes <andrewi@gnu.org> | |
7382 | |
7383 * frame.el (select-frame-by-name): Obey focus-follows-mouse. | |
7384 (select-frame-by-name) [windows-nt]: Use w32-focus-frame. | |
7385 | |
7386 1999-01-27 Dave Love <fx@gnu.org> | |
7387 | |
7388 * international/mule-cmds.el (current-language-environment): | |
7389 Provide :link, :type (choices) and appropriate :get. | |
7390 | |
7391 1999-01-27 Eli Zaretskii <eliz@gnu.org> | |
7392 | |
7393 * startup.el (command-line): Set default eol-mnemonic-* strings to | |
7394 display end-of-line format in mode line. | |
7395 | |
7396 * cus-start.el (all): Add eol-mnemonic-* variables. | |
7397 | |
7398 1999-01-26 Dave Love <fx@gnu.org> | |
7399 | |
7400 * startup.el (command-line-1): Up-date copyright. | |
7401 | |
7402 * paths.el (Info-default-directory-list): Use configdir twice. | |
7403 | |
7404 * info.el (Info-directory-list): Don't set path-separator now | |
7405 we're not shipped with Texinfo. Simplify path definition. | |
7406 Substitute all occurrences of instdir in Info-default-directory-list. | |
7407 | |
7408 1999-01-25 Richard Stallman <rms@gnu.org> | |
7409 | |
7410 * startup.el (normal-top-level-add-subdirs-to-load-path): | |
7411 Record the inode numbers of the dirs processed, to avoid loop. | |
7412 | |
7413 * textmodes/tex-mode.el (tex-run-command): Doc fix. | |
7414 | |
7415 1999-01-25 Dave Love <fx@gnu.org> | |
7416 | |
7417 * browse-url.el (browse-url-netscape-program): Doc addition. | |
7418 | |
7419 * help.el (help-make-xrefs): Default info references to an `(emacs)' | |
7420 prefix. | |
7421 | |
7422 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see | |
7423 auto-mode-alist. | |
7424 | |
7425 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
7426 | |
7427 * calendar/diary-lib.el (mark-diary-entries): Use | |
7428 assoc-ignore-case and do not capitalize when matching month and | |
7429 day names. | |
7430 | |
7431 * calendar/calendar.el (calendar-read-date): Ditto. | |
7432 | |
7433 * calendar/cal-hebrew.el (calendar-goto-hebrew-date) | |
7434 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto. | |
7435 | |
7436 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto. | |
7437 | |
7438 * calendar/cal-french.el (calendar-goto-french-date): Ditto. | |
7439 | |
7440 * calendar/cal-islam.el (calendar-goto-islamic-date) | |
7441 (mark-islamic-diary-entries): Ditto. | |
7442 | |
7443 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto. | |
7444 | |
7445 * calendar/cal-mayan.el (calendar-read-mayan-haab-date) | |
7446 (calendar-read-mayan-tzolkin-date): Ditto. | |
7447 | |
7448 * calendar/cal-persia.el (persian-prompt-for-date): Ditto. | |
7449 | |
7450 1999-01-22 Michael Ernst <mernst@alum.mit.edu> | |
7451 | |
7452 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker. | |
7453 | |
7454 1999-01-25 Karl Heuer <kwzh@gnu.org> | |
7455 | |
7456 * faces.el (list-faces-display): Multiline case of previous fix. | |
7457 | |
7458 1999-01-25 Andreas Schwab <schwab@gnu.org> | |
7459 | |
7460 * mail/mailalias.el (mail-complete-alist): Use alist as customize type. | |
7461 | |
7462 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu> | |
7463 | |
7464 * files.el (find-file): If find-file-noselect returns a list, | |
7465 do switch-to-buffer on each element. | |
7466 (find-file-other-window): Likewise for all but the first element. | |
7467 (find-file-other-frame): Same. | |
7468 (find-file-noselect): When we expand a wildcard, return a list | |
7469 of buffers. | |
7470 | |
7471 1999-01-24 Eli Zaretskii <eliz@gnu.org> | |
7472 | |
7473 * term/internal.el (dos-codepage-setup): Call prefer-coding-system | |
7474 to set the appropriate cpNNN-dos coding system as the | |
7475 highest-priority coding system. | |
7476 | |
7477 1999-01-23 Ken'ichi Handa <handa@gnu.org> | |
7478 | |
7479 * international/fontset.el (generate-fontset-menu): Return a | |
7480 sorted list by plain names of fontsets. | |
7481 | |
7482 * international/mule-diag.el (list-fontsets): Sort fontsets by | |
7483 plain names. | |
7484 | |
7485 * language/tibet-util.el (tibetan-vertical-stacking): If the arg | |
7486 FIRST is a composite character, decompose it at first. | |
7487 | |
7488 1999-01-23 Dave Love <fx@gnu.org> | |
7489 | |
7490 * format.el: Doc fixes. | |
7491 (format-encode-run-method): Have things happen in the right buffer. | |
7492 Deal with errors from method. Set coding-system-for-write. | |
7493 (format-decode-run-method): Have things happen in the right buffer. | |
7494 Deal with errors from method. Set coding-system-for-read. | |
7495 (format-alist): Use nil instead of unmatchable regexps. | |
7496 | |
7497 * simple.el (shell-command-on-region): Return command's exit status. | |
7498 | |
7499 1999-01-23 Eric Ludlam <zappo@gnu.org> | |
7500 | |
7501 * speedbar.el (speedbar-item-info-file-helper): Add optional arg | |
7502 of the file whose info we want to display. | |
7503 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize. | |
7504 (speedbar-add-mode-functions-list) Improve doc. | |
7505 (speedbar-line-token) New function. | |
7506 (speedbar-dired) Fix order of directories in -shown-directories. | |
7507 (speedbar-line-path): Default return is default-directory | |
7508 (speedbar-buffers-line-path): Return is dir name only. | |
7509 (speedbar-mode-functions-list): New variable. | |
7510 (speedbar-mouse-item-info): Rewrote to be a replaceable fn. | |
7511 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper | |
7512 speedbar-files-item-info speedbar-buffers-item-info): New functions. | |
7513 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list): | |
7514 New functions. | |
7515 (speedbar-line-file): Broke out part that fetches file from a line. | |
7516 (speedbar-line-text): New function extracted from speedbar-line-file. | |
7517 (speedbar-line-path): Converted into a replaceable function. | |
7518 (speedbar-files-line-path, speedbar-buffers-line-path): New functions. | |
7519 | |
7520 1999-01-23 Ken'ichi Handa <handa@gnu.org> | |
7521 | |
7522 * international/fontset.el (create-fontset-from-x-resource): Make | |
7523 style variants. | |
7524 | |
7525 1999-01-22 Dave Love <fx@gnu.org> | |
7526 | |
7527 * paths.el (Info-default-directory-list): Put sysdir after start. | |
7528 | |
7529 1999-01-22 Sam Steingold <sds@goems.com> | |
7530 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
7531 * midnight.el (clean-buffer-list): Do not kill a buffer if it has |
25837 | 7532 a process associated with it. |
7533 | |
7534 1999-01-22 Jason Rumney <jasonr@altavista.net> | |
7535 | |
7536 * term/w32-win.el (w32-standard-fontset-spec): Simplified. | |
7537 | |
7538 1999-01-22 Felix Lee <flee@cygnus.com> | |
7539 | |
7540 * vc.el (vc-annotate-display): Delete old overlays. Fix check for | |
7541 major-mode. | |
7542 (vc-annotate-mode): Delete variable. | |
7543 | |
7544 1999-01-22 Andrew Innes <andrewi@gnu.org> | |
7545 | |
7546 * startup.el (command-line): [windows-nt]: Check for existence of | |
7547 .emacs file so as to notice .emacs.el or .emacs.elc and use them | |
7548 in preference to _emacs. | |
7549 | |
7550 1999-01-22 Dave Love <fx@gnu.org> | |
7551 | |
7552 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref. | |
7553 | |
7554 1999-01-20 Richard Stallman <rms@gnu.org> | |
7555 | |
7556 * files.el (find-file-noselect): Do wildcard processing only | |
7557 if new arg WILDCARDS is non-nil. | |
7558 (find-file, find-file-other-window): New arg WILDCARDS. | |
7559 Default it to non-nil if interactive. | |
7560 (find-file-other-frame): Likewise. | |
7561 (find-file-read-only): Likewise. | |
7562 (find-file-read-only-other-window): Likewise. | |
7563 (find-file-read-only-other-frame): Likewise. | |
7564 | |
7565 * wid-edit.el (widget-alist-convert-option): Delete spurious comma. | |
7566 (widget-plist-convert-option): Delete spurious comma. | |
7567 | |
7568 1999-01-19 Jason Rumney <jasonr@altavista.net> | |
7569 | |
7570 * term/w32-win.el (w32-standard-fontspec-spec): Change | |
7571 iso8859-5 to koi8-r. Add iso8859-9. | |
7572 | |
7573 1999-01-19 Dave Love <fx@gnu.org> | |
7574 | |
7575 * browse-url.el (browse-url-maybe-new-window): Delete macro and | |
7576 its uses. | |
7577 | |
7578 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark | |
7579 is active. | |
7580 (fortran-indent-subprogram): Likewise. | |
7581 | |
7582 1999-01-19 Dave Love <d.love@dl.ac.uk> | |
7583 | |
7584 * paths.el (Info-default-directory-list): Perhaps add /usr/info. | |
7585 | |
7586 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7587 | |
7588 * wid-edit.el (alist): Use sexp as default key-type. | |
7589 | |
7590 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7591 | |
7592 * textmodes/tex-mode.el (tex-define-common-keys): | |
7593 Remove key binding of tex-feed-input. | |
7594 (tex-mode-map): Bind tex-feed-input here. | |
7595 (tex-start-shell): Use compilation-shell-minor-mode. Set | |
7596 comint-input-filter-functions before running tex-shell-hook. | |
7597 (tex-start-tex): Forget compilation errors. | |
7598 (tex-compilation-parse-errors): Rewritten to work also with | |
7599 compile-mouse-goto-error and compile-goto-error. Adjusted to | |
7600 change in tex-region. | |
7601 (tex-region): For the temp file use file-name without directory. | |
7602 (tex-file): Expand file name of tex-print-file. | |
7603 | |
7604 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7605 | |
7606 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call. | |
7607 | |
7608 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no> | |
7609 | |
7610 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid | |
7611 beginning could cause Emacs to hang. Fixed. | |
7612 | |
7613 1999-01-18 Ken'ichi Handa <handa@gnu.org> | |
7614 | |
7615 * international/ccl.el (ccl-compile-translate-character): Handle | |
7616 the case that a tranlation table is CCL register correctly. | |
7617 | |
7618 * international/mule-cmds.el (select-safe-coding-system): | |
7619 Hightlight at most 256 characters. | |
7620 | |
7621 1999-01-18 Dave Love <fx@gnu.org> | |
7622 | |
7623 * startup.el (command-line): If the init file changes operation to | |
7624 unibyte, make all buffers unibyte and re-set language environment. | |
7625 | |
7626 * disp-table.el (standard-display-european): Make all existing | |
7627 buffers unibyte. Fix doc. | |
7628 | |
7629 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7630 | |
7631 * wid-edit.el (coding-system): Define this unconditionally. | |
7632 | |
7633 * simple.el (shell-command-on-region-default-error-buffer): New var. | |
7634 (shell-command-on-region): Use that variable as interactive | |
7635 value of ERROR-BUFFER argument. | |
7636 | |
7637 1999-01-17 Sam Steingold <sds@goems.com> | |
7638 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
7639 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'. |
25837 | 7640 |
7641 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7642 | |
7643 * progmodes/compile.el (compilation-goto-locus): If already in the | |
7644 compilation buffer's window, keep it in that window. | |
7645 (compile-mouse-goto-error): Add Doc. Don't play with windows. | |
7646 (compile-goto-error): Don't play with windows. | |
7647 | |
7648 * textmodes/tex-mode.el (latex-run-command): Doc fix. | |
7649 (tex-command): Doc fix. | |
7650 (tex-compilation-parse-errors): Doc fix. | |
7651 (tex-generate-zap-file-name): Don't start the name with -. | |
7652 (tex-expand-files): Works now also with strings ending with ":". | |
7653 | |
7654 1999-01-17 Ian T Zimmerman <itz@transbay.net> | |
7655 | |
7656 Patch failed to install: | |
7657 * gametree.el: Document scoring functionality. | |
7658 (gametree-score-regexp): Add optional plus sign. | |
7659 (gametree-score-opener): Replace `:' with `=' as the former | |
7660 conflicts with gametree-half-ply-regexp. | |
7661 (gametree-transpose-following-leaves): Add. | |
7662 (gametree-insert-new-leaf): Make modifying commands barf in read | |
7663 only buffers. | |
7664 (gametree-break-line-here): Add a call to | |
7665 `gametree-transpose-following-leaves'. This maintains the | |
7666 necessary invariant that on each level all leaf children precede | |
7667 all nonleaf children. This has always been implied, but left to | |
7668 the user, and, unfortunately, undocumented. | |
7669 | |
7670 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk> | |
7671 | |
7672 * wid-edit.el (plist, alist): New widget types. | |
7673 | |
7674 1999-01-17 Dave Love <fx@gnu.org> | |
7675 | |
7676 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and | |
7677 fix scope of condition-case therein. | |
7678 | |
7679 1999-01-17 Andrew Innes <andrewi@gnu.org> | |
7680 | |
7681 * dos-w32.el: (find-buffer-file-type-coding-system): Use | |
7682 default-buffer-file-coding-system when file doesn't exist (and | |
7683 isn't covered by a special case) instead of forcing undecided-dos | |
7684 against the user's wishes. | |
7685 | |
7686 * dos-w32.el (direct-print-region-helper): New function based on | |
7687 direct-print-region-function; sends data to specified printer port | |
7688 without further translation. Recognize and handle specially the | |
7689 standard `print' and `nprint' programs, as well as `lpr' and | |
7690 similar programs. Only write directly to the printer port if no | |
7691 print program is specified. Work around a bug in Windows 9x | |
7692 affecting Win32 version of Emacs by invoking command.com to write | |
7693 to the printer port instead of writing directly. | |
7694 (direct-print-region-function): Use direct-print-region-helper to | |
7695 do most of the work. | |
7696 (direct-ps-print-region-function): New function; analogue of | |
7697 direct-print-region-function for ps-print. | |
7698 (ps-lpr-command): Comment out setq; leave as example usage. | |
7699 (ps-lpr-switches): Ditto. | |
7700 | |
7701 * lpr.el: (printer-name): Update docstring about usage on MS-DOS | |
7702 and MS-Windows. | |
7703 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on | |
7704 DOS and Windows platforms, to indicate direct printing. Update | |
7705 the docstring accordingly. | |
7706 | |
7707 * ps-print.el: (ps-printer-name): Update docstring about usage on | |
7708 MS-DOS and MS-Windows. | |
7709 (ps-lpr-command): Update docstring as for lpr-command. | |
7710 (ps-print-region-function): New variable. | |
7711 (ps-do-despool): Use it. | |
7712 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for | |
7713 DOS/Windows. | |
7714 | |
7715 * subr.el (subst-char-in-string): New function. | |
7716 | |
7717 1999-01-17 Eli Zaretskii <eliz@gnu.org> | |
7718 | |
7719 * international/codepage.el (cp852-decode-table): Fill a nil entry. | |
7720 | |
7721 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename. | |
7722 (bdf-find-font-info): New function, looks for the first readable | |
7723 file from a list of alternatives. | |
7724 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info | |
7725 instead of bdf-get-font-info. | |
7726 (bdf-generate-glyphs): If font-name is a cons cell, pass its car | |
7727 to ps-mule-generate-bitmap-glyph. | |
7728 | |
7729 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative | |
7730 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can | |
7731 now be a list of alternative names. | |
7732 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car. | |
7733 (ps-mule-prepare-font): Likewise. | |
7734 | |
7735 * international/codepage.el (cp855-decode-table, | |
7736 cp850-decode-table): Fill some nil entries. | |
7737 | |
7738 1999-01-16 Dave Love <fx@gnu.org> | |
7739 | |
7740 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert | |
7741 last change. | |
7742 | |
7743 1999-01-15 Dave Love <fx@gnu.org> | |
7744 | |
7745 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions | |
7746 and change regexp for command names. | |
7747 (help-xref-go-back, function-called-at-point, symbol-file) | |
7748 (where-is): Doc fixes. | |
7749 (help-xref-go-back): Remove interactive spec. | |
7750 (describe-function-1): Fix message for alias. Buttomize alias | |
7751 name. | |
7752 | |
7753 * simple.el (join-line): New alias. | |
7754 | |
7755 1999-01-15 Johan Vromans <jvromans@squirrel.nl> | |
7756 | |
7757 * forms.el: (forms--show-record): Convert integers to string | |
7758 expicitly since concat will no longer accept integers. | |
7759 (forms-print): Use local `total-nb-records' since | |
7760 `forms--total-records' will be inaccessible after buffer switching. | |
7761 | |
7762 1998-01-14 Felix Lee <flee@cygnus.com> | |
7763 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
7764 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness. |
25837 | 7765 |
7766 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7767 | |
7768 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change. | |
7769 | |
7770 1999-01-14 Eli Zaretskii <eliz@gnu.org> | |
7771 | |
7772 * international/codepage.el (cp850-decode-table): Fix previous change. | |
7773 | |
7774 1999-01-14 Simon Marshall <simon@gnu.org> | |
7775 | |
7776 * shell.el (shell-dirtrack-verbose): New custom variable. | |
7777 (shell-dirstack-message): Use it. | |
7778 | |
7779 1999-01-14 Kenichi Handa <handa@etl.go.jp> | |
7780 | |
7781 * international/mule-conf.el: Coding system alias `dos' for | |
7782 `undecided-dos', `mac' for `undecided-mac'. | |
7783 | |
7784 * international/mule-cmds.el (describe-language-environment): | |
7785 Don't alter input-method-alist. | |
7786 | |
7787 1999-01-13 Eli Zaretskii <eliz@gnu.org> | |
7788 | |
7789 * international/codepage.el (cp850-decode-table): Replace nil | |
7790 entries with codes of similary looking glyphs. (Suggested by | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
7791 Jason Rumney <jasonr@altavista.net>.) |
25837 | 7792 |
7793 1999-01-13 Dave Love <fx@gnu.org> | |
7794 | |
7795 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise". | |
7796 | |
7797 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change. | |
7798 | |
7799 1999-01-12 Karl Heuer <kwzh@gnu.org> | |
7800 | |
7801 * files.el (auto-save-hook): Defvar this. | |
7802 | |
7803 1999-01-12 Alex Schroeder <asc@bsiag.com> | |
7804 | |
7805 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock | |
7806 faces, eliminating the need to load font-lock before loading sql. | |
7807 (sql-mode-oracle-font-lock-keywords): Likewise. | |
7808 (sql-mode-postgres-font-lock-keywords): Likewise. | |
7809 | |
7810 1999-01-11 Dave Love <fx@gnu.org> | |
7811 | |
7812 * cus-start.el: Add inhibit-eol-conversion. | |
7813 | |
7814 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap | |
7815 the values round. | |
7816 | |
7817 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7818 | |
7819 * help.el (help-mode-finish): Renamed from help-mode-maybe. | |
7820 Don't switch to Help mode here. | |
7821 (temp-buffer-setup-hook): Use help-mode-finish. | |
7822 (help-mode-setup): New function. | |
7823 (temp-buffer-setup-hook): Use help-mode-setup. | |
7824 | |
7825 * progmodes/sql.el: New file. | |
7826 | |
7827 * files.el (auto-mode-alist): Add sql-mode. | |
7828 | |
7829 * faces.el (list-faces-display): Improve the formatting | |
7830 by computing the maximum length required for any face-name. | |
7831 | |
7832 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7833 | |
7834 * progmodes/compile.el (compilation-shell-minor-mode): New function. | |
7835 | |
7836 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu> | |
7837 | |
7838 * term.el (term_send_home): Change the string to | |
7839 be the same as the one emitted by xterm and consistent with the | |
7840 ones emitted by prior and next. | |
7841 (term_send_end): Likewise. | |
7842 | |
7843 1999-01-10 Dave Love <fx@gnu.org> | |
7844 | |
7845 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse | |
7846 bindings. | |
7847 | |
7848 1999-01-10 Eli Zaretskii <eliz@gnu.org> | |
7849 | |
7850 * international/codepage.el (codepage-setup): Doc fix. | |
7851 (cp-decoding-vector-for-codepage): Likewise. | |
7852 | |
7853 1999-01-10 Markus Rost <rost@gnu.org> | |
7854 | |
7855 * cus-edit.el (custom-save-delete): First scan the custom-file. | |
7856 | |
7857 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7858 | |
7859 * international/iso-transl.el: Define a "function name" for | |
7860 each translation that isn't ASCII. Use these function names | |
7861 in iso-transl-char-map. | |
7862 | |
7863 1999-01-08 Kenichi Handa <handa@etl.go.jp> | |
7864 | |
7865 * international/mule-util.el (decompose-region): Do decomposition | |
7866 on temporary unibyte buffer. | |
7867 | |
7868 * international/mule.el (make-char): Doc-string modified. | |
7869 | |
7870 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7871 | |
7872 * simple.el (comment-region): Delete spaces only if we | |
7873 deleted a comment starter. | |
7874 | |
7875 1999-01-07 Dave Love <fx@gnu.org> | |
7876 | |
7877 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix. | |
7878 | |
7879 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom | |
7880 like eval-defun does. | |
7881 | |
7882 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark]. | |
7883 | |
7884 * generic.el: Re-write `(make-variable-buffer-local (defvar ...' | |
7885 constructions. Doc fixes. | |
7886 (generic-create-generic-function): Use defalias, not fset. | |
7887 | |
7888 * find-func.el: More doc fixes. | |
7889 | |
7890 1999-01-06 Stephen Eglen <stephen@gnu.org> | |
7891 | |
7892 * files.el (save-buffers-kill-emacs): Show the list of current | |
7893 processes before prompting to kill them and exit. | |
7894 | |
7895 1999-01-06 Dave Love <fx@gnu.org> | |
7896 | |
7897 * emacs-lisp/find-func.el: Doc fixes. | |
7898 (find-function-regexp): Extend for define-generic-mode, | |
7899 define-derived-mode, easy-mmode-define-minor-mode. | |
7900 | |
7901 1999-01-06 Dave Love <fx@gnu.org> | |
7902 | |
7903 * progmodes/fortran.el (fortran-window-create): Account for scroll | |
7904 bar width. | |
7905 | |
7906 * browse-url.el: Require (noerror) w3-auto when compiling. | |
7907 (browse-url-maybe-new-window): Make it a macro and revert last | |
7908 change to callers. | |
7909 (browse-url-w3): Require w3 for w3-fetch-other-window. | |
7910 | |
7911 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
7912 | |
7913 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the | |
7914 argument. | |
7915 | |
7916 1999-01-06 Simon Marshall <simon@gnu.org> | |
7917 | |
7918 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix. | |
7919 | |
7920 * font-lock.el (font-lock-default-fontify-buffer): When using | |
7921 with-temp-message, use nil rather than current-message. | |
7922 | |
7923 * lazy-lock.el (lazy-lock-unstall): | |
7924 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil | |
7925 rather than current-message. | |
7926 | |
7927 * fast-lock.el (fast-lock-save-cache-1): | |
7928 (fast-lock-cache-data): When using with-temp-message, use nil rather | |
7929 than current-message. | |
7930 | |
7931 1999-01-06 Eli Zaretskii <eliz@gnu.org> | |
7932 | |
7933 * international/codepage.el (cp-coding-system-for-codepage-1): Add | |
7934 the valid-codes property. | |
7935 | |
7936 * international/mule-cmds.el (prefer-coding-system): Call | |
7937 set-coding-priority, so that the internal array of priorities is | |
7938 also updated. | |
7939 | |
7940 * international/mule-util.el: | |
7941 (coding-system-change-eol-conversion, | |
7942 coding-system-change-text-conversion): Don't define here. | |
7943 | |
7944 * international/mule-cmds.el: Define them here. Remove the | |
7945 autoload cookies. | |
7946 | |
7947 1999-01-06 Andreas Schwab <schwab@gnu.org> | |
7948 | |
7949 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled | |
7950 if it was enabled before. | |
7951 | |
7952 * view.el (View-revert-buffer-scroll-page-forward): Bind | |
7953 view-scroll-auto-exit instead of obsolete view-mode-auto-exit. | |
7954 | |
7955 * files.el (recover-session): Preserve point when inserting | |
7956 explanation. | |
7957 | |
7958 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu> | |
7959 | |
7960 * cus-edit.el (custom-save-delete): Don't delete whitespace | |
7961 and comments before the sexp that is replaced. | |
7962 | |
7963 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
7964 | |
7965 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error. | |
7966 | |
7967 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
7968 | |
7969 * vc.el (vc-dired-hook): Use the original value of | |
7970 dired-move-to-filename-regexp on lines that have not been | |
7971 reformatted yet. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
7972 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the |
25837 | 7973 file lines have already been reformatted. |
7974 | |
7975 1999-01-05 Dave Love <fx@gnu.org> | |
7976 | |
7977 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search | |
7978 buffer-local. | |
7979 | |
7980 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se> | |
7981 | |
7982 * progmodes/f90.el: Change of regular expressions for type to | |
7983 correct highlighting and identation. Some small fixes for | |
7984 compatibility with XEmacs. | |
7985 | |
7986 1999-01-05 Stephen Eglen <stephen@gnu.org> | |
7987 | |
7988 * mspools.el (mspools-vm-system-mail): Provide an alternative | |
7989 value based on rmail-spool-directory if $MAIL is not defined. | |
7990 | |
7991 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl> | |
7992 | |
7993 * textmodes/reftex.el (reftex-section-levels): Allow negative levels. | |
7994 (reftex-section-info): Handle negative section levels. | |
7995 (reftex-view-crossref-extra): New option. | |
7996 (reftex-view-crossref): Generalized to work in more places. | |
7997 (reftex-find-citation-regexp-format, reftex-find-reference-format, | |
7998 reftex-macros-with-labels, reftex-global-search-marker): New variables. | |
7999 (reftex-view-cite-locations-from-bibtex): New command. | |
8000 (reftex-view-regexp-match, reftex-global-search, | |
8001 reftex-global-search-continue): New functions. | |
8002 (reftex-extract-bib-entries): No error for non-existing BibTeX | |
8003 file, just a message. | |
8004 (reftex-extract-bib-entries): Better error handling. | |
8005 (reftex-select-with-char): Use `*RefTeX Select*' for selection | |
8006 help and force it on current frame. | |
8007 (reftex-default-bibliography): New function. | |
8008 (reftex-access-parse-file): Check consistency after loading a | |
8009 parse file. When inconsistent, enfore rescan. | |
8010 (reftex-check-parse-consistency): New function. | |
8011 (easy-menu-define): Options section drastically shortened. | |
8012 | |
8013 1999-01-05 Kenichi Handa <handa@etl.go.jp> | |
8014 | |
8015 * language/thai-util.el (thai-compose-string): New function. | |
8016 | |
8017 1999-01-04 Inge Frick <inge@nada.kth.se> | |
8018 | |
8019 * easymenu.el (easy-menu-define): Doc fix. | |
8020 (easy-menu-create-menu): New keyword :included. | |
8021 (easy-menu-do-add-item): New keyword :included. SUFFIX may | |
8022 be an expression, not only a string. Simulate style `button'. | |
8023 Use easy-menu-define-key-intern instead of easy-menu-define-key. | |
8024 (easy-menu-define-key-intern): New function. | |
8025 (easy-menu-add-item): Understand value returned from | |
8026 easy-menu-item-present-p and easy-menu-remove-item. | |
8027 (easy-menu-return-item): New function. | |
8028 (easy-menu-item-present-p, easy-menu-remove-item): Use it. | |
8029 | |
8030 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8031 | |
8032 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): | |
8033 Use rmail-output-read-rmail-file-name to read the file name. | |
8034 Always call rmail-output-to-rmail-file noninteractively. | |
8035 When count > 1, do the loop here. | |
8036 Handle rmail-delete-after-output here. | |
8037 (rmail-summary-output): Similar changes. | |
8038 | |
8039 * mail/rmailout.el: Provide `rmailout'. | |
8040 (rmail-output-read-rmail-file-name): New function. | |
8041 (rmail-output-to-rmail-file): Use that. | |
8042 (rmail-output-read-file-name): New function. | |
8043 (rmail-output): Use that. | |
8044 | |
8045 * files.el (find-file-noselect): Let /: suppress wildcard matching. | |
8046 Error if wildcard matches no files. | |
8047 | |
8048 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8049 | |
8050 * menu-bar.el (clipboard-yank): Doc fix. | |
8051 | |
8052 * info.el (Info-insert-dir): Chase symlinks for file-attributes. | |
8053 | |
8054 1998-12-31 Markus Rost <rost@delysid.gnu.org> | |
8055 | |
8056 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo. | |
8057 | |
8058 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk> | |
8059 | |
8060 * rmail.el (rmail-encode-string): Make sure mask value is | |
8061 positive; (emacs-pid) returns a negative number on Windows 9x | |
8062 which causes odd behaviour. | |
8063 | |
8064 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8065 | |
8066 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS, | |
8067 and about w32-* variables unless on Windows/NT. | |
8068 | |
8069 1998-12-31 Boris Goldowsky <boris@alum.mit.edu> | |
8070 | |
8071 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only | |
8072 if buffer is modified; ask about all modified buffers. | |
8073 | |
8074 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8075 | |
8076 * simple.el (what-cursor-position): Fix previous change. | |
8077 | |
8078 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu> | |
8079 | |
8080 * mail/sendmail.el (mail-mode): Eliminate ambiguous match | |
8081 from paragraph-start. | |
8082 | |
8083 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8084 | |
8085 * international/mule-cmds.el (prefer-coding-system): If the | |
8086 argument requires specific EOL conversion type, make the default | |
8087 coding systems use that. | |
8088 | |
8089 1998-12-30 Drew Csillag <drew_csillag@geocities.com> | |
8090 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8091 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer): |
25837 | 8092 Use shell-command-on-region. |
8093 (m4-start-m4, m4-end-m4): Functions deleted. | |
8094 | |
8095 1998-12-30 Michael Ernst <mernst@alum.mit.edu> | |
8096 | |
8097 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout. | |
8098 | |
8099 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
8100 | |
8101 * browse-url.el (browse-url-mail): Give argument SEND-ACTION | |
8102 to compose-mail in the correct places and as a list. | |
8103 | |
8104 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp> | |
8105 | |
8106 * page-ext.el: Added mouse-selection feature for pages directory buffer. | |
8107 (pages-directory-map): Bind mouse-2 | |
8108 (pages-copy-header-and-position): Put text property. | |
8109 (pages-directory-goto-with-mouse): New function. | |
8110 | |
8111 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8112 | |
8113 * international/codepage.el (cp-make-coding-systems-for-codepage): | |
8114 Doc fix. | |
8115 (cp-coding-system-for-codepage-1): Likewise. | |
8116 | |
8117 1998-12-29 Kenichi Handa <handa@etl.go.jp> | |
8118 | |
8119 * language/thai-util.el (thai-post-read-conversion): Handle Thai | |
8120 composition sequence correctly here instead of calling | |
8121 thai-compose-region. | |
8122 | |
8123 * textmodes/fill.el (fill-region-as-paragraph): While deleting a | |
8124 newline in multibyte buffer, if previous or next character is a | |
8125 composite char, check the first component of the composite char. | |
8126 | |
8127 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org> | |
8128 | |
8129 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer | |
8130 and track-mouse. | |
8131 | |
8132 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
8133 | |
8134 * mail/sendmail.el (mail-yank-original): Remove text properties | |
8135 after insertion. | |
8136 (mail-yank-region): Barf if no mark is set in the message | |
8137 being replied to. | |
8138 | |
8139 * help.el (function-called-at-point): First look for function at point. | |
8140 | |
8141 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8142 | |
8143 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage. | |
8144 | |
8145 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8146 | |
8147 * simple.el (what-cursor-position): Print character encoding also. | |
8148 | |
8149 1998-12-26 Dave Love <fx@gnu.org> | |
8150 | |
8151 * textmodes/flyspell.el: If local-maps work, don't put | |
8152 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB | |
8153 in flyspell-mouse-map (only). | |
8154 (flyspell-use-local-map): New variable. | |
8155 Use a different mouse-2 binding in that case, | |
8156 and don't add to minor-mode-map-alist. | |
8157 (make-flyspell-overlay, flyspell-correct-word): | |
8158 Test flyspell-use-local-map. | |
8159 | |
8160 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8161 | |
8162 * files.el (file-expand-wildcards): Handle wildcards in directory name. | |
8163 Be careful about whether to return a relative file name, | |
8164 and if so, relative to what directory. | |
8165 | |
8166 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8167 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8168 * emacs-lisp/easymenu.el (easy-menu-get-map): |
25837 | 8169 Change global map only if this menu exists in the global map already, |
8170 and not in the local map. | |
8171 (easy-menu-do-add-item): Fix error message. | |
8172 | |
8173 * foldout.el (foldout-inhibit-key-bindings): | |
8174 Avoid concatenating onto outline-minor-mode-prefix. | |
8175 Make a new keymap for that prefix, if it does not already have one. | |
8176 | |
8177 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu> | |
8178 | |
8179 * cperl-mode.el: | |
8180 Can use linear algorithm for indentation if Emacs supports it. | |
8181 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp. | |
8182 (cperl-after-block-p): Likewise. | |
8183 (cperl-after-block-and-statement-beg): Likewise. | |
8184 (cperl-after-block-p): After END/BEGIN we are a block. | |
8185 (cperl-after-expr-p): Skip labels when checking | |
8186 (cperl-indent-region): Make a marker for END - text added/removed. | |
8187 Disable hooks during the call (how to call them later?). | |
8188 Now indents 820-line-long function in 6.5 sec (including | |
8189 syntaxification) the first time (when buffer has few | |
8190 properties), 7.1 sec the second time. | |
8191 (cperl-indent-region): Do not indent whitespace lines | |
8192 (cperl-style-alist) | |
8193 Include `cperl-merge-trailing-else' where the value is clear. | |
8194 (cperl-styles-entries): Likewise. | |
8195 (cperl-problems): Improvements to docs. | |
8196 (cperl-tips): Likewise. | |
8197 (cperl-non-problems): Likewise. | |
8198 (cperl-mode): Make lazy syntaxification possible. | |
8199 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30). | |
8200 `font-lock-unfontify-region-function' was set to a wrong function. | |
8201 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8202 (cperl-find-pods-heres): Safe a position in buffer where it is safe to |
25837 | 8203 restart syntaxification. Changed so that -d ?foo? is a RE. Do |
8204 not warn on `=cut' if doing a chunk only. 1 << 6 was OK, | |
8205 but 1<<6 was considered as HERE-doc. | |
8206 <file/glob> made into a string. | |
8207 Postpone addition of faces after syntactic step. | |
8208 Recognition of <FH> was wrong. | |
8209 Highlight `gem' in s///gem as a keyword. `qr' recognized. | |
8210 Knows that split// is null-RE. | |
8211 Highlights separators in 3-parts expressions as labels. | |
8212 <> was considered as a glob. | |
8213 Would err if the last line is `=head1'. | |
8214 $a-1 ? foo : bar; was a considered a regexp. | |
8215 `<< (' was considered a start of HERE-doc. | |
8216 mark qq[]-etc sections as syntax-type=string | |
8217 Was not processing sub protos after a comment ine. | |
8218 Was treating $a++ <= 5 as a glob. | |
8219 Tolerate unfinished REx at end-of-buffer. | |
8220 `unwind-protect' was left commented. | |
8221 / and ? after : start a REx. | |
8222 | |
8223 (cperl-syntaxify-by-font-lock): Set to t, should be safe now. | |
8224 Better default, customizes to `message' too, off in text-mode. | |
8225 | |
8226 (cperl-array-face): Renamed from `font-lock-emphasized-face', | |
8227 `defface'd. | |
8228 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'. | |
8229 `defface'd. | |
8230 (cperl-emacs-can-parse): New state variable. | |
8231 (cperl-indent-line): Corrected to use global state. | |
8232 (cperl-calculate-indent): Likewise. | |
8233 (cperl-fix-line-spacing): Likewise (not used yet). | |
8234 (cperl-calculate-indent): Did not consider `,' as | |
8235 continuation mark for statements. | |
8236 (cperl-calculate-indent): Avoid parse-data optimization at toplevel. | |
8237 Remove another parse-data optimization at toplevel: would | |
8238 indent correctly. | |
8239 Correct for labels when calculating indentation of continuations. | |
8240 Docstring updated. | |
8241 (cperl-choose-color): Converted to a function (to be | |
8242 compilable in text-mode). | |
8243 (cperl-dark-background): Disable without window-system. | |
8244 Do `defface' only if window-system. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8245 (cperl-fix-line-spacing): Sped up to bail out early. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8246 (x-color-defined-p): Was not compiling on XEmacs |
25837 | 8247 Was defmacro'ed with a tick. Remove another def. |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8248 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones |
25837 | 8249 (cperl-unwind-to-safe): New function. |
8250 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position. | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8251 (cperl-fontify-syntaxically): Unwinds start and end to go out of |
25837 | 8252 long strings (not very successful). |
8253 (cperl-forward-re): Highlight the trailing / in s/foo// as string. | |
8254 Highlight the starting // in s//foo/ as function-name. | |
8255 Emit a meaningful error instead of a cryptic one for an | |
8256 uncomplete REx near end-of-buffer. | |
8257 | |
8258 (cperl-electric-keyword): `qr' recognized. | |
8259 (cperl-electric-else): Likewise | |
8260 (cperl-to-comment-or-eol): Likewise | |
8261 (cperl-make-regexp-x): Likewise | |
8262 (cperl-init-faces): Likewise, and `lock' (as overridable?). | |
8263 Corrected to use new macros; | |
8264 `if' for copying `reference-face' to `constant-face' was backward. | |
8265 remove init `font-lock-other-emphasized-face', | |
8266 `font-lock-emphasized-face', `font-lock-keyword-face'. | |
8267 Interpolate `cperl-invalid-face'. | |
8268 (cperl-make-regexp-x): Misprint in a message. | |
8269 (cperl-syntaxify-unwind): New configuration variable | |
8270 (cperl-fontify-m-as-s): New configuration variable | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8271 (cperl-electric-pod): Check for after-expr was performed |
25837 | 8272 inside of POD too. |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8273 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs. |
25837 | 8274 (cperl-clobber-mode-lists): New configuration variable. |
8275 (cperl-not-bad-style-regexp): Updated. | |
8276 Init: `cperl-is-face' was busted. | |
8277 (cperl-make-face): New macros. | |
8278 (cperl-force-face): New macros. | |
8279 (font-lock-other-type-face): Done via `defface' too. | |
8280 (cperl-nonoverridable-face): New face. Renamed from | |
8281 `font-lock-other-type-face'. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8282 (cperl-init-faces-weak): Use `cperl-force-face'. |
25837 | 8283 (cperl-comment-indent): Commenting __END__ was not working. |
8284 (cperl-indent-for-comment): Likewise. | |
8285 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'. | |
8286 When removing old TAGS info was not relativizing filename. | |
8287 (cperl-tags-hier-init): Gross hack to pretend we work (are we?). | |
8288 Another try to work around XEmacs problems. Better progress messages. | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8289 (toplevel): Require custom unprotected => failure on 19.28. |
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
8290 (cperl-xemacs-p): Defined when compile too |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8291 (cperl-find-tags): Was writing line/pos in a wrong order, |
25837 | 8292 pos off by 1 and not at beg-of-line. |
8293 (cperl-etags-snarf-tag): New macro | |
8294 (cperl-etags-goto-tag-location): New macro | |
8295 (cperl-version): New variable. New menu entry | |
8296 random docstrings: References to "future" 20.3 removed. | |
8297 Menu was described as `CPerl' instead of `Perl' | |
8298 (perl-font-lock-keywords): Would not highlight `sub foo($$);'. | |
8299 (cperl-toggle-construct-fix): Was toggling to t instead of 1. | |
8300 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face' | |
8301 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face', | |
8302 `font-lock-reference-face', `font-lock-keyword-face'. | |
8303 Use `eval-after-load'. | |
8304 Remove not-CPerl-related faces. | |
8305 (cperl-tips-faces): New variable and an entry into Mini-docs. | |
8306 (cperl-indent-exp): Was not processing else-blocks. | |
8307 (cperl-get-state): NOP line removed. | |
8308 (cperl-ps-print): New function and menu entry. | |
8309 (cperl-ps-print-face-properties): New configuration variable. | |
8310 (cperl-invalid-face): New configuration variable. | |
8311 (perl-font-lock-keywords): Highlight trailing whitespace | |
8312 (cperl-contract-levels): Documentation corrected. | |
8313 (cperl-contract-level): Likewise. | |
8314 (cperl-ps-extend-face-list): New macro. | |
8315 (cperl-invalid-face): Change to ''underline. | |
8316 | |
8317 1998-12-25 Markus Rost <rost@delysid.gnu.org> | |
8318 | |
8319 * mail/rmailout.el (rmail-output): Abbreviate name of default-file | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8320 for read-file-name. |
25837 | 8321 (rmail-output-to-rmail-file): Likewise. |
8322 | |
8323 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8324 | |
8325 * emacs-lisp/easymenu.el (easy-menu-get-map): | |
8326 If MENU is nil, use global menu-bar map. | |
8327 (easy-menu-add-item, easy-menu-remove-item): Argument renamed. | |
8328 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed. | |
8329 | |
8330 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
8331 | |
8332 * ps-mule.el (ps-mule-begin-job): Programming uniformization. | |
8333 | |
8334 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
8335 | |
8336 * ps-print.el (ps-print-version): New version number (4.1.3). | |
8337 | |
8338 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8339 | |
8340 * international/mule-cmds.el: Use make-sparse-keymap instead of | |
8341 define-prefix-key when defining MULE menu items. | |
8342 | |
8343 * info.el (Info-node-at-bob-matching): New function. | |
8344 (Info-find-node, Info-build-node-completions): Call it. | |
8345 | |
8346 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org> | |
8347 | |
8348 * help.el (describe-function-1): Say "keymap", not "Lisp macro", | |
8349 when this is an autoloaded keymap. | |
8350 | |
8351 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8352 | |
8353 * international/codepage.el (cp-coding-system-for-codepage-1): | |
8354 Create separate encoders and decoders, for DOS and Unix. Make the | |
8355 usual family of 3 coding systems, so that automatic detection of | |
8356 EOL type works. | |
8357 (cp-make-coding-systems-for-codepage): Don't intern DOS- and | |
8358 Unix-specific symbols here, and don't call | |
8359 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi | |
8360 Handa <handa@etl.go.jp>.) | |
8361 | |
8362 * dos-vars.el (dos-codepage-setup-hook): New defcustom. | |
8363 | |
8364 * term/internal.el (IT-character-translations): New variable, an | |
8365 alist used to display characters for which there's no glyphs in | |
8366 the current codepage. | |
8367 (IT-display-table-setup): New function, sets up the DOS terminal | |
8368 for a given codepage. | |
8369 (dos-codepage-setup): New function, sets up the MULE environment | |
8370 for the current value of dos-codepage. | |
8371 (top-level if): In the multibyte mode, turn on | |
8372 unibyte-display-via-language-environment. In the unibyte mode, | |
8373 set up the special syntax tables to map lower- to upper case and | |
8374 back. | |
8375 | |
8376 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org> | |
8377 | |
8378 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt. | |
8379 (speedbar-frame-plist) Remove useless comments. | |
8380 (speedbar-frame-mode) Do not specify height if it is in the param list. | |
8381 Use default y position w/out changing it. | |
8382 If default x position is a list, keep, calculate the non-list X | |
8383 value when devining an initial position. | |
8384 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files. | |
8385 (speedbar-tag-group-name-minimum-length): New variable. | |
8386 (speedbar-frame-parameter): New compatibility function. | |
8387 (speedbar-frame-mode): Updated to use speedbar-frame-parameter. | |
8388 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub | |
8389 groups to keep things in the right order, and to help with some | |
8390 naming conventions. | |
8391 (speedbar-create-tag-hierarchy): Enable buffer local version of | |
8392 `speedbar-tag-hierarchy-method' in the buffer we are tagging. | |
8393 (speedbar-line-path) Make DEPTH param optional. Devine it if absent. | |
8394 the case, derive it from the cursor location in speedbar. | |
8395 | |
8396 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8397 | |
8398 * international/mule-cmds.el (set-language-environment): On MS-DOS | |
8399 terminals, install DOS-specific nonascii-translation-table if the | |
8400 language info doesn't specify one. Pass the default eol-type to | |
8401 set-language-environment-coding-systems. | |
8402 (set-default-coding-systems): Copy the eol-type property for the | |
8403 new default values of {buffer-file,process}-coding-system from the | |
8404 old defaults. | |
8405 (set-language-environment-coding-systems): Accept an optional | |
8406 argument EOL-TYPE, and set the eol-type property of the default | |
8407 coding systems accordingly. | |
8408 (set-terminal-coding-system): Enable menu item on MS-DOS terminals. | |
8409 (set-keyboard-coding-system): Likewise. | |
8410 (set-default-coding-systems): Don't set | |
8411 default-terminal-coding-system on MS-DOS to anything but nil. | |
8412 (prefer-coding-system): Describe in the doc string that | |
8413 default-terminal-coding-system is not changed on MS-DOS. | |
8414 (set-language-environment): For MS-DOS, set standard syntax table | |
8415 and display table for all characters with code above 127. | |
8416 (standard-display-european-internal): For MS-DOS, pass all | |
8417 characters with code above 127 directly to the terminal, and don't | |
8418 remap characters 160 and 146 in the unibyte case. | |
8419 | |
8420 * international/codepage.el: New file. | |
8421 | |
8422 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
8423 | |
8424 * diary-lib.el (diary-float): Fix end-of-year error and typos in | |
8425 comments. | |
8426 | |
8427 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru> | |
8428 | |
8429 * map-ynp.el (map-y-or-n-p): Ignore input methods. | |
8430 | |
8431 * subr.el (read-passwd): Likewise. | |
8432 | |
8433 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8434 | |
8435 * info.el (Info-find-node): Add 1 to the position read from the | |
8436 tag table. Don't fail if the node delimiter ^_ is the first | |
8437 character in the file. | |
8438 (Info-insert-dir): Don't fail when the node delimiter ^_ is the | |
8439 first character in the file. | |
8440 (Info-read-subfile): Likewise. | |
8441 (Info-select-node): Likewise. | |
8442 (Info-build-node-completions): Likewise. | |
8443 | |
8444 1998-12-16 Richard Stallman <rms@gnu.org> | |
8445 | |
8446 * term/x-win.el (x-cut-buffer-or-selection-value): | |
8447 If clipboard is enabled, try it before PRIMARY selection. | |
8448 | |
8449 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
8450 | |
8451 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C | |
8452 insert c-cedilla and C-cedilla respectively, like in latin-1. | |
8453 | |
8454 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org> | |
8455 | |
8456 * language/hebrew.el: Don't use sublists in the flags argument | |
8457 passed to make-coding-system. | |
8458 | |
8459 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
8460 | |
8461 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a | |
8462 list of character sets found by find-charset-region. | |
8463 | |
8464 * ps-mule.el: Always require ps-print. Move some function | |
8465 definitions for Emacs 20.2 and the earlier to ps-print.el. | |
8466 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2. | |
8467 | |
8468 * ps-print.el: Define several functions for Emacs 20.2 and the | |
8469 earlier version. | |
8470 (ps-printer-name): Check if printer-name is bound. | |
8471 | |
8472 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
8473 | |
8474 * ps-mule.el: Programming uniformization and little code improvement. | |
8475 (ps-mule-prepare-font): Programming uniformization. | |
8476 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar) | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8477 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement. |
25837 | 8478 |
8479 * ps-bdf.el: Programming uniformization and little code improvement. | |
8480 (bdf-search-and-read): New fun. | |
8481 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path) | |
8482 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box) | |
8483 (bdf-info-relative-compose, bdf-info-baseline-offset) | |
8484 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector) | |
8485 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization. | |
8486 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file) | |
8487 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code | |
8488 improvement. | |
8489 | |
8490 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
8491 | |
8492 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix | |
8493 and mule related code extraction. Autoload ps-mule funs. | |
8494 | |
8495 * ps-mule.el: Doc fix. Require ps-print only when compiled. | |
8496 (ps-mule-prologue-generated): New fun. | |
8497 (ps-mule-plot-string): Add autoload cookie. | |
8498 (ps-mule-begin-job): Call ps-mule-prologue-generated. | |
8499 | |
8500 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
8501 | |
8502 * ps-bdf.el: Require ps-mule instead of ps-print. | |
8503 (bdf-directory-list): Add autoload cookie. | |
8504 | |
8505 * ps-mule.el: New file. Mule related code extracted from | |
8506 ps-print.el. Require ps-print, provide ps-mule. | |
8507 (ps-multibyte-buffer): Add autoload cookie. | |
8508 (ps-mule-prepare-ascii-font): New fun. | |
8509 (ps-mule-set-ascii-font): New fun. | |
8510 (ps-mule-skip-same-charset): Fun deleted. | |
8511 (ps-mule-plot-string): Set ps-mule-current-charset. | |
8512 (ps-mule-initialize): Add autload cookie. Don't set | |
8513 ps-mule-font-info-database here. | |
8514 (ps-mule-begin-job): Renamed from ps-mule-begin. Update | |
8515 ps-mule-font-info-database and ps-control-or-escape-regexp. | |
8516 (ps-mule-begin-page): New fun. | |
8517 | |
8518 * ps-print.el: Mule related code moved to ps-mule.el. | |
8519 (ps-begin-job): While setting ps-control-or-escape-regexp, don't | |
8520 check ps-mule-charset-list. | |
8521 (ps-begin-page): Don't set ps-mule-current-charset, instead call | |
8522 ps-mule-begin-page. | |
8523 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font. | |
8524 (ps-plot-region): Don't set ps-mule-current-charset, instead call | |
8525 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset, | |
8526 instead skip same charsets by itself. | |
8527 (ps-generate): Call ps-mule-initialize of needs-begin-file is | |
8528 non-nil. Call ps-mule-begin-job. | |
8529 | |
8530 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
8531 | |
8532 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf | |
8533 instead of bdf. | |
8534 | |
8535 * ps-print.el (ps-mule-font-info-database): Doc-string modified. | |
8536 (ps-mule-external-libraries): New element FEATURE. | |
8537 (ps-mule-init-external-library): Ajusted for the above change. | |
8538 (ps-mule-generate-font): Likewise. | |
8539 (ps-mule-generate-glyphs): Likewise. | |
8540 (ps-mule-prepare-font): Likewise. | |
8541 (ps-mule-initialize): Likewise. | |
8542 (ps-begin-file): Superfluous tailing parenthesis deleted. | |
8543 | |
8544 1998-12-15 Kenichi Handa <handa@etl.go.jp> | |
8545 | |
8546 * international/fontset.el (x-decompose-font-name): If PATTERN | |
8547 doesn't have any wild cards, return a vector made from a name that | |
8548 is found by x-resolve-font-name found. Comments added. | |
8549 | |
8550 * international/mule-cmds.el (find-coding-systems-for-charsets): | |
8551 Handle the case of unknown charset. | |
8552 (find-multibyte-characters): If invalid multibyte characters are | |
8553 found, return the corresponding strings instead of character | |
8554 codes. | |
8555 (find-multibyte-characters): Adjusted for the above change. | |
8556 (select-safe-coding-system): For a unibyte buffer, always returns | |
8557 DEFAULT-CODING-SYSTEM. | |
8558 (get-charset-property): Fix previous change. Make it a function. | |
8559 (put-charset-property): Make it a function. | |
8560 | |
8561 * international/mule.el (make-coding-system): Set mime-charset | |
8562 property of *-with-esc coding system to nil. | |
8563 | |
8564 * international/quail.el (quail-point-in-conversion-region): New | |
8565 function. | |
8566 (quail-conversion-backward-delete-char): When a key sequence is | |
8567 being translated, call quail-delete-last-char. | |
8568 | |
8569 * language/devan-util.el | |
8570 (devanagari-reorder-glyphs-for-decomposition): Fix the way to | |
8571 handle devanagari-decomposition-rules. | |
8572 | |
8573 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org> | |
8574 | |
8575 * textmodes/texinfo.el (texinfo-tex-buffer): Bind | |
8576 tex-start-options-string to empty string. | |
8577 (texinfo-tex-region): Use texinfo-tex-trailer as documented. | |
8578 | |
8579 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org> | |
8580 | |
8581 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and | |
8582 5xx responses are already handled properly). | |
8583 | |
8584 1998-12-13 Richard Stallman <rms@gnu.org> | |
8585 | |
8586 * progmodes/compile.el (compilation-error-regexp-alist): Insist | |
8587 on a non-digit in the file name. | |
8588 | |
8589 * simple.el (comment-region): Handle comment-padding | |
8590 separately for insertion and for deletion, in the right way for each. | |
8591 | |
8592 1998-12-13 Felix Lee <flee@cygnus.com> | |
8593 | |
8594 * progmodes/compile.el (compilation-error-regexp-alist): Fix | |
8595 regexp to match "ChangeLog:1:1998-12-09 ..." | |
8596 | |
8597 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org> | |
8598 | |
8599 * cus-start.el (dos-unsupported-char-glyph): Add. | |
8600 | |
8601 1998-12-11 Dave Love <fx@gnu.org> | |
8602 | |
8603 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap | |
8604 forward-sexp in condition-case. | |
8605 | |
8606 * emacs-lisp/find-func.el (find-function-search-for-symbol): | |
8607 Remove unnecessary test on `library' for explicit file name. | |
8608 Widen scope of save-match-data. | |
8609 | |
8610 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org> | |
8611 | |
8612 * international/mule.el (load-with-code-conversion): If the loaded | |
8613 file was inserted with no-conversion or raw-text coding system, | |
8614 make the buffer unibyte. | |
8615 | |
8616 1998-12-09 Richard Stallman <rms@gnu.org> | |
8617 | |
8618 * progmodes/cc-menus.el (cc-imenu-java-generic-expression): | |
8619 Get rid of nested loops. | |
8620 | |
8621 * mouse.el (mouse-drag-vertical-line): | |
8622 If WHICH-SIDE is not `right', then scroll bars are on the left. | |
8623 | |
8624 * loadhist.el (load-history-loaded): defvar moved to help.el. | |
8625 | |
8626 * help.el (symbol-file-load-history-loaded): Variable renamed, | |
8627 and defvar moved from loadhist.el. | |
8628 (symbol-file): Renamed from describe-function-find-file. | |
8629 Load fns-VERSION.el here. | |
8630 (describe-variable, describe-function-1): Use symbol-file. | |
8631 | |
8632 * textmodes/tex-mode.el (tex-generate-zap-file-name): | |
8633 Don't start the name with #. | |
8634 | |
8635 * ispell.el: Take out the eval-when's. | |
8636 | |
8637 1998-12-09 Peter Breton <pbreton@ne.mediaone.net> | |
8638 | |
8639 * dirtrack.el (dirtrack-directory-change-hook): New hook. | |
8640 (dirtrack): Run it. Make debug message more verbose. | |
8641 | |
8642 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
8643 | |
8644 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct | |
8645 name of the abbrev table, and provide support for XEmacs. | |
8646 (octave-xemacs-p): New variable. | |
8647 | |
8648 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us> | |
8649 | |
8650 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to | |
8651 exit, when mail-interactive is nil. | |
8652 | |
8653 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr> | |
8654 | |
8655 * files.el (after-find-file): Message fix. | |
8656 | |
8657 1998-12-09 Ken Stevens <stevens@kdstevens.com> | |
8658 | |
8659 * ispell.el (ispell-kill-ispell): Don't send newline after EOF. | |
8660 | |
8661 1998-12-09 Geoff Voelker <voelker@cs.washington.edu> | |
8662 | |
8663 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle | |
8664 filenames using backslashes. | |
8665 | |
8666 1998-12-09 Dave Love <fx@gnu.org> | |
8667 | |
8668 * browse-url.el (browse-url-mail): Call compose-mail-other-window | |
8669 with correct number of args. | |
8670 (browse-url-maybe-new-window): New arg. Callers changed. | |
8671 | |
8672 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing | |
8673 comment. | |
8674 | |
8675 1998-12-08 Geoff Voelker <voelker@cs.washington.edu> | |
8676 | |
8677 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional. | |
8678 | |
8679 1998-12-08 Markus Rost <rost@delysid.gnu.org> | |
8680 | |
8681 * vc.el (vc-rcs-release): Fix Type. | |
8682 (vc-sccs-release): Fix Type. | |
8683 (vc-cvs-release): Fix Type. | |
8684 | |
8685 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix | |
8686 arg work right. | |
8687 | |
8688 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple | |
8689 output of last undeleted message. | |
8690 | |
8691 1998-12-07 Geoff Voelker <voelker@cs.washington.edu> | |
8692 | |
8693 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src. | |
8694 (buffer-undo-list) [windows-nt]: Use different relative path. | |
8695 | |
8696 1998-12-07 Simon Marshall <simon@gnu.org> | |
8697 | |
8698 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types. | |
8699 | |
8700 1998-12-05 Markus Rost <rost@delysid.gnu.org> | |
8701 | |
8702 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler. | |
8703 | |
8704 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops. | |
8705 | |
8706 1998-12-04 Markus Rost <rost@delysid.gnu.org> | |
8707 | |
8708 * info.el (Info-menu): Don't return error if point is between menu | |
8709 header and first menu item. | |
8710 | |
8711 1998-12-04 Dave Love <fx@gnu.org> | |
8712 | |
8713 * help.el (describe-function-1): Fix description for alias. | |
8714 | |
8715 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org> | |
8716 | |
8717 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*- | |
8718 specifications from summary line. | |
8719 | |
8720 * rect.el (delete-whitespace-rectangle): Mark for autoload. | |
8721 (close-rectangle): Define alias only once in loaddefs.el. | |
8722 | |
8723 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org> | |
8724 | |
8725 * term/internal.el: Remove code which sets up a special syntax | |
8726 table for non-ASCII characters. | |
8727 | |
8728 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org> | |
8729 | |
8730 * dos-w32.el (direct-print-region-function): Try to ensure that | |
8731 printer-name is expanded to a file name on a local drive; | |
8732 sometimes printing a file loaded from a network volume fails. | |
8733 (direct-print-region-function): Add a function to | |
8734 write-region-annotate-functions to append a formfeed character to | |
8735 the region being printed, if the region doesn't end with a | |
8736 formfeed already. This avoids creating a second print job | |
8737 containing a blank page when print spooling is enabled on Windows. | |
8738 | |
8739 1998-12-02 Dave Love <fx@gnu.org> | |
8740 | |
8741 * help.el (help-make-xrefs): Use `info', not the non-autoloaded | |
8742 `Info-goto-node'. | |
8743 | |
8744 1998-12-02 Richard Stallman <rms@gnu.org> | |
8745 | |
8746 * help.el (temp-buffer-resize-mode): Doc fix. | |
8747 | |
8748 * cus-edit.el (custom-save-delete): Save point before | |
8749 reading a sexp, rather than backing up. | |
8750 | |
8751 * international/iso-transl.el: Fix previous change. | |
8752 | |
8753 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
8754 | |
8755 * vc.el (vc-dired-window-configuration, vc-ediff-windows, | |
8756 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode): | |
8757 Added defvars to suppress compilation warnings. | |
8758 | |
8759 1998-11-30 Ken Stevens <k.stevens@ieee.org> | |
8760 | |
8761 * ispell.el: Improved and fixed customize for variables: | |
8762 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp, | |
8763 ispell-dictionary-alist, ispell-skip-sgml. | |
8764 Improved and fixed comments in variables and messages for | |
8765 functions: ispell-help-in-bufferp, ispell-local-dictionary, | |
8766 ispell-menu-map, ispell-checking-message, ispell-parser, | |
8767 ispell-word, lookup-words, ispell-change-dictionary, ispell-region, | |
8768 ispell-begin-tex-skip-regexp, ispell-begin-skip-region, | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8769 ispell-comments-and-strings, ispell-continue, ispell-complete-word, |
25837 | 8770 ispell-message-text-end, ispell-add-per-file-word-list. |
8771 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding | |
8772 system is now required for all languages. Casechars improved for | |
8773 castellano, castellano8, and norsk dictionaries. Dictionary | |
8774 norsk7-tex added. Dictionary polish added. | |
8775 (ispell-dictionary-alist): Redefined at load-time to support | |
8776 dictionary changes. | |
8777 (ispell-menu-map): Redefined at load-time to support menu changes. | |
8778 (ispell-check-version): New alias for `check-ispell-version'. | |
8779 (ispell-parse-output): Fixed matching for ispell error messages. | |
8780 Correctly returns spelling suggestions in order generated by ispell | |
8781 process. | |
8782 (check-ispell-version): Ensure `case-fold-search' doesn't get | |
8783 redefined. | |
8784 (ispell-complete-word): Ensure `case-fold-search' doesn't get | |
8785 redefined. Fix bug that didn't respect case of word being completed. | |
8786 (ispell-init-process): Set process coding system to be compatible | |
8787 with emacs processes and the ispell process. | |
8788 (ispell-kill-ispell): Ensures ispell process has terminated before | |
8789 starting new process. This can otherwise confuse process filters | |
8790 and hang the ispell process. | |
8791 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved | |
8792 skipping support for sgml. | |
8793 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r | |
8794 which could cause `ispell-complete-word' to hang. | |
8795 (ispell-message): Improved message reference matching. Ensure | |
8796 `case-fold-search' doesn't get redefined. | |
8797 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't | |
8798 get redefined. Fixed bug in returning to nroff mode from tex mode. | |
8799 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't | |
8800 get redefined. | |
8801 | |
8802 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8803 | |
8804 * textmodes/flyspell.el (flyspell-check-word-p): | |
8805 Don't delay inside a kbd macro. | |
8806 | |
8807 * subr.el (make-local-hook): Return the hook variable. | |
8808 | |
8809 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
8810 | |
8811 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe): | |
8812 Use a timer instead of post-command-hook. | |
8813 (hscroll-timer): New variable. | |
8814 | |
8815 1998-11-30 Dave Love <fx@gnu.org> | |
8816 | |
8817 * help.el (help-xref-button): Do nothing if text already has the | |
8818 help-xref property. | |
8819 (describe-variable): Revert previous change to hyperlink to source. | |
8820 | |
8821 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8822 | |
8823 * bindings.el (features): Add `base64' to this list. | |
8824 | |
8825 * loadhist.el (symbol-file): Doc fix. | |
8826 | |
8827 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src. | |
8828 | |
8829 * files.el (hack-one-local-variable): Cope with non-file buffers. | |
8830 | |
8831 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8832 | |
8833 * help.el (describe-mode): Put major mode first. | |
8834 | |
8835 * calendar/appt.el (appt-disp-window): Use pop-to-buffer, | |
8836 to support special-display and same-window features. | |
8837 | |
8838 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8839 | |
8840 * simple.el (transpose-subr, transpose-subr-1): Rename variables | |
8841 bound in one function and used in the other. | |
8842 (transpose-subr-start1, transpose-subr-start2): Add defvars. | |
8843 (transpose-subr-end1, transpose-subr-end2): Add defvars. | |
8844 | |
8845 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8846 | |
8847 * autoinsert.el (auto-insert-alist): Use user-mail-address. | |
8848 | |
8849 1998-11-26 Kenichi Handa <handa@etl.go.jp> | |
8850 | |
8851 * international/ccl.el (ccl-dump-translate-character-const-tbl): | |
8852 Give format correct control string. | |
8853 | |
8854 * international/mule.el (define-translation-table): Fix bug of | |
8855 setting incorrect translation-table-id. If the first element of | |
8856 ARGS is a translation table, just register it. | |
8857 | |
8858 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist | |
8859 property. | |
8860 | |
8861 1998-11-24 Michael Ernst <mernst@alum.mit.edu> | |
8862 | |
8863 * thingatpt.el (thing-at-point-url-at-point): Don't use current | |
8864 syntax table to determine what is whitespace. | |
8865 | |
8866 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8867 | |
8868 * frame.el (frame-parameter): Doc fix. | |
8869 | |
8870 * textmodes/tex-mode.el (tex-feed-input): New function. | |
8871 (tex-define-common-keys): Add binding for C-c C-m. | |
8872 | |
8873 1998-11-23 Dave Love <fx@gnu.org> | |
8874 | |
8875 * progmodes/fortran.el: Various minor doc fixes. | |
8876 (fortran-font-lock-keywords-1): Add `d' to comment-chars. | |
8877 (fortran-with-subprogram-narrowing): New macro. | |
8878 (fortran-check-for-matching-do): Use it. | |
8879 (fortran-end-do): Use fortran-check-end-prog-re. | |
8880 (fortran-beginning-do, fortran-end-if, fortran-beginning-if) | |
8881 (fortran-calculate-indent, fortran-calculate-indent): Likewise. | |
8882 | |
8883 1998-11-23 Simon Marshall <simon@gnu.org> | |
8884 | |
8885 * font-lock.el (font-lock-defaults): Doc fix. | |
8886 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message. | |
8887 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword. | |
8888 | |
8889 * lazy-lock.el (lazy-lock-unstall): | |
8890 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message. | |
8891 | |
8892 * fast-lock.el (fast-lock-save-cache-1): | |
8893 (fast-lock-cache-data): Rewritten to use with-temp-message. | |
8894 | |
8895 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org> | |
8896 | |
8897 * mail/rmail.el (rmail-set-message-counters-counter): Detect | |
8898 messages that have been added with DOS line endings and convert | |
8899 the line endings for such messages. | |
8900 | |
8901 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
8902 | |
8903 * help.el: Add resizing of temporary buffers. | |
8904 (temp-buffer-resize-mode): New command and variable. | |
8905 (temp-buffer-max-height): New variable. | |
8906 (resize-temp-buffer-window): New function. | |
8907 | |
8908 * window.el (window-buffer-height): New function, split from | |
8909 shrink-window-if-larger-than-buffer. | |
8910 (shrink-window-if-larger-than-buffer): Use window-buffer-height. | |
8911 | |
8912 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8913 | |
8914 * frame.el (initial-frame-alist): Add defcustom. | |
8915 | |
8916 * shell.el (shell-prompt-pattern): Add defcustom. | |
8917 | |
8918 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
8919 | |
8920 * message.el (message-ignored-supersedes-headers): Remove | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
8921 NNTP-Posting-Date. |
25837 | 8922 |
8923 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8924 | |
8925 * help.el (describe-mode): Don't avoid loop indirecting thru | |
8926 value of INDICATOR. | |
8927 | |
8928 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8929 | |
8930 * help.el (describe-variable): Allow any variable with a defcustom, | |
8931 even if it is not a user variable. | |
8932 | |
8933 * mail/rmail.el (mail-unsent-separator): Additional alternative. | |
8934 | |
8935 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org> | |
8936 | |
8937 * gnus/nntp.el (nntp-request-group): Allow for failures when | |
8938 requesting a new group. | |
8939 | |
8940 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8941 | |
8942 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix. | |
8943 | |
8944 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
8945 | |
8946 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons. | |
8947 | |
8948 1998-11-19 Simon Marshall <simon@gnu.org> | |
8949 | |
8950 * subr.el (with-temp-message): New macro. | |
8951 | |
8952 * emacs-lisp/lisp-mode.el (with-temp-message): | |
8953 Add lisp-indent-function property. | |
8954 | |
8955 1998-11-18 Dave Love <fx@gnu.org> | |
8956 | |
8957 * progmodes/fortran.el (fortran-end-prog-re): Fix typo. | |
8958 | |
8959 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu> | |
8960 | |
8961 * emacs-lisp/bytecomp.el (temp-buffer-show-hook): | |
8962 This is not obsolete. | |
8963 | |
8964 1998-11-18 Kenichi Handa <handa@etl.go.jp> | |
8965 | |
8966 * textmodes/picture.el: Make a new map by make-keymap. | |
8967 (picture-desired-column): New variable. | |
8968 (picture-update-desired-column): New function. | |
8969 (picture-beginning-of-line): Set picture-desired-column to 0. | |
8970 (picture-end-of-line): Set picture-desired-column to the current | |
8971 column. | |
8972 (picture-forward-column): Pay attention to multi-column character. | |
8973 (picture-backward-column): Likewise. | |
8974 (picture-move-down): Likewise. | |
8975 (picture-move-up): Likewise. | |
8976 (picture-movement-nw): With prefix arg, move twice columns. | |
8977 (picture-movement-ne): Likewise. | |
8978 (picture-movement-sw): Likewise. | |
8979 (picture-movement-se): Likewise. | |
8980 (picture-set-motion): Handle two-column movements. | |
8981 (picture-move): Call picture-move-down or picture-forward-column | |
8982 only when necessary. | |
8983 (picture-insert): Pay attention to picture-desired-column. | |
8984 (picture-self-insert): Likewise. | |
8985 (picture-clear-column): Pay attention to multi-column character. | |
8986 (picture-mode): Modify doc-string for two-column movement. | |
8987 | |
8988 * rect.el (move-to-column-force): New function. | |
8989 (operate-on-rectangle): If coerce-tabs is non-nil, call | |
8990 move-to-column-force instead of move-to-column. | |
8991 (insert-rectangle): Call move-to-column-force instead of | |
8992 move-to-column. | |
8993 (open-rectangle-line): If begextra is not zero, call | |
8994 move-to-column-force. | |
8995 | |
8996 | |
8997 1998-11-16 Dave Love <fx@gnu.org> | |
8998 | |
8999 * textmodes/sgml-mode.el Require skeleton when compiling. | |
9000 (sgml-font-lock-keywords-1): Accept single-letter tags. | |
9001 (v2): Defvar free variable. | |
9002 | |
9003 1998-11-16 Sam Steingold <sds@goems.com> | |
9004 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
9005 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL |
25837 | 9006 macro, not ELisp one. |
9007 | |
9008 1998-11-16 Kenichi Handa <handa@etl.go.jp> | |
9009 | |
9010 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte | |
9011 characters to symbol. | |
9012 | |
9013 * language/japan-util.el (japanese-zenkaku-region): New optional | |
9014 arg KATAKANA-ONLY. | |
9015 | |
9016 1998-11-16 Kenichi Handa <handa@etl.go.jp> | |
9017 | |
9018 * international/mule.el | |
9019 (after-insert-file-set-buffer-file-coding-system): If the buffer | |
9020 is changed to unibyte, return inserted bytes. | |
9021 | |
9022 * tar-mode.el (tar-header-block-tokenize): Decode codes of file | |
9023 and link names if necessary. | |
9024 (tar-header-block-summarize): Handle the case that file or link | |
9025 names are multibyte. | |
9026 (tar-summarize-buffer): At first set the current buffer unibyte, | |
9027 then if there are multibyte file names, change it to multibyte. | |
9028 (tar-mode): Get char position from tar-header-offset. | |
9029 (tar-extract): Avoid multibyte<->unibyte conversion in | |
9030 insert-buffer-subsring by setting both buffers unibyte | |
9031 temporarily. | |
9032 (tar-copy): Set the buffer unibyte while doing a work. Write | |
9033 without code conversion. | |
9034 (tar-expunge): Set the buffer unibyte while doing a work. | |
9035 (tar-alter-one-field): Likewise. | |
9036 (tar-clear-modification-flags): Compare byte position with | |
9037 tar-header-offset. | |
9038 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in | |
9039 insert-buffer-subsring by setting both buffers unibyte | |
9040 temporarily. Pay attention to multibyteness while updating the | |
9041 descriptor-line. | |
9042 (tar-mode-write-file): Write without code conversion. | |
9043 | |
9044 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
9045 | |
9046 * nngateway.el: Require cl. | |
9047 | |
9048 1998-11-15 Dave Love <fx@gnu.org> | |
9049 | |
9050 * progmodes/fortran.el: Fix previous change: | |
9051 (fortran-end-prog-re1): Changed. | |
9052 (fortran-check-end-prog-re): New function. | |
9053 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it. | |
9054 | |
9055 1998-11-13 Tom Breton <tob@world.std.com> | |
9056 | |
9057 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of | |
9058 GNU Emacs. | |
9059 | |
9060 1998-11-13 Carsten Dominik <cd@delysid.gnu.org> | |
9061 | |
9062 * textmodes/reftex.el: (reftex-finding-files): Group documentation | |
9063 fixed. | |
9064 (reftex-toc-toggle-file-boundary, | |
9065 reftex-toc-toggle-labels, | |
9066 reftex-toc-toggle-context,reftex-find-start-point): New functions. | |
9067 (reftex-toc-include-labels, reftex-toc-include-context, | |
9068 reftex-toc-include-file-boundaries, | |
9069 reftex-toc-keep-other-windows): New options. | |
9070 (reftex-use-text-after-label-as-context): Option removed. | |
9071 (reftex-extract-bib-entries): Protect use in non-latex | |
9072 buffers. | |
9073 (reftex-toc-visit-location): Renamed from | |
9074 `reftex-toc-visit-line'. | |
9075 (reftex-latin1-to-ascii): Works now with and without Mule. | |
9076 (reftex-truncate): Removed special stuff for Emacs 20.2. | |
9077 (reftex-get-offset): Made more general. | |
9078 (reftex-show-label-location): Renamed from | |
9079 `reftex-select-label-callback'. | |
9080 (reftex-pop-to-label): Function removed (using | |
9081 `reftex-show-label-location' instead. | |
9082 (reftex-insert-docstruct): Renamed from | |
9083 `reftex-make-and-insert-label-list'. Function args changed. | |
9084 (reftex-toc): Now uses `reftex-insert-docstruct' and | |
9085 `reftex-find-start-point'. | |
9086 (reftex-select-item): Use `reftex-find-start-point'. | |
9087 (reftex-toc-visit-line): Can display labels and file | |
9088 boundaries. | |
9089 (reftex-TeX-master-file): `(TeX-master-file)' protected. | |
9090 | |
9091 1998-11-12 Sam Steingold <sds@goems.com> | |
9092 | |
9093 * browse-url.el (browse-url): Handle the case when | |
9094 `browse-url-browser-function' is a lambda list. | |
9095 | |
9096 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org> | |
9097 | |
9098 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the | |
9099 version string. | |
9100 * loadhist.el (symbol-file): Likewise | |
9101 | |
9102 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM> | |
9103 | |
9104 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling. | |
9105 | |
9106 1998-11-11 Sam Steingold <sds@goems.com> | |
9107 | |
9108 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call | |
9109 `run-lisp' instead of signalling an error. | |
9110 | |
9111 1998-11-11 Karl Heuer <kwzh@gnu.org> | |
9112 | |
9113 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change. | |
9114 | |
9115 1998-11-11 Richard Stallman <rms@gnu.org> | |
9116 | |
9117 * vc-hooks.el (vc-toggle-read-only): Doc fix. | |
9118 | |
9119 1998-11-11 Per Starback <starback@update.uu.se> | |
9120 | |
9121 * ispell.el: (ispell-dictionary-alist-2): Removed svenska, | |
9122 renamed svenska8 to svenska, and fixed and extended CASECHARS | |
9123 for it. | |
9124 | |
9125 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org> | |
9126 | |
9127 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode | |
9128 handling if setpagedevice is not available. | |
9129 (ps-begin-file): Fix typo. | |
9130 | |
9131 1998-11-11 Kenichi Handa <handa@etl.go.jp> | |
9132 | |
9133 * international/mule-util.el (compose-chars-component): Signal | |
9134 error if CH is a rule-based composition character. | |
9135 (compose-chars): Signal error if an already compsed character is | |
9136 going to be composed by rule-base. | |
9137 | |
9138 * term/x-win.el: If a resolved ASCII font name doesn't conform to | |
9139 full XLFD, don't try to get information of WEIGHT and SLANT from | |
9140 that font name. | |
9141 | |
9142 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk> | |
9143 | |
9144 * dos-w32.el (set-default-process-coding-system): Use function on | |
9145 before-init-hook to set default-process-coding-system based on | |
9146 enable-multibyte-characters. | |
9147 | |
9148 * term/w32-win.el ([language-change]): For now ignore | |
9149 keyboard language-change events. | |
9150 | |
9151 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org> | |
9152 | |
9153 * ediff-util.el (ediff-make-temp-file): Run the prefix through | |
9154 convert-standard-file-name, but leave the results of | |
9155 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2 | |
9156 characters if the original name already exists, or has a special | |
9157 handler. | |
9158 | |
9159 1998-11-10 Karl Heuer <kwzh@gnu.org> | |
9160 | |
9161 * international/iso-insert.el: Delete autoload cookies. | |
9162 | |
9163 * international/iso-transl.el: Add autoload cookies. | |
9164 | |
9165 1998-11-10 Richard Stallman <rms@gnu.org> | |
9166 | |
9167 * ispell.el (ispell-get-coding-system): Default to iso-latin-1. | |
9168 (ispell-process-line): Don't treat multibyte | |
9169 | |
9170 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk> | |
9171 | |
9172 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call | |
9173 setpagedevice to specify the page size if setpagedevice is | |
9174 available. This is necessary to select the correct paper tray on | |
9175 Level 2 printers with multiple paper sizes available. | |
9176 | |
9177 (ps-begin-file): Cope with font names that contain spaces, and | |
9178 call BeginDoc in a BeginSetup/EndSetup block. | |
9179 | |
9180 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org> | |
9181 | |
9182 * loadup.el (buffer-undo-list): Run fns-VERSION.el through | |
9183 convert-standard-filename. | |
9184 | |
9185 * loadhist.el (symbol-file): Run fns-VERSION.el through | |
9186 convert-standard-filename. | |
9187 | |
9188 1998-11-06 Richard Stallman <rms@gnu.org> | |
9189 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
9190 * textmodes/texinfmt.el (texinfo-format-scan): |
25837 | 9191 Detect the case of two @-commands in a row; process just the first. |
9192 (texinfo-append-refill): If line has a @c, insert the @refill | |
9193 before it. | |
9194 (texinfo-format-refill): Return with point where the @refill was. | |
9195 | |
9196 * files.el (hack-local-variables): Test local-enable-local-variables. | |
9197 (hack-local-variables-prop-line): Likewise. | |
9198 (set-auto-mode): Don't test local-enable-local-variables here. | |
9199 (enable-local-variables): Doc fix. | |
9200 (local-enable-local-variables): Doc fix. | |
9201 (normal-mode): Doc fix. | |
9202 | |
9203 1998-11-06 Karl Heuer <kwzh@gnu.org> | |
9204 | |
9205 * emacs-lisp/find-func.el (find-variable-noselect): Autoload. | |
9206 | |
9207 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM> | |
9208 | |
9209 * simple.el (line-number-mode): Doc fix. | |
9210 | |
9211 1998-11-06 Kenichi Handa <handa@etl.go.jp> | |
9212 | |
9213 * international/fontset.el (create-fontset-from-fontset-spec): | |
9214 Give correct arg to `error'. | |
9215 | |
9216 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org> | |
9217 | |
9218 * textmodes/sgml-mode.el (html-mode): Doc fix. | |
9219 (sgml-name-8bit-mode): Fix missing format character in message string. | |
9220 | |
9221 1998-11-05 Karl Heuer <kwzh@gnu.org> | |
9222 | |
9223 * mail/sendmail.el (sendmail-send-it): Check for failure. | |
9224 | |
9225 1998-11-05 Richard Stallman <rms@gnu.org> | |
9226 | |
9227 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6. | |
9228 | |
9229 * rect.el (delete-whitespace-rectangle): close-rectangle renamed. | |
9230 (close-rectangle): Define as alias. | |
9231 | |
9232 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu> | |
9233 | |
9234 * textmodes/tex-mode.el (tex-start-shell): Track directory changes. | |
9235 | |
9236 1998-11-05 Dave Love <fx@gnu.org> | |
9237 | |
9238 * help.el (describe-variable): Don't quote link to source. | |
9239 | |
9240 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu> | |
9241 | |
9242 * gud.el (gud-common-init): Use pop-to-buffer. | |
9243 (same-window-regexps): Add an element that matches all gud buffers. | |
9244 | |
9245 1998-11-04 Jason Rumney <jasonr@altavista.net> | |
9246 | |
9247 * term/w32-win.el (x-get-selection-value): Alias to | |
9248 x-cut-buffer-or-selection-value. | |
9249 (w32-standard-fontset-spec): New variable. | |
9250 (w32-create-initial-fontsets, mouse-set-font): Check whether | |
9251 new-fontset is available. | |
9252 (w32-use-w32-font-dialog): Enable use of set-variable. | |
9253 | |
9254 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de> | |
9255 | |
9256 * vc.el (with-vc-file, edit-vc-file): New macros. | |
9257 | |
9258 1998-11-04 Kenichi Handa <handa@etl.go.jp> | |
9259 | |
9260 * international/quail.el (quail-show-guidance-buf): Call | |
9261 set-minibuffer-window to set minibuffer window of the current | |
9262 frame correctly. | |
9263 | |
9264 1998-11-03 Theodore Jump <tjump@tertius.com> | |
9265 | |
9266 * term/w32-win.el: Require fontset. | |
9267 | |
9268 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org> | |
9269 | |
9270 * faces.el (set-face-font): Call resolve-fontset-name on w32. | |
9271 (set-face-font-auto): Ditto. | |
9272 | |
9273 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org> | |
9274 | |
9275 * mouse.el (mouse-drag-region): Fix typo. | |
9276 | |
9277 1998-11-02 Dave Love <fx@gnu.org> | |
9278 | |
9279 * progmodes/fortran.el Fix for fontification of strings lost somehow: | |
9280 (fortran-fontify-string): New function. | |
9281 (fortran-font-lock-keywords-1): Use it. | |
9282 | |
9283 1998-11-02 Markus Rost <rost@delysid.gnu.org> | |
9284 | |
9285 * comint.el (comint-file-name-quote-list): Doc fix. | |
9286 | |
9287 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9288 | |
9289 * loadup.el (buffer-undo-list): Write fns-VERSION.el into | |
9290 build directory, not source directory. | |
9291 | |
9292 * mouse.el (mouse-drag-region): Fake up a mouse-motion event | |
9293 if we did not get one for the final move. | |
9294 | |
9295 1998-11-01 Dave Love <fx@gnu.org> | |
9296 | |
9297 * goto-addr.el (goto-address-at-point, goto-address-at-mouse): | |
9298 Don't funcall browse-url-browser-function. | |
9299 | |
9300 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url): | |
9301 Don't funcall browse-url-browser-function. | |
9302 | |
9303 * fortran.el (fortran-end-prog-re1): Fix the regexp. | |
9304 | |
9305 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9306 | |
9307 * files.el (revert-buffer): Doc fix. | |
9308 | |
9309 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9310 | |
9311 * textmodes/tex-mode.el (tex-start-options-string): | |
9312 Quote the backslashes with more backslashes. | |
9313 | |
9314 1998-10-31 Dave Love <fx@gnu.org> | |
9315 | |
9316 * webjump.el (webjump-sample-sites): Fix Lisp archive site. | |
9317 (webjump): Don't funcall browse-url-browser-function. | |
9318 | |
9319 1998-10-30 Kenichi Handa <handa@etl.go.jp> | |
9320 | |
9321 * international/quail.el (quail-start-translation): Handle | |
9322 switching of the frame in read-key-sequence. | |
9323 (quail-start-conversion): Likewise. | |
9324 (quail-show-guidance-buf): Detach quail-guidance-buf from any | |
9325 windows before setting an appropriate window for it. | |
9326 (quail-hide-guidance-buf): Use window-minibuffer-p. Set | |
9327 quail-guidance-win to nil. | |
9328 (quail-update-guidance): If quail-guidance-buf is not in the | |
9329 selected frame, call quail-show-guidance-buf again. | |
9330 | |
9331 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no> | |
9332 | |
9333 * progmodes/pascal.el (pascal-mode): | |
9334 `blink-matching-paren-dont-ignore-comments' set to t. | |
9335 | |
9336 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
9337 | |
9338 * calendar/cal-menu.el (cal-menu-update): Fix menu wording. | |
9339 | |
9340 1998-10-30 Dave Love <fx@gnu.org> | |
9341 | |
9342 * vc.el (vc-backend-merge-news): Check for "P" output. | |
9343 | |
9344 * help.el (describe-variable): Hyperlink the definition. | |
9345 | |
9346 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org> | |
9347 | |
9348 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp. | |
9349 (sh-set-shell): Likewise. | |
9350 | |
9351 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected. | |
9352 | |
9353 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type. | |
9354 (edebug-on-error): Fix customize type to match that of | |
9355 debug-on-error. | |
9356 | |
9357 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type. | |
9358 | |
9359 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use | |
9360 report-emacs-bug-address instead of undefined bug-gnu-emacs. | |
9361 | |
9362 * international/mule-cmds.el (select-message-coding-system): Doc | |
9363 fix. | |
9364 | |
9365 * international/mule-diag.el (describe-coding-system): Describe | |
9366 all flags. | |
9367 | |
9368 * mail/sendmail.el (sendmail-coding-system, | |
9369 default-sendmail-coding-system): Doc fix. | |
9370 | |
9371 * simple.el (shell-command-on-region): Doc fix. | |
9372 | |
9373 * loadup.el: Write fns-*.el in current directory instead of | |
9374 data-directory since no installation directory exists yet. Mark | |
9375 buffer unmodified afterwards. | |
9376 | |
9377 * loadhist.el (symbol-file): Load fns-*.el from exec-directory | |
9378 instead of data-directory since it is architecture dependent. | |
9379 (load-history-loaded): Update doc string. | |
9380 | |
9381 1998-10-29 Geoff Voelker <voelker@cs.washington.edu> | |
9382 | |
9383 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC | |
9384 path as a default directory when canonicalizing names. | |
9385 | |
9386 * w32-fns.el: Remove a dangling reference to a directory on the | |
9387 build machine. | |
9388 | |
9389 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9390 | |
9391 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and | |
9392 namespace related keywords such as `class', `body', `private', | |
9393 `variable', `namespace eval', etc. | |
9394 (tcl-imenu-generic-expression): Handle itcl body and class definitions. | |
9395 (tcl-mode): Added ":" as a word constituent to the syntax-alist of | |
9396 imenu and font-lock so that searches for \sw would find words | |
9397 containing colons. | |
9398 | |
9399 * progmodes/etags.el (initialize-new-tags-table): | |
9400 Do not alter find-tag-marker-ring and tags-location-ring. | |
9401 | |
9402 1998-10-27 Geoff Voelker <voelker@cs.washington.edu> | |
9403 | |
9404 * term/w32-win.el: Require fontset. | |
9405 (w32-init-fontsets): New function (code from x-win.el). | |
9406 | |
9407 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
9408 | |
9409 * cal-x.el (diary-frame-parameters, calendar-frame-parameters, | |
9410 calendar-and-diary-frame-parameters): Add title parameter. | |
9411 | |
9412 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9413 | |
9414 * completion.el (dynamic-completion-mode): New function to enable | |
9415 the mode. (Just loading the file now does not change anything.) | |
9416 | |
9417 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
9418 | |
9419 * ps-print.el: User option for multibyte buffer handling and doc fix. | |
9420 (ps-multibyte-buffer): New user option. | |
9421 (ps-setup): Print new user option. | |
9422 (ps-print-quote): New fun. | |
9423 (ps-color-p, ps-mule-font-info-database-latin): New var. | |
9424 (ps-default-color, ps-mule-font-info-database) | |
9425 (ps-mule-font-info-database-ps-bdf): Adjust initialization. | |
9426 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file) | |
9427 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate): | |
9428 Little code improvement. | |
9429 (ps-mule-initialize): Initialize ps-mule-font-info-database. | |
9430 (ps-print-prologue-header, ps-font-family, ps-font-size) | |
9431 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size) | |
9432 (ps-build-face-reference, ps-mule-font-info-database-bdf) | |
9433 (ps-mule-external-libraries, ps-mule-init-external-library) | |
9434 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string): | |
9435 Doc fix. | |
9436 (ps-print-version): New version number (4.1.1) and doc fix. | |
9437 (ps-print-prologue-header): New user option. | |
9438 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter): | |
9439 Conditional compilation for GNU Emacs and emacsens. | |
9440 (ps-generate-postscript-with-faces): Skip invisible text better. | |
9441 (ps-setup): Print new user option. | |
9442 (ps-print-preprint): Check if input file name exists and is unwritable. | |
9443 (ps-begin-file): Adjust PostScript prologue header for duplex printers | |
9444 and insert user PostScript prologue header comments. | |
9445 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding): | |
9446 New funs. | |
9447 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated. | |
9448 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue): | |
9449 PostScript programming normalization. | |
9450 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font) | |
9451 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string) | |
9452 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar) | |
9453 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font) | |
9454 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool): | |
9455 Programming style normalization. | |
9456 | |
9457 1998-10-26 Kenichi Handa <handa@etl.go.jp> | |
9458 | |
9459 * ps-print.el: To make it work also on Emacs 20.2 and the earlier | |
9460 version, check the value of mule-version. | |
9461 | |
9462 * international/mule-util.el (compose-region): Insert then delete | |
9463 to preserve markers. | |
9464 (decompose-region): Use search-forward for efficiency. | |
9465 | |
9466 * language/chinese.el (pre-write-encode-hz): Cancel previous | |
9467 change, use generate-new-buffer instead of get-buffer-create. | |
9468 * language/devan-util.el | |
9469 (in-is13194-devanagari-pre-write-conversion): Likewise. | |
9470 * language/thai-util.el (thai-pre-write-conversion): Likewise. | |
9471 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise. | |
9472 * language/viet-util.el (viqr-pre-write-conversion): Likewise. | |
9473 | |
9474 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9475 | |
9476 * mail/rmailsum.el (rmail-message-subject-p): | |
9477 Handle message whose header has not been reformatted. | |
9478 | |
9479 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir. | |
9480 | |
9481 1998-10-25 Jason Rumney <jasonr@altavista.net> | |
9482 | |
9483 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist): | |
9484 New variables. | |
9485 (mouse-set-font): Use font menus instead of dialog according to | |
9486 w32-use-w32-font-dialog. | |
9487 | |
9488 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
9489 | |
9490 * calendar/calendar.el (calendar-day-name-array): Add doc string | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
9491 correctly! |
25837 | 9492 (calendar-month-name-array): Add doc string correctly! |
9493 | |
9494 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9495 | |
9496 * net-utils.el (whois-get-tld): Rewrite not to use `do'. | |
9497 | |
9498 1998-10-21 Markus Rost <rost@delysid.gnu.org> | |
9499 | |
9500 * lisp/info.el (Info-next-menu-item): Stay on top of node. | |
9501 | |
9502 * mail/rmailout.el (rmail-output): Insert newline only if necessary. | |
9503 | |
9504 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case. | |
9505 | |
9506 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines. | |
9507 | |
9508 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org> | |
9509 | |
9510 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*". | |
9511 | |
9512 1998-10-21 Karl Heuer <kwzh@gnu.org> | |
9513 | |
9514 * emacs-lisp/profile.el (profile-timer-program): Var deleted. | |
9515 (profile-timer-process, profile-temp-result-, profile-time): Likewise. | |
9516 (profile-filter, profile-reset-timer): Functions deleted. | |
9517 (profile-check-zero-init-times, profile-get-time): Likewise. | |
9518 (profile-find-function, profile-quit): Likewise. | |
9519 (profile-distinct, profile-call-stack, profile-last-time): New vars. | |
9520 (profile-time-list, profile-init-list): Doc fix. | |
9521 (profile-functions): Simplify. | |
9522 (profile-print): Use float. Make output include space separators. | |
9523 (profile-add-time): New helper function. | |
9524 (profile-function-prolog): Renamed from profile-start-function. | |
9525 Handle profile-distinct. | |
9526 (profile-function-epilog): Renamed from profile-update-function. | |
9527 Handle profile-distinct. | |
9528 (profile-a-function): If the function to be profiled is an | |
9529 autoload form, load it. If it's lazy-loaded, fetch it. | |
9530 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it. | |
9531 (profile-restore-fun): Arg FUN is now a function symbol, as was | |
9532 documented, rather than a one-element list. | |
9533 (profile-finish): Call profile-restore-fun properly. | |
9534 | |
9535 1998-10-21 Kenichi Handa <handa@etl.go.jp> | |
9536 | |
9537 * international/characters.el: Setup charset property | |
9538 nospace-between-words. | |
9539 | |
9540 * international/mule-cmds.el (get-charset-property): If CHARSET is | |
9541 composition, return nil. | |
9542 (put-charset-property): If CHARSET is composition, do nothing. | |
9543 | |
9544 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer. | |
9545 * language/devan-util.el | |
9546 (in-is13194-devanagari-pre-write-conversion): Likewise. | |
9547 * language/thai-util.el (thai-pre-write-conversion): Likewise. | |
9548 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise. | |
9549 * language/viet-util.el (viqr-pre-write-conversion): Likewise. | |
9550 | |
9551 * textmodes/fill.el (sentence-end-without-period): New variable. | |
9552 (canonically-space-region): Pay attention to | |
9553 sentence-end-without-period. | |
9554 (fill-find-break-point): The first argument CHARSET deleted. | |
9555 Caller changed. | |
9556 (fill-region-as-paragraph): Pay attention to charset property | |
9557 nospace-between-words and text property nospace-between-words. | |
9558 | |
9559 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9560 | |
9561 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for | |
9562 an unrecognized shell. | |
9563 | |
9564 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org> | |
9565 | |
9566 * desktop.el (desktop-save): Include minor modes symbolically. | |
9567 (desktop-create-buffer): Turn on all minor modes in `mim'. | |
9568 | |
9569 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9570 | |
9571 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files. | |
9572 (sh-font-lock-keywords): Handle rpm and rpm2. | |
9573 (sh-ancestor-alist): Handle rpm. | |
9574 | |
9575 * files.el (auto-mode-alist): Recognize .rpm files. | |
9576 Also .spec and .mspec files. | |
9577 | |
9578 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org> | |
9579 | |
9580 * faces.el (frame-set-background-mode): Enable the function for | |
9581 MSDOS frames. | |
9582 | |
9583 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
9584 | |
9585 * calendar/calendar.el (calendar-day-name-array): Add doc string. | |
9586 (calendar-month-name-array): Add doc string. | |
9587 | |
9588 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9589 | |
9590 * simple.el (kill-ring-max): Increased to 60. | |
9591 | |
9592 1998-10-17 Kenichi Handa <handa@etl.go.jp> | |
9593 | |
9594 * international/characters.el: Setup auto-fill-chars. | |
9595 | |
9596 * international/kinsoku.el (kinsoku): Check the variable | |
9597 enable-kinsoku. | |
9598 | |
9599 * simple.el (do-auto-fill): Don't check kinsoku-enable here. | |
9600 Don't call kinsoku directly, intead call fill-find-break-point. | |
9601 | |
9602 * textmodes/fill.el: Setup `fill-find-break-point-function' | |
9603 property to character sets which require `kinsoku' processing for | |
9604 filling. | |
9605 (fill-find-break-point): New function. | |
9606 (fill-region-as-paragraph): Don't check kinsoku-enable here. | |
9607 Don't call kinsoku directly, intead call fill-find-break-point. | |
9608 | |
9609 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9610 | |
9611 * faces.el (modify-face-read-string): Return (nil) for "none". | |
9612 (modify-face): Don't get error if (nil) is the argument. | |
9613 (face-try-color-list): Don't check whether nil is a valid color. | |
9614 | |
9615 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9616 | |
9617 * emacs-lisp/bytecomp.el (byte-recompile-directory): | |
9618 Print message about each directory, even in batch mode. | |
9619 | |
9620 * gnus/nntp.el: Require `cl' before using nnoo-declare. | |
9621 | |
9622 * ps-print.el (ps-mule-chars-in-string): No need to use sref. | |
9623 (ps-mule-string-char): No need to use sref. | |
9624 (ps-mule-next-index): No need to use sref. | |
9625 | |
9626 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved. | |
9627 | |
9628 * files.el (revert-buffer-internal-hook): Add defvar. | |
9629 | |
9630 * arc-mode.el (archive-mode): Locally set file-precious-flag. | |
9631 | |
9632 * tar-mode.el (tar-mode): Locally set file-precious-flag. | |
9633 | |
9634 1998-10-16 Markus Rost <rost@delysid.gnu.org> | |
9635 | |
9636 * international/mule-cmds.el (default-input-method): Fix custom type. | |
9637 | |
9638 * net-utils.el (whois-server-list): Fix customization type. | |
9639 | |
9640 * shell.el (shell-input-autoexpand): Fix customization group. | |
9641 | |
9642 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9643 | |
9644 * repeat.el (repeat): Handle keyboard macros properly. | |
9645 Handle new prefix arg after self-insert command. | |
9646 | |
9647 * repeat.el: Don't include cl even at compile time. | |
9648 (repeat): Avoid using `loop'. | |
9649 | |
9650 * simple.el (shell-command-on-region): Doc fix. | |
9651 (next-history-element): Special error message if no default. | |
9652 | |
9653 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9654 | |
9655 * ps-print.el (ps-print-buffer): Doc fix. | |
9656 (ps-despool): Likewise. | |
9657 | |
9658 * arc-mode.el (arc-mode): Provide arc-mode. | |
9659 | |
9660 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9661 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
9662 * ps-print.el (ps-print-buffer): Doc fix. |
25837 | 9663 |
9664 1998-10-14 Dave Love <fx@gnu.org> | |
9665 | |
9666 * ange-ftp.el (ange-ftp-read-passwd): Function deleted. | |
9667 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd. | |
9668 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise. | |
9669 | |
9670 * progmodes/fortran.el (fortran-mode-map): Change "Join | |
9671 Continuation Line" to "Join Line". | |
9672 (fortran-font-lock-keywords-1): Add "cycle", "exit". | |
9673 | |
9674 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE> | |
9675 | |
9676 * progmodes/fortran.el (fortran-join-line): Use | |
9677 `delete-indentation' instead of issuing an error message if not on | |
9678 a continuation line. Provide for joining several lines using | |
9679 prefix arg. | |
9680 | |
9681 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org> | |
9682 | |
9683 * term/pc-win.el (msdos-color-values): New variable. | |
9684 (x-color-values): New function, emulates its namesake from | |
9685 src/xfns.c. | |
9686 (msdos-bg-mode): Add all dark colors to those which return | |
9687 "dark". | |
9688 | |
9689 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9690 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
9691 * replace.el (keep-lines, flush-lines, how-many): |
25837 | 9692 Don't ignore case if arg has upper case letters. |
9693 | |
9694 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch> | |
9695 | |
9696 * progmodes/vhdl-mode.el | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
9697 (vhdl-add-index-menu): Reverse order in imenu-generic-expression. |
25837 | 9698 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec) |
9699 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map) | |
9700 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop) | |
9701 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo). | |
9702 (vhdl-when): Fix indentation problem. | |
9703 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev. | |
9704 (vhdl-get-port, vhdl-get-generic): Bug fix in template. | |
9705 (vhdl-hooked-abbrev): Bug fix in hooked abbrev. | |
9706 | |
9707 1998-10-13 Geoff Voelker <voelker@cs.washington.edu> | |
9708 | |
9709 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable. | |
9710 (ls-lisp-insert-directory): Renamed from insert-directory. | |
9711 (insert-directory): New function. | |
9712 | |
9713 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9714 | |
9715 * simple.el (completion-fixup-function): Variable deleted. | |
9716 (completion-setup-function): Delete code for completion-fixup-function. | |
9717 * emacs-lisp/lisp.el (lisp-complete-symbol): | |
9718 Don't bind completion-fixup-function. | |
9719 | |
9720 * files.el (find-file-wildcards): New option. | |
9721 (find-file-noselect): Handle wild cards, if enabled. | |
9722 (file-expand-wildcards): New function. | |
9723 | |
9724 * simple.el (set-fill-column): Doc fix. | |
9725 | |
9726 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
9727 | |
9728 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search. | |
9729 | |
9730 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org> | |
9731 | |
9732 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only): | |
9733 Move declaration before first use. | |
9734 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr, | |
9735 hif-math, hif-factor): Rename token to hif-token and token-list to | |
9736 hif-token-list. | |
9737 (hif-token, hif-token-list): Declare them. | |
9738 (hif-find-ifdef-block): Return cons of top and bottom point | |
9739 instead of setting dynamically bound variables. | |
9740 (hide-ifdef-block, show-ifdef-block): Use return value of | |
9741 hif-find-ifdef-block. | |
9742 | |
9743 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9744 | |
9745 * subr.el (read-passwd): Use clear-this-command-keys. | |
9746 | |
9747 * telnet.el (telnet-initial-filter): Use clear-this-command-keys. | |
9748 | |
9749 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read | |
9750 and ...-for-write. | |
9751 | |
9752 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk> | |
9753 | |
9754 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected | |
9755 responses to GROUP command, since this may be called from a timer | |
9756 with quit inhibited. | |
9757 | |
9758 1998-10-12 Kenichi Handa <handa@etl.go.jp> | |
9759 | |
9760 * international/ccl.el (ccl-compile-if): If there's no false-cmds, | |
9761 set unconditional-jump to nil. | |
9762 (ccl-compile-read-multibyte-character): Return nil. | |
9763 (ccl-compile-write-multibyte-character): Likewise. | |
9764 (ccl-compile-translate-character): Likewise | |
9765 (ccl-compile-map-multiple): Likewise. | |
9766 (ccl-compile-map-single): Likewise. | |
9767 | |
9768 * international/kinsoku.el: Add coding tag. | |
9769 (kinsoku-bol): Remove superfluous TAB in a string. | |
9770 | |
9771 * international/mule-cmds.el (find-coding-systems-for-charsets): | |
9772 Delete `composition' (if any) from CHARSETS. | |
9773 | |
9774 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9775 | |
9776 * international/mule-cmds.el (setup-specified-language-environment): | |
9777 Add apropos-inhibit property. | |
9778 (describe-specified-language-support): Likewise. | |
9779 | |
9780 1998-10-11 Kenichi HANDA <handa@etl.go.jp> | |
9781 | |
9782 * international/mule.el (make-coding-system): Create -with-esc | |
9783 variant coding system. | |
9784 | |
9785 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu> | |
9786 | |
9787 * progmodes/etags.el (tags-loop-revert-buffers): New variable. | |
9788 (next-file): Optionally offer to revert a file's buffer, | |
9789 if it has an existing buffer but the file has changed. | |
9790 | |
9791 * info.el (Info-insert-dir): Detect and report problems | |
9792 in input files, such as "No Top node". Return with point | |
9793 at the beginning of the text. | |
9794 (Info-find-node): Reinsert the code to handle files | |
9795 with no tags table; it was deleted by mistake. | |
9796 | |
9797 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu> | |
9798 | |
9799 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let | |
9800 texinfo-find-higher-level-node repeatedly find the same node. | |
9801 (texinfo-find-higher-level-node): Doc fix. | |
9802 | |
9803 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9804 | |
9805 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string. | |
9806 (smtpmail-address-buffer): Add defvar. | |
9807 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise. | |
9808 | |
9809 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved. | |
9810 | |
9811 * ffap.el (ffap-machine-p-local): Fix editing error. | |
9812 | |
9813 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9814 | |
9815 * faces.el (frame-set-background-mode): | |
9816 Don't do anythung for text-only or MSDOS frame. | |
9817 | |
9818 1998-10-08 Kenichi Handa <handa@etl.go.jp> | |
9819 | |
9820 * international/quail.el (quail-defrule): New optional arg APPEND. | |
9821 (quail-defrule-internal): Fix bug of handling the argument APPEND. | |
9822 | |
9823 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9824 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
9825 * gnus/pop3.el (pop3-open-server): |
25837 | 9826 Set process-coding-system-alist around open-network-stream. |
9827 | |
9828 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu> | |
9829 | |
9830 * files.el (save-buffer): Doc fix. | |
9831 | |
9832 1998-10-07 Karl Heuer <kwzh@gnu.org> | |
9833 | |
9834 * emacs-lisp/profile.el (profile-fix-fun): If already profiled, | |
9835 return DEF unchanged, not nil. Simplify. | |
9836 | |
9837 1998-10-06 Geoff Voelker <voelker@cs.washington.edu> | |
9838 | |
9839 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp. | |
9840 | |
9841 1998-10-06 Peter Breton <pbreton@ne.mediaone.net> | |
9842 | |
9843 * generic.el (generic-mode-with-type): Added hooks for generic-modes. | |
9844 | |
9845 * net-utils.el (ftp, nslookup): Require comint. | |
9846 (network-service-connection): Likewise. | |
9847 (whois-server-name): Defaults to whois.arin.net | |
9848 (whois-server-list, whois-server-tld, whois-guess-server): New var. | |
9849 (whois): Tries to guess the appropriate top-level domain server. | |
9850 (whois-get-tld): New function. | |
9851 | |
9852 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs. | |
9853 (dirtrack-debug-toggle): Added this function. | |
9854 | |
9855 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
9856 | |
9857 * files.el (find-file-noselect): Switch to the correct buffer | |
9858 before checking find-file-literally, and allow non-nil non-t | |
9859 rawfile params. | |
9860 | |
9861 1998-10-06 Karl Heuer <kwzh@gnu.org> | |
9862 | |
9863 * midnight.el (clean-buffer-list): Add autoload cookie. | |
9864 | |
9865 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from | |
9866 no-autosave. | |
9867 * tar-mode.el (tar-mode-revert): Likewise. | |
9868 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed | |
9869 from ediff-arrange-autosave-in-merge-jobs. Callers changed. | |
9870 * gnus/message.el (message-auto-save-directory): Renamed from | |
9871 message-autosave-directory. All references changed. | |
9872 | |
9873 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us> | |
9874 | |
9875 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary | |
9876 string. Expose mime stuff while searching. | |
9877 | |
9878 1998-10-06 Richard Stallman <rms@gnu.org> | |
9879 | |
9880 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result. | |
9881 | |
9882 * replace.el (perform-replace): Position point properly | |
9883 before and after the recursive edit of C-r. | |
9884 | |
9885 * progmodes/etags.el (tags-reset-tags-tables): Properly | |
9886 find the markers in the old rings that are being discarded. | |
9887 | |
9888 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
9889 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
9890 * apropos.el (apropos-print): Control invalid characters. |
25837 | 9891 |
9892 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X): | |
9893 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid | |
9894 confusing customize. | |
9895 | |
9896 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org> | |
9897 | |
9898 * generic-x.el (bat-generic-mode): Fix regexps for keywords and | |
9899 built-in commands. Add more built-in commands and fix face names. | |
9900 | |
9901 1998-10-05 Simon Marshall <simon@gnu.org> | |
9902 | |
9903 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar. | |
9904 | |
9905 1998-10-04 Eric Ludlam <zappo@gnu.org> | |
9906 | |
9907 * speedbar.el (speedbar-initial-expansion-list-name): Remove | |
9908 customization since it is not useful in this case. | |
9909 (speedbar-frame-mode): Check if cfx or cfy is a list, and make | |
9910 sure it gets evalled to a number. Also verify that set-frame-name | |
9911 fn exists before calling it. | |
9912 | |
9913 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine): | |
9914 Protect a `forward-sexp' call which could fail, and improved regex | |
9915 for ie, and eg abbreviations. | |
9916 | |
9917 1998-10-02 Noah Friedman <friedman@splode.com> | |
9918 | |
9919 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not | |
9920 send-string. | |
9921 (rlogin-send-Ctrl-D): Here also. | |
9922 (rlogin-send-Ctrl-Z): Here also. | |
9923 (rlogin-send-Ctrl-backslash): Here also. | |
9924 | |
9925 1998-10-02 Dave Love <fx@gnu.org> | |
9926 | |
9927 * outline.el (hide-region-body): Bind | |
9928 outline-view-change-hook to nil while making repeated calls to | |
9929 outline-flag-region. Run it once at the end. | |
9930 (hide-other, hide-sublevels, show-children): Likewise. | |
9931 | |
9932 * info-look.el: Remove duplicate scheme-mode entry. | |
9933 (info-lookup-make-completions): When looking for entries, check | |
9934 that `item' isn't null or "Menu". | |
9935 | |
9936 1998-10-01 Karl Heuer <kwzh@gnu.org> | |
9937 | |
9938 * net-utils.el: Don't require ffap. | |
9939 (net-utils-machine-at-point, net-utils-url-at-point): New functions. | |
9940 (ping, nslookup-host, finger, network-connection-to-service): Use them. | |
9941 | |
9942 1998-09-30 Richard Stallman <rms@gnu.org> | |
9943 | |
9944 * ispell.el (check-ispell-version): No need to bind default-major-mode. | |
9945 | |
9946 * imenu.el (imenu--generic-function): Sort each submenu by position. | |
9947 (imenu--sort-by-position): New function. | |
9948 | |
9949 * cus-edit.el (Custom-mode-menu): Fix info node name. | |
9950 (customize group): Fix info node name. | |
9951 | |
9952 * mail/mailalias.el (build-mail-aliases): Don't allow | |
9953 a newline in the alias name. Don't define an alias | |
9954 if the definition would be empty. | |
9955 | |
9956 * which-func.el (which-func-mode-global): Make :set function | |
9957 more reliable. | |
9958 | |
9959 * custom.el (custom-set-variables): Load the requests first, | |
9960 then check the symbol's `set' function. | |
9961 | |
9962 * ffap.el: Doc fixes. | |
9963 | |
9964 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
9965 | |
9966 * gnus.el: (gnus-valid-select-methods): Fix type. | |
9967 * gnus-sum.el (gnus-summary-respool-default-method): Fix type. | |
9968 * gnus-score.el (gnus-orphan-score): Fix type. | |
9969 (gnus-score-default-header, gnus-score-default-type): Fix type. | |
9970 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type. | |
9971 (gnus-saved-headers): Fix type. | |
9972 | |
9973 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix): | |
9974 Avoid nil value of `two-lines-citation-part'. | |
9975 | |
9976 1998-09-30 Roman Belenov <roman@nstl.nnov.ru> | |
9977 | |
9978 * which-func.el (which-function): Handle case when | |
9979 (car imenu--index-alist) is nil. | |
9980 | |
9981 1998-09-29 Dave Love <fx@gnu.org> | |
9982 | |
9983 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from | |
9984 bzip2 args. | |
9985 | |
9986 1998-09-29 Simon Marshall <simon@gnu.org> | |
9987 | |
9988 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and | |
9989 comint-exec-hook. | |
9990 | |
9991 1998-09-29 Stephen Eglen <stephen@gnu.org> | |
9992 | |
9993 * info-look.el: Add support for Octave. | |
9994 | |
9995 1998-09-28 Carsten Dominik <cd@delysid.gnu.org> | |
9996 | |
9997 * textmodes/reftex.el (reftex-finding-files): New customize group. | |
9998 (reftex-texpath-environment-variables, | |
9999 reftex-use-external-file-finders, reftex-external-file-finders, | |
10000 reftex-search-unrecursed-path-first): New options. | |
10001 (reftex-process-string, reftex-find-file-externally): New | |
10002 functions. | |
10003 (reftex-access-search-path): Execute shell commands to find the | |
10004 search path. | |
10005 (reftex-toggle-auto-view-crossref): When turning on, make sure | |
10006 `reftex-auto-view-crossref' becomes non-nil. | |
10007 (reftex-abbrev-regexp): Constant removed. | |
10008 (reftex-convert-string): Abbrev regexp calculated locally. | |
10009 | |
10010 1998-09-28 Dave Love <fx@gnu.org> | |
10011 | |
10012 * progmodes/fortran.el: Don't call regexp-opt when deriving | |
10013 font-lock patterns with keywords that aren't all literal. | |
10014 | |
10015 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
10016 | |
10017 * octave-inf.el (inferior-octave-prompt): Also match prompts of | |
10018 the form `octave.bin:1>' which come from using precopiled binary | |
10019 versions. | |
10020 | |
10021 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu> | |
10022 | |
10023 * help.el (help-for-help): Use %THIS-KEY%. | |
10024 (help-quit): Add doc. | |
10025 | |
10026 * help-macro.el (make-help-screen): Keep HELP-TEXT | |
10027 in a separate function definition, not in the help command FNAME. | |
10028 Replace %THIS-KEY% with the key sequence that ran FNAME. | |
10029 | |
10030 1998-09-25 Richard Stallman <rms@gnu.org> | |
10031 | |
10032 * textmodes/texinfo.el (texinfo-show-structure): | |
10033 Bind inhibit-read-only. | |
10034 | |
10035 * isearch.el (isearch-search-and-update): Properly | |
10036 handle upper case letters in the reverse-search special case. | |
10037 | |
10038 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
10039 | |
10040 * gnus.el: Extend the list of autoloaded functions. | |
10041 | |
10042 * gnus/gnus-start.el (gnus-check-first-time-used): Change current | |
10043 buffer before creating help group. (from Gnus v5.6.43, fix by | |
10044 1998-08-20 Per Starback <starback@update.uu.se>) | |
10045 | |
10046 * gnus-util.el (gnus-output-to-rmail): Adjust to | |
10047 `rmail-output-to-rmail-file'. | |
10048 | |
10049 1998-09-25 Karl Heuer <kwzh@gnu.org> | |
10050 | |
10051 * hexl.el (hexl-mode-map): More of previous change. | |
10052 | |
10053 * textmodes/tex-mode.el (tex-run-command): Doc fix. | |
10054 (tex-start-tex): Don't use tex-start-options-string in star case. | |
10055 Quote file name in star case as well as in non-star. | |
10056 Add blank and quoting of option string here. | |
10057 (tex-start-options-string): Not here. | |
10058 | |
10059 1998-09-23 Karl Heuer <kwzh@gnu.org> | |
10060 | |
10061 * term.el (term-delimiter-argument-list): Doc fix. | |
10062 (term-emulate-terminal): Escape literal semicolon. | |
10063 * progmodes/asm-mode.el (asm-mode): Doc fix. | |
10064 (asm-comment-char): Escape literal semicolon. | |
10065 * emulation/viper-cmd.el (viper-movement-commands): Likewise. | |
10066 | |
10067 1998-09-23 Richard Stallman <rms@gnu.org> | |
10068 | |
10069 * hexl.el (hexl-mode-map): Don't override all ESC bindings, | |
10070 only those that normally modify the buffer. | |
10071 | |
10072 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer | |
10073 over again. | |
10074 | |
10075 1998-09-23 E. Jay Berkenbilt <ejb@ql.org> | |
10076 | |
10077 * ispell.el (check-ispell-version): Ensure same buffer is current | |
10078 when let-binding of case-fold-search ends. | |
10079 | |
10080 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
10081 | |
10082 * ps-print.el: Skip invisible overlay. | |
10083 Test for set-buffer-multibyte rather than using mule-version. | |
10084 (ps-print-version): New version number (4.1) and doc fix. | |
10085 (ps-generate-postscript-with-faces): Skip invisible overlay. | |
10086 | |
10087 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu> | |
10088 | |
10089 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes. | |
10090 | |
10091 1998-09-22 Kenichi Handa <handa@etl.go.jp> | |
10092 | |
10093 * international/quail.el (quail-update-guidance): Check for the | |
10094 return value of (quail-guidance) fixed. | |
10095 (quail-update-translation): Bind quail-current-str locally when it | |
10096 calls quail-update-guidance. | |
10097 (quail-update-translation): If input-method-exit-on-first-char is | |
10098 non-nil, terminate translation only when the current input method | |
10099 is simple. | |
10100 | |
10101 1998-09-22 Paul Eggert <eggert@twinsun.com> | |
10102 | |
10103 * startup.el (locale-translation-file-name): Prefer X-related names | |
10104 to the name used by GNU/Linux sans X. Set to nil if no file found. | |
10105 (command-line): Use locale-translation-file-name if it is not nil, | |
10106 instead of testing for its existence again. | |
10107 regexp-quote the ctype before using it in a regexp. | |
10108 Allow a colon to appear after the ctype in the aliases file, | |
10109 as is done in X11R6.4. | |
10110 | |
10111 1998-09-21 Richard Stallman <rms@gnu.org> | |
10112 | |
10113 * mail/rmail.el (rmail-resend): Work properly if invoked from summary. | |
10114 | |
10115 * calendar/appt.el (appt-interval): Variable deleted. | |
10116 (appt-check): For minutes in between appt-display-interval times, | |
10117 do check, but don't display anything except an updated mode line. | |
10118 Count against appt-display-interval based on minutes since | |
10119 first display of this appointment, not based on time of day. | |
10120 If appt-display-mode-line, force mode line redisplay | |
10121 whenever appt-mode-string has changed. | |
10122 (appt-add, appt-delete): Add autoload cookies. | |
10123 (appt-check): Catch errors from calling `diary'. | |
10124 (appt-max-time): Renamed from max-time. | |
10125 (appt-now-displayed, appt-display-count): New variables. | |
10126 (appt-timer): Don't create one if we already have one. | |
10127 | |
10128 * textmodes/tex-mode.el (tex-compilation-parse-errors): | |
10129 More general code to use the source buffer instead of the zap file. | |
10130 | |
10131 * hilit-chg.el (highlight-compare-with-file): Renamed from | |
10132 compare-with-file. | |
10133 | |
10134 * loadhist.el (load-history-loaded): New variable. | |
10135 (symbol-file): Load etc/fns-VERSION.el if that has not been done. | |
10136 | |
10137 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it. | |
10138 | |
10139 * emacs-lisp/find-func.el (find-function-search-for-symbol): | |
10140 Fix error messages. | |
10141 | |
10142 1998-09-21 Markus Armbruster <armbru@pond.sub.org> | |
10143 | |
10144 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an | |
10145 Emacs frame. | |
10146 | |
10147 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
10148 | |
10149 * mail/rmail.el (rmail-decode-babyl-format): Recognize both | |
10150 `undecided' and `undecided-unix'. | |
10151 | |
10152 1998-09-21 Dave Love <fx@gnu.org> | |
10153 | |
10154 * help.el (help-make-xrefs): Fix typo affecting Info references. | |
10155 | |
10156 * subr.el (remove-hook): Check list values to avoid errors. | |
10157 | |
10158 1998-09-18 Noah Friedman <friedman@splode.com> | |
10159 | |
10160 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and | |
10161 store string in eldoc-last-message without consing a new string. | |
10162 Rearrange logic from nested if's into cond's. | |
10163 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string. | |
10164 Do not print message; just return string. | |
10165 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring. | |
10166 Do not print message; just return string. | |
10167 Cache that string in eldoc-last-data. | |
10168 (eldoc-last-data): Make into a vector. | |
10169 (eldoc-get-fnsym-args-string): Use new data form of structure. | |
10170 (eldoc-get-var-docstring): Here also. | |
10171 (eldoc-last-data-store): New function. | |
10172 (eldoc-get-fnsym-args-string): Use it. | |
10173 (eldoc-get-var-docstring): Here also. | |
10174 (eldoc-docstring-first-line): Minimize interim string consing. | |
10175 Call substitute-command-keys on the result. | |
10176 (eldoc-print-var-docstrings, eldoc-print-docstring, | |
10177 eldoc-docstring-message): Functions removed. | |
10178 (eldoc-docstring-format-sym-doc): New function, functionality | |
10179 ripped out of eldoc-docstring-message. | |
10180 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it. | |
10181 | |
10182 1998-09-18 Kenichi Handa <handa@etl.go.jp> | |
10183 | |
10184 * international/mule.el (make-coding-system): Doc-string modified. | |
10185 | |
10186 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org> | |
10187 | |
10188 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type. | |
10189 | |
10190 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix | |
10191 customize type. | |
10192 | |
10193 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize | |
10194 type. | |
10195 | |
10196 * progmodes/compile.el (compilation-error-screen-columns): New | |
10197 variable. | |
10198 (compilation-next-error-locus): Use it to decide whether to use | |
10199 forward-char or move-to-column. | |
10200 | |
10201 * mail/rmail.el (rmail-movemail-program): Fix customize type. | |
10202 | |
10203 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage, | |
10204 feedmail-fiddle-plex-user-list, | |
10205 feedmail-spray-address-fiddle-plex-list, | |
10206 feedmail-prompt-before-queue-user-alist, | |
10207 feedmail-prompt-before-queue-help-supplement, | |
10208 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug, | |
10209 feedmail-queue-alternative-mail-header-separator): Fix customize | |
10210 type. | |
10211 | |
10212 * startup.el (site-run-file): Fix customize type. | |
10213 | |
10214 * speedbar.el (speedbar-initial-expansion-list-name): Fix | |
10215 customize type. | |
10216 | |
10217 * shell.el (shell-input-autoexpand): Fix customize type. | |
10218 | |
10219 * ps-print.el (ps-font-info-database): Add missing dots in value. | |
10220 Improve layout of customize type. | |
10221 | |
10222 * net-utils.el (traceroute-program-options, ping-program-options, | |
10223 ipconfig-program-options, netstat-program-options, | |
10224 arp-program-options, route-program-options, | |
10225 nslookup-program-options, ftp-program-options): Fix customize | |
10226 type. | |
10227 | |
10228 * midnight.el (clean-buffer-list-kill-regexps, | |
10229 clean-buffer-list-kill-buffer-names, | |
10230 clean-buffer-list-kill-never-buffer-names, | |
10231 clean-buffer-list-kill-never-regexps): Fix customize type. | |
10232 | |
10233 * man.el (Man-init-defvars): Avoid trailing nil on | |
10234 Man-filter-list. | |
10235 | |
10236 * lpr.el (printer-name): Fix customize type. | |
10237 | |
10238 1998-09-16 Kenichi Handa <handa@etl.go.jp> | |
10239 | |
10240 * international/mule-cmds.el (reset-language-environment): Call | |
10241 update-coding-systems-internal. | |
10242 | |
10243 * international/mule-conf.el: Call update-coding-systems-internal | |
10244 at the tail. | |
10245 | |
10246 1998-09-14 Dave Love <fx@gnu.org> | |
10247 | |
10248 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't | |
10249 use the menu-enable properties, pending doing it correctly and | |
10250 acceptably fast. | |
10251 | |
10252 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text. | |
10253 | |
10254 1998-09-13 Dave Love <d.love@dl.ac.uk> | |
10255 | |
10256 * progmodes/hideshow.el (hs-grok-mode-type): Check | |
10257 comment-{start,end} non-nil as well as bound. Report an error if | |
10258 we can't grok the mode. | |
10259 | |
10260 1998-09-13 Richard Stallman <rms@gnu.org> | |
10261 | |
10262 * simple.el (blink-matching-open): Don't log paren matching | |
10263 messages in *Messages*. | |
10264 | |
10265 1998-09-12 Richard Stallman <rms@gnu.org> | |
10266 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
10267 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up): |
25837 | 10268 Set point-before-scroll at end even if there was an error. |
10269 | |
10270 * ange-ftp.el (ange-ftp-insert-file-contents): | |
10271 Use binary mode for dumb-unix hosts as for unix hosts. | |
10272 (ange-ftp-copy-file-internal): Likewise. | |
10273 | |
10274 * textmodes/paragraphs.el (use-hard-newlines): Doc fix. | |
10275 | |
10276 * emacs-lisp/pp.el: Doc fixes. | |
10277 | |
10278 * wid-edit.el (widget-menu-max-shortcuts): New variable. | |
10279 (widget-choose): Don't use single-char shortcuts if # items | |
10280 exceeds that many. Use minibuffer instead. | |
10281 | |
10282 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
10283 | |
10284 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg. | |
10285 | |
10286 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org> | |
10287 | |
10288 * speedbar.el (speedbar-frame-mode): Do not set frame position if | |
10289 in terminal mode. | |
10290 | |
10291 1998-09-10 Noah Friedman <friedman@splode.com> | |
10292 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
10293 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from |
25837 | 10294 defcustom declaration. It's wreaking too much havoc with XEmacs |
10295 and older versions of Emacs, which share this code. | |
10296 | |
10297 * type-break.el (type-break-mode): Here also. | |
10298 | |
10299 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg | |
10300 `t' to add-hook also to modify the new local value. | |
10301 | |
10302 1998-09-10 Dave Love <fx@gnu.org> | |
10303 | |
10304 * vc.el (vc-insert-headers): Doc fix. | |
10305 | |
10306 1998-09-10 Richard Stallman <rms@gnu.org> | |
10307 | |
10308 * textmodes/flyspell.el (flyspell-mode-on): Make the | |
10309 ispell-... variables permanent locals. | |
10310 (flyspell-mode-off): Add autoload cookie. | |
10311 | |
10312 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host, | |
10313 do use binary mode, just as for `unix'. | |
10314 (ange-ftp-host-type): If HOST is nil, return `unix'. | |
10315 | |
10316 * dired.el (dired-mark-files-containing-regexp): | |
10317 Don't scan directories. Ignore non-readable files. | |
10318 | |
10319 * progmodes/compile.el (compilation-error-regexp-alist): | |
10320 Fix previous change: allow . and _ in command name. | |
10321 | |
10322 * dired.el (dired-mark-files-containing-regexp): Fix previous change. | |
10323 | |
10324 * uncompress.el (uncompress-while-visiting): | |
10325 Use just the car of what find-operation-coding-system returns. | |
10326 | |
10327 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename. | |
10328 | |
10329 * shell.el (shell-file-name-quote-list): Add # to the value. | |
10330 | |
10331 1998-09-10 E. Jay Berkenbilt <ejb@ql.org> | |
10332 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
10333 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook |
25837 | 10334 to make killing of ispell process work even if |
10335 kill-all-local-variables has been run. | |
10336 | |
10337 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
10338 | |
10339 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite | |
10340 loop when sexp entry ends at end of file with no newline. | |
10341 | |
10342 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de> | |
10343 | |
10344 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved) | |
10345 (Custom-reset-standard): Fix menu inconsistency. | |
10346 | |
10347 * mail/feedmail.el (feedmail-from-line): Allow t. | |
10348 (feedmail-message-id-suffix): Allow nil. | |
10349 | |
10350 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): | |
10351 Simplify. Make prefix arg work right. | |
10352 | |
10353 1998-09-09 Dave Love <fx@gnu.org> | |
10354 | |
10355 * textmodes/paragraphs.el (use-hard-newlines): Doc fix. | |
10356 | |
10357 * help.el (help-xref-interned): Bind inhibit-read-only when inserting. | |
10358 | |
10359 1998-09-08 Dave Love <fx@gnu.org> | |
10360 | |
10361 * add-log.el (change-log-font-lock-keywords): Do parenthesized | |
10362 stuff only after file names or at start of line. Allow parens | |
10363 around e-mail, as well as angles. | |
10364 | |
10365 * gnus/nnweb.el (require): Wrap requirement of w3 and url in | |
10366 ignore-errors too, eval'd when compile. Require w3 stuff at load | |
10367 time for nicer failure if it's not available. | |
10368 | |
10369 1998-09-07 Geoff Voelker <voelker@cs.washington.edu> | |
10370 | |
10371 * comint.el (comint-arguments): Ignore backslashes when using | |
10372 w32 shells that expect backslashes as the directory separator. | |
10373 | |
10374 1998-09-04 Kenichi Handa <handa@etl.go.jp> | |
10375 | |
10376 * international/fontset.el (resolved-ascii-font): New variable. | |
10377 (x-complement-fontset-spec): By side effect, set | |
10378 `resolved-ascii-font' to the resolved name of ASCII font." | |
10379 (create-fontset-from-fontset-spec): Don't get a value for | |
10380 resolved-ascii-font from the list full-fontlist. It is set by | |
10381 x-complement-fontset-spec now. | |
10382 | |
10383 * ps-print.el: To make it work also on Emacs 20.2 and the earlier | |
10384 version, check the value of mule-version. | |
10385 | |
10386 1998-09-07 Carsten Dominik <cd@delysid.gnu.org> | |
10387 | |
10388 * textmodes/reftex.el (reftex-view-crossref): Split up into | |
10389 several functions. No longer moves to find a macro. | |
10390 (reftex-view-cr-cite, reftex-view-cr-ref, | |
10391 reftex-end-of-bib-entry): New functions. | |
10392 (reftex-auto-view-crossref): New value `window' allowed. | |
10393 (reftex-view-crossref-when-idle): Process new `window' option in | |
10394 (reftex-translate-to-ascii-function): New default. | |
10395 (reftex-label-illegal-re): Default changed, removed Latin1. | |
10396 (reftex-latin1-to-ascii): New function. | |
10397 (reftex-what-environment): Check for section regexp before use. | |
10398 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with | |
10399 absolute path names. | |
10400 (reftex-TeX-master-file): Changed sequence of file checks. | |
10401 (reftex-do-citation): bibview cache only with RefTeX mode on. | |
10402 | |
10403 1998-09-06 Richard Stallman <rms@gnu.org> | |
10404 | |
10405 * progmodes/compile.el (compilation-error-regexp-alist): | |
10406 In first pattern (GNU utilities and other things), | |
10407 allow a space after the optional program name at the beginning. | |
10408 | |
10409 * mail/mail-hist.el (mail-hist-current-header-contents): | |
10410 Fix previous change: use mail-header-end. | |
10411 | |
10412 1998-09-06 Bill Richter <richter@math.nwu.edu> | |
10413 | |
10414 * international/ccl.el: Doc fixes. | |
10415 * international/encoded-kb.el: Doc fixes. | |
10416 * international/fontset.el: Doc fixes. | |
10417 * international/kinsoku.el: Doc fixes. | |
10418 * international/kkc.el: Doc fixes. | |
10419 * international/mule-cmds.el: Doc fixes. | |
10420 * international/mule-conf.el: Doc fixes. | |
10421 * international/mule-util.el: Doc fixes. | |
10422 * international/mule.el: Doc fixes. | |
10423 | |
10424 1998-09-05 Eric Ludlam <zappo@gnu.org> | |
10425 | |
10426 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function. | |
10427 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'. | |
10428 (checkdoc-this-string-valid-engine): Permit ? as terminating | |
10429 punctuation for first line sentence breaking. | |
10430 (checkdoc-this-string-valid): When converting a comment into a doc | |
10431 string, make sure " chars are \". | |
10432 (checkdoc-sentencespace-region-engine): Only do double space check | |
10433 if based on the variable `sentence-end-double-space' | |
10434 (checkdoc-this-string-valid-engine): ? ends valid sentence. | |
10435 (checkdoc-proper-noun-region-engine): Exclude items in URLs | |
10436 | |
10437 1998-09-04 Richard Stallman <rms@gnu.org> | |
10438 | |
10439 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): | |
10440 Recognize define-skeleton as a function definer. | |
10441 | |
10442 * cus-edit.el (customize-option): Refuse to customize | |
10443 a variable that has no defcustom. But if variable is autoloaded, | |
10444 first try to load the library that defines it. | |
10445 | |
10446 * international/iso-insert.el: Use `string' before calling `insert' | |
10447 so that in multibyte buffers we insert multibyte chars. | |
10448 | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
10449 * dired.el (dired-mark-files-containing-regexp): |
25837 | 10450 Don't use find-file; instead, insert the file in a temp buffer. |
10451 | |
10452 * textmodes/tex-mode.el (tex-start-options-string): New option. | |
10453 (tex-start-tex): Use that variable. | |
10454 | |
10455 * mail/rmail.el (rmail-primary-inbox-list): Make the initial | |
10456 value in the `repeat' alternative a list. | |
10457 | |
10458 * textmodes/fill.el (fill-individual-paragraphs): Before deleting | |
10459 the inserted newline, verify that one was really inserted. | |
10460 | |
10461 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode | |
10462 remains on or remains off. | |
10463 (flyspell-multi-language-p): Default changed to nil. | |
10464 | |
10465 * progmodes/ada-mode.el (ada-search-ignore-string-comment): | |
10466 In "found in comment" case, don't beginning-of-line after forward-line. | |
10467 | |
10468 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): | |
10469 If the function definition is not a lambda, return original FORM | |
10470 with no error. | |
10471 | |
10472 1998-09-04 Peter Breton <pbreton@ne.mediaone.net> | |
10473 | |
10474 * net-utils.el (netstat-program-options): Changed from nil to "-a" | |
10475 so that by default netstat shows all network connections. | |
10476 | |
10477 1998-09-04 Bob Weiner <weiner@altrasoft.com> | |
10478 | |
10479 * international/quail.el: Doc fixes. | |
10480 | |
10481 * info.el (info): Don't add parens if FILE already has them. | |
10482 | |
10483 1998-09-04 Geoff Voelker <voelker@cs.washington.edu> | |
10484 | |
10485 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word | |
10486 on extension lines. | |
10487 | |
10488 1998-09-03 Geoff Voelker <voelker@cs.washington.edu> | |
10489 | |
10490 * w32-fns.el (w32-shell-dos-semantics): New function. | |
10491 | |
10492 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu> | |
10493 | |
10494 * international/quail.el (quail-choose-completion-string): Store | |
26318
94efc4f944a4
progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
Sam Steingold <sds@gnu.org>
parents:
26295
diff
changeset
|
10495 completion `choice' in `quail-current-str'; don't insert it. |
25837 | 10496 |
10497 1998-09-02 Kenichi Handa <handa@etl.go.jp> | |
10498 | |
10499 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH | |
10500 argument to ps-mule-generate-bitmap-font. | |
10501 | |
10502 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII | |
10503 entry and change Latin-1 entry in the default value. | |
10504 (ps-mule-font-info-database-ps-bdf): New variable. | |
10505 (ccl-encode-ethio-unicode): Bug of CCL code fixed. | |
10506 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function | |
10507 registerd in FONT-SPEC. | |
10508 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct | |
10509 charcter width of bitmap fonts. | |
10510 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript | |
10511 procedure NF. | |
10512 (ps-begin-file): Output PostScript code for setting | |
10513 SpaceWidthRatio. | |
10514 (ps-plot-region): Use line-beginning-position to get a position of | |
10515 the beginning of the current line. | |
10516 | |
10517 * international/mule-cmds.el (register-input-method): Doc-string | |
10518 modified. | |
10519 | |
10520 1998-09-01 Dave Love <fx@gnu.org> | |
10521 | |
10522 * international/mule-cmds.el (current-language-environment): Fix | |
10523 setter function. | |
10524 | |
10525 1998-09-01 Simon Marshall <simon@gnu.org> | |
10526 | |
10527 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite. | |
10528 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately. | |
10529 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class | |
10530 names with font-lock-type-face. Fontify type specs, etc., with | |
10531 font-lock-keyword-face. | |
10532 | |
10533 1998-08-31 Kenichi Handa <handa@etl.go.jp> | |
10534 | |
10535 * international/fontset.el (x-complement-fontset-spec): If ASCII | |
10536 font is specified in FONTLIST, don't substitute it for the | |
10537 resolved name. | |
10538 | |
10539 1998-08-31 Paul Eggert <eggert@twinsun.com> | |
10540 | |
10541 * international/mule.el (charset-description): Doc fix. | |
10542 | |
10543 * language/chinese.el, language/cyrillic.el, language/czech.el, | |
10544 language/devanagari.el, language/ethiopic.el, | |
10545 language/european.el, language/hebrew.el, language/indian.el, | |
10546 language/japanese.el, language/korean.el, language/lao.el, | |
10547 language/slovak.el, language/thai.el, language/tibetan.el, | |
10548 language/vietnamese.el: | |
10549 Add coding: local variable, to avoid bootstrapping problem | |
10550 if you need to recompile all the Lisp files using interpreted code. | |
10551 | |
10552 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
10553 | |
10554 * cal-china.el (chinese-year-cache): Change range of years from | |
10555 1989-2000 to 1990-2010. | |
10556 | |
10557 1998-08-29 Dave Love <d.love@dl.ac.uk> | |
10558 | |
10559 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie. | |
10560 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined. | |
10561 | |
10562 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
10563 | |
10564 * ps-print.el (ps-print-control-characters): Doc-string modified. | |
10565 (ps-output-string-prim): Comment format changed. | |
10566 (ps-do-despool): Indentation of source code changed. | |
10567 | |
10568 1998-08-28 Kenichi Handa <handa@etl.go.jp> | |
10569 | |
10570 * subr.el (sref): Make it an alias of aref. Make the | |
10571 byte-compiler warn that it is obsolete. | |
10572 (char-bytes): Make the byte-compiler warn that it is obsolete. | |
10573 | |
10574 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment): | |
10575 Calculate the total bytes using position-bytes instead of | |
10576 char-bytes. | |
10577 | |
10578 1998-08-27 Karl Heuer <kwzh@gnu.org> | |
10579 | |
10580 * snmp-mode.el: New file. | |
10581 * files.el (auto-mode-alist): Add snmp-mode patterns. | |
10582 | |
10583 1998-08-27 Karl Eichwalder <ke@suse.de> | |
10584 | |
10585 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'. | |
10586 | |
10587 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu> | |
10588 | |
10589 * calendar/diary-lib.el (diary-block): Doc fix.. | |
10590 * calendar/calendar.el (diary-list-include-blanks): Doc fix.. | |
10591 | |
10592 1998-08-27 Richard Stallman <rms@gnu.org> | |
10593 | |
10594 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp. | |
10595 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space. | |
10596 Clear appt-mode-string if we don't put something in it. | |
10597 | |
10598 1998-08-27 Dave Love <fx@gnu.org> | |
10599 | |
10600 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking | |
10601 dired-local-variables-file for dired-x. | |
10602 | |
10603 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look | |
10604 for compressed library files too. | |
10605 | |
10606 1998-08-26 Kenichi Handa <handa@etl.go.jp> | |
10607 | |
10608 * language/european.el ("Latin-1"): Modify `documentation' key value. | |
10609 ("Latin-2"): Likewise. | |
10610 | |
10611 1998-08-26 Karl Heuer <kwzh@gnu.org> | |
10612 | |
10613 * dired-x.el (dired-guess-shell-alist-default): Fix regexp. | |
10614 | |
10615 1998-08-26 Albert L. Ting <alt@artisan.com> | |
10616 | |
10617 * mail/mail-hist.el (mail-hist-current-header-name): Fix test. | |
10618 (mail-hist-current-header-contents): Use mail-text-start. | |
10619 | |
10620 1998-08-26 Richard Stallman <rms@gnu.org> | |
10621 | |
10622 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2. | |
10623 (customize-changed-options-previous-release): New variable. | |
10624 (customize-changed-options): Use that variable as default arg. | |
10625 | |
10626 1998-08-26 Karl Eichwalder <ke@suse.de> | |
10627 | |
10628 * midnight.el: Require `timer' not only when compiling. | |
10629 | |
10630 1998-08-26 Per Starback <starback@update.uu.se> | |
10631 | |
10632 * gnus/gnus-start.el (gnus-check-first-time-used): Change current | |
10633 buffer before creating help group. | |
10634 | |
10635 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org> | |
10636 | |
10637 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind | |
10638 coding-system-for-write before saving. | |
10639 | |
10640 1998-08-26 Kevin Rodgers <kevinr@ihs.com> | |
10641 | |
10642 * isearch.el (isearch-forward): Doc fix. | |
10643 | |
10644 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org> | |
10645 | |
10646 * emacs-lisp/find-func.el: Fix :version tags to have a string | |
10647 value, not a float. | |
10648 | |
10649 * cus-dep.el: Fix typo in output. | |
10650 | |
10651 1998-08-25 Dave Love <fx@gnu.org> | |
10652 | |
10653 * repeat.el (repeat): Doc fix. | |
10654 [From rms:] | |
10655 (repeat-previous-repeated-command): New variable. | |
10656 (repeat): Check for real-last-command being null or repeat. Set | |
10657 repeat-previous-repeated-command. | |
10658 | |
10659 * browse-url.el (browse-url-netscape): Fix format for hex escapes. | |
10660 | |
10661 1998-08-25 Kenichi Handa <handa@etl.go.jp> | |
10662 | |
10663 * gnus/message.el (message-send-mail-with-sendmail): Bind | |
10664 coding-system-for-write by the return value of | |
10665 select-message-coding-system. | |
10666 (message-send-mail-with-qmail): Likewise. | |
10667 | |
10668 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org> | |
10669 | |
10670 * emacs-lisp/autoload.el: Fix doc-string-elt property on | |
10671 define-derived-mode. | |
10672 | |
10673 * files.el (file-name-invalid-regexp): | |
10674 Fix regex for ms-dos without long file names. | |
10675 | |
10676 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br> | |
10677 | |
10678 * ps-print.el: Multi-byte buffer handling. | |
10679 (ps-print-version): New version number (4.0) and doc fix. | |
10680 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional | |
10681 compilation for GNU Emacs and emacsens. | |
10682 (ps-generate-postscript-with-faces): Force invisible text to be | |
10683 visible. | |
10684 (dos-ps-printer): New var to avoid compilation gripes. | |
10685 | |
10686 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
10687 | |
10688 * ps-print.el (ps-mule-plot-string): Pay attention to the case | |
10689 that no more characters can't be printed in the current line. | |
10690 | |
10691 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
10692 | |
10693 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be | |
10694 greater than TO. | |
10695 | |
10696 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
10697 | |
10698 * ps-print.el: Add codes to make ps-print.el work also on Emacs | |
10699 20.2 and the earlier version. | |
10700 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2. | |
10701 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise. | |
10702 (ps-mule-find-wrappoint): Likewise. | |
10703 (ps-mule-generate-font): Change `X' to `x' in format | |
10704 control-string. | |
10705 (ps-generate): Call ps-mule-begin before calling ps-begin-job. | |
10706 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and | |
10707 `restore' form procedures `BC' and `EC'. | |
10708 | |
10709 1998-08-24 Kenichi Handa <handa@etl.go.jp> | |
10710 | |
10711 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox | |
10712 is an executable procedure. Make LineThickness, Xshadow, and | |
10713 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc. | |
10714 (ps-mule-font-info-database, ps-mule-font-info-database-ps, | |
10715 ps-mule-font-info-database-bdf): New vars. | |
10716 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs. | |
10717 (ccl-encode-ethio-unicode): New CCL program. | |
10718 (ps-mule-encode-ethiopic): New fun. | |
10719 (ps-mule-current-charset): New var. | |
10720 (ps-mule-get-font-spec, ps-mule-font-spec-src, | |
10721 ps-mule-font-spec-name, ps-mule-font-spec-encoding, | |
10722 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs. | |
10723 (ps-mule-external-libraries): New var. | |
10724 (ps-mule-init-external-library): New fun. | |
10725 (ps-mule-font-cache): New var. | |
10726 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs. | |
10727 (ps-last-font): New var. | |
10728 (ps-mule-prepare-font): New fun. | |
10729 (ps-mule-charset-list): New var. | |
10730 (ps-mule-prologue-generated, ps-mule-prologue): New vars. | |
10731 (ps-mule-skip-same-charset, ps-mule-find-wrappoint, | |
10732 ps-mule-plot-string): New funs. | |
10733 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue): | |
10734 New vars. | |
10735 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar, | |
10736 ps-mule-prepare-cmpchar-font): New funs. | |
10737 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New | |
10738 vars. | |
10739 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font, | |
10740 ps-mule-generate-bitmap-glyph): New funs. | |
10741 (ps-mule-initialize, ps-mule-begin): New funs. | |
10742 (ps-output-string-prim): Insert string as unibyte. | |
10743 (ps-output-prologue): New fun. | |
10744 (ps-flush-output): Handle the case of 'prologue. | |
10745 (ps-begin-file): Call ps-mule-initialize. | |
10746 (ps-begin-job): Set ps-control-or-escape-regexp differently if | |
10747 printing multibyte characters. | |
10748 (ps-begin-page): Set ps-mule-current-charset to 'ascii. | |
10749 (ps-basic-plot-string): Handle the case of printing ASCII | |
10750 characters by external libraries (e.g. BDF). | |
10751 (ps-set-font): Set ps-last-font. | |
10752 (ps-plot-region): Handle multibyte characters, use | |
10753 ps-mule-plot-string for them. | |
10754 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin. | |
10755 | |
10756 * bdf.el: New file. | |
10757 | |
10758 1998-08-23 Kenichi HANDA <handa@etl.go.jp> | |
10759 | |
10760 * international/mule-cmds.el (select-message-coding-system): New | |
10761 function. | |
10762 (set-language-environment-coding-systems): Set | |
10763 default-sendmail-coding-system. | |
10764 | |
10765 * mail/sendmail.el (sendmail-coding-system): Doc-string modified. | |
10766 (default-sendmail-coding-system): New variable. | |
10767 (sendmail-send-it): Encode the message by a coding system | |
10768 select-message-coding-system returns. | |
10769 | |
10770 1998-08-23 Eric Ludlam <zappo@gnu.org> | |
10771 | |
26807
3e28d3d8e6ca
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26806
diff
changeset
|
10772 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'. |
25837 | 10773 (speedbar-mode): Set buffer to read only. |
10774 (speedbar-temp-buffer-show-function): For emacs don't call hook | |
10775 with arguments. | |
10776 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable. | |
10777 | |
10778 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu> | |
10779 | |
10780 * speedbar.el (speedbar-key-map): Fix typo. | |
10781 | |
10782 See ChangeLog.7 for earlier changes. |