Mercurial > emacs
annotate etc/NEWS @ 30792:97c0caec0a32
fixed sds e-mail
author | Sam Steingold <sds@gnu.org> |
---|---|
date | Mon, 14 Aug 2000 21:45:06 +0000 |
parents | 68b63779f4df |
children | a83791be7166 |
rev | line source |
---|---|
30786 | 1 GNU Emacs NEWS -- history of user-visible changes. 2000-08-14 |
27200 | 2 Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
25853 | 3 See the end for copying conditions. |
4 | |
5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org. | |
30786 | 6 For older news, see the file NEWS.1. |
25853 | 7 |
8 | |
25995 | 9 * Installation Changes in Emacs 21.1 |
10 | |
30576 | 11 ** Support for GNU/Linux on IA64 machines has been added. |
12 | |
28166 | 13 ** `movemail' defaults to supporting POP. You can turn this off using |
14 the --without-pop configure option, should that be necessary. | |
15 | |
16 ** There are new configure options associated with the support for | |
29962
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
17 images and toolkit scrollbars. Use the --help option in `configure' |
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
18 to list them. |
29696 | 19 |
29972 | 20 ** There is a new configure option `--without-xim' that instructs |
30786 | 21 Emacs to not use X Input Methods (XIM), if these are available. |
30467
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
22 |
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
23 ** There is a new configure option `--disable-largefile' to omit |
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
24 Unix-98-style support for large files if that is available. |
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
25 |
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
26 ** You can build a 64-bit Emacs for SPARC/Solaris systems which |
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
27 support 64-bit executables. See etc/MACHINES for instructions. |
30576 | 28 |
28166 | 29 |
30 * Changes in Emacs 21.1 | |
31 | |
30693 | 32 ** The new variable `auto-mode-interpreter-regexp' contains a regular |
33 expression matching interpreters, for file mode determination. | |
34 | |
35 This regular expression is matched against the first line of a file to | |
36 determine the file's mode in `set-auto-mode' when Emacs can't deduce a | |
37 mode from the file's name. If it matches, the file is assumed to be | |
38 interpreted by the interpreter matched by the second group of the | |
39 regular expression. The mode is then determined as the mode | |
40 associated with that interpreter in `interpreter-mode-alist'. | |
41 | |
30339
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
42 ** C-down-mouse-3 is bound differently. Now if the menu bar is not |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
43 displayed it pops up a menu containing the items which would be on the |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
44 menu bar. If the menu bar is displayed, it pops up the major mode |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
45 menu or the Edit menu if there is no major mode menu. |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
46 |
30222 | 47 ** Variable `load-path' is no longer customizable because it contains |
48 a version-dependent component. | |
49 | |
30155 | 50 ** The <delete> function key is now bound to `delete-char' by default. |
51 Note that this takes effect only on window systems. On TTYs, Emacs | |
52 will receive ASCII 127 when the DEL key is pressed. This | |
53 character is still bound as before. | |
54 | |
29752 | 55 ** Item Save Options on the Options menu allows saving options set |
56 using that menu. | |
57 | |
29532
9609bc6529ac
executable-make-buffer-file-executable-if-script-p
Dave Love <fx@gnu.org>
parents:
29509
diff
changeset
|
58 ** New function executable-make-buffer-file-executable-if-script-p is |
9609bc6529ac
executable-make-buffer-file-executable-if-script-p
Dave Love <fx@gnu.org>
parents:
29509
diff
changeset
|
59 suitable as an after-save-hook as an alternative to executable-chmod. |
9609bc6529ac
executable-make-buffer-file-executable-if-script-p
Dave Love <fx@gnu.org>
parents:
29509
diff
changeset
|
60 |
29509 | 61 ** The most preferred coding-system is now used to save a buffer if |
62 buffer-file-coding-system is `undecided' and it is safe for the buffer | |
63 contents. (The most preferred is set by set-language-environment or | |
64 by M-x prefer-coding-system.) Thus if you visit an ASCII file and | |
65 insert a non-ASCII character from your current language environment, | |
66 the file will be saved silently with the appropriate coding. | |
67 Previously you would be prompted for a safe coding system. | |
68 | |
30296 | 69 ** New variable `inhibit-iso-escape-detection' determines if Emacs' |
70 coding system detection algorithm should pay attention to ISO2022's | |
71 escape sequences. If this variable is non-nil, the algorithm ignores | |
72 such escape sequences. The default value is nil, and it is | |
73 recommended not to change it except for the special case that you | |
30357 | 74 always want to read any escape code verbatim. If you just want to |
30296 | 75 read a specific file without decoding escape codes, use C-x RET c |
30357 | 76 (`universal-coding-system-argument'). For instance, C-x RET c latin-1 |
77 RET C-x C-f filename RET. | |
30205 | 78 |
29506 | 79 ** Variable `default-korean-keyboard' is initialized properly from the |
80 environment variable `HANGUL_KEYBOARD_TYPE'. | |
81 | |
82 ** C-u C-x = provides detailed information about the character at | |
83 point in a pop-up window. | |
84 | |
85 ** New command M-x list-charset-chars reads a character set name and | |
86 displays all characters in that character set. | |
87 | |
88 ** M-x set-terminal-coding-system (C-x RET t) now allows CCL-based | |
89 coding systems such as cpXXX and cyrillic-koi8. | |
90 | |
29218
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
91 ** M-; now calls comment-dwim which tries to do something clever based |
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
92 on the context. |
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
93 |
28919 | 94 ** The function `getenv' is now callable interactively. |
95 | |
28912 | 96 ** The many obsolete language `setup-...-environment' commands have |
97 been removed -- use `set-language-environment'. | |
98 | |
28799 | 99 ** New user options `display-time-mail-face' and |
100 `display-time-use-mail-icon' control the appearance of mode-line mail | |
101 indicator used by the display-time package. On a suitable display the | |
102 indicator can be an icon and is mouse-sensitive. | |
103 | |
28699 | 104 ** Emacs' auto-save list files are now by default stored in a |
105 sub-directory `.emacs.d/auto-save-list/' of the user's home directory. | |
28776
49a91eb4274c
Describe the different auto-save-file-list-prefix on MS-DOS.
Eli Zaretskii <eliz@gnu.org>
parents:
28759
diff
changeset
|
106 (On MS-DOS, this subdirectory's name is `_emacs.d/auto-save.list/'.) |
28699 | 107 You can customize `auto-save-list-prefix' to change this location. |
108 | |
28695 | 109 ** On window-systems, additional space can be put between text lines |
110 on the display using several methods | |
111 | |
112 - By setting frame parameter `line-spacing' to PIXELS. PIXELS must be | |
113 a positive integer, and specifies that PIXELS number of pixels should | |
114 be put below text lines on the affected frame or frames. | |
115 | |
116 - By setting X resource `lineSpacing', class `LineSpacing'. This is | |
117 equivalent ot specifying the frame parameter. | |
118 | |
28870 | 119 - By specifying `--line-spacing=N' or `-lsp N' on the command line. |
28695 | 120 |
121 - By setting buffer-local variable `line-spacing'. The meaning is | |
122 the same, but applies to the a particular buffer only. | |
123 | |
29752 | 124 ** The new command `clone-indirect-buffer' can be used to create |
28660 | 125 an indirect buffer that is a twin copy of the current buffer. The |
29752 | 126 command `clone-indirect-buffer-other-window', bound to C-x 4 c, |
28660 | 127 does the same but displays the indirect buffer in another window. |
28626 | 128 |
28525
05658544eaff
backup-directory-alist, make-backup-file-name-function.
Dave Love <fx@gnu.org>
parents:
28506
diff
changeset
|
129 ** New user options `backup-directory-alist' and |
28757 | 130 `make-backup-file-name-function' control the placement of backups, |
131 typically in a single directory or in an invisible sub-directory. | |
28525
05658544eaff
backup-directory-alist, make-backup-file-name-function.
Dave Love <fx@gnu.org>
parents:
28506
diff
changeset
|
132 |
28396 | 133 ** New commands iso-iso2sgml and iso-sgml2iso convert between Latin-1 |
134 characters and the corresponding SGML (HTML) entities. | |
135 | |
28159 | 136 ** Emacs now refuses to load compiled Lisp files which weren't |
137 compiled with Emacs. Set `load-dangerous-libraries' to t to change | |
138 this behavior. | |
139 | |
140 The reason for this change is an incompatible change in XEmacs' byte | |
141 compiler. Files compiled with XEmacs can contain byte codes that let | |
142 Emacs dump core. | |
143 | |
144 ** New X resources recognized | |
27994 | 145 |
28140 | 146 *** The X resource `synchronous', class `Synchronous', specifies |
147 whether Emacs should run in synchronous mode. Synchronous mode | |
148 is useful for debugging X problems. | |
149 | |
150 Example: | |
151 | |
28159 | 152 emacs.synchronous: true |
28140 | 153 |
27994 | 154 *** The X resource `visualClass, class `VisualClass', specifies the |
155 visual Emacs should use. The resource's value should be a string of | |
27995 | 156 the form `CLASS-DEPTH', where CLASS is the name of the visual class, |
157 and DEPTH is the requested color depth as a decimal number. Valid | |
158 visual class names are | |
27994 | 159 |
160 TrueColor | |
161 PseudoColor | |
162 DirectColor | |
163 StaticColor | |
164 GrayScale | |
165 StaticGray | |
166 | |
167 Visual class names specified as X resource are case-insensitive, i.e. | |
168 `pseudocolor', `Pseudocolor' and `PseudoColor' all have the same | |
169 meaning. | |
170 | |
27995 | 171 The program `xdpyinfo' can be used to list the visual classes |
172 supported on your display, and which depths they have. If | |
173 `visualClass' is not specified, Emacs uses the display's default | |
174 visual. | |
175 | |
176 Example: | |
177 | |
28159 | 178 emacs.visualClass: TrueColor-8 |
27994 | 179 |
180 *** The X resource `privateColormap', class `PrivateColormap', | |
181 specifies that Emacs should use a private colormap if it is using the | |
182 default visual, and that visual is of class PseudoColor. Recognized | |
183 resource values are `true' or `on'. | |
184 | |
27995 | 185 Example: |
186 | |
28159 | 187 emacs.privateColormap: true |
27995 | 188 |
27966
b8b910003631
Mention the new menu-bar structure.
Eli Zaretskii <eliz@gnu.org>
parents:
27881
diff
changeset
|
189 ** The menu bar configuration has changed. The new configuration is |
b8b910003631
Mention the new menu-bar structure.
Eli Zaretskii <eliz@gnu.org>
parents:
27881
diff
changeset
|
190 more CUA-compliant. The most significant change is that Options is |
b8b910003631
Mention the new menu-bar structure.
Eli Zaretskii <eliz@gnu.org>
parents:
27881
diff
changeset
|
191 now a separate menu-bar item, with Mule and Customize as its submenus. |
b8b910003631
Mention the new menu-bar structure.
Eli Zaretskii <eliz@gnu.org>
parents:
27881
diff
changeset
|
192 |
27847 | 193 ** User-option `show-cursor-in-non-selected-windows' controls how to |
27845 | 194 display the cursor in non-selected windows. If nil, no cursor is |
27847 | 195 shown, if non-nil a hollow box cursor is shown. This option can |
196 be customized. | |
27845 | 197 |
27770 | 198 ** The variable `echo-keystrokes' may now have a floating point value. |
199 | |
27473 | 200 ** C-x 5 1 runs the new command delete-other-frames which deletes |
201 all frames except the selected one. | |
202 | |
27369 | 203 ** If your init file is compiled (.emacs.elc), `user-init-file' is set |
204 to the source name (.emacs.el), if that exists, after loading it. | |
205 | |
27356 | 206 ** The help string specified for a menu-item whose definition contains |
30482
d9af2c1682d5
Help strings are supported on MS-Windows and MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
30477
diff
changeset
|
207 the property `:help HELP' is now displayed under X, on MS-Windows, and |
d9af2c1682d5
Help strings are supported on MS-Windows and MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
30477
diff
changeset
|
208 MS-DOS, either in the echo area or with tooltips. Many standard menus |
d9af2c1682d5
Help strings are supported on MS-Windows and MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
30477
diff
changeset
|
209 displayed by Emacs now have help strings. |
d9af2c1682d5
Help strings are supported on MS-Windows and MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
30477
diff
changeset
|
210 |
d9af2c1682d5
Help strings are supported on MS-Windows and MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
30477
diff
changeset
|
211 ** Highlighting of mouse-sensitive regions is now supported in the |
d9af2c1682d5
Help strings are supported on MS-Windows and MS-DOS as well.
Eli Zaretskii <eliz@gnu.org>
parents:
30477
diff
changeset
|
212 MS-DOS version of Emacs. |
27356 | 213 |
27266
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
214 ** New user option `read-mail-command' specifies a command to use to |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
215 read mail from the menu etc. |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
216 |
28658 | 217 ** Hexl contains a new command `hexl-insert-hex-string' which inserts |
218 a string of hexadecimal numbers read from the mini-buffer. | |
219 | |
28626 | 220 ** Changes in Texinfo mode. |
221 | |
222 ** A couple of new key bindings have been added for inserting Texinfo | |
223 macros | |
224 | |
225 Key binding Macro | |
226 ------------------------- | |
227 C-c C-c C-s @strong | |
228 C-c C-c C-e @emph | |
229 C-c C-c u @url | |
230 C-c C-c q @quotation | |
231 C-c C-c m @email | |
232 | |
27266
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
233 ** Changes in Outline mode. |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
234 |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
235 There is now support for Imenu to index headings. A new command |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
236 `outline-headers-as-kill' copies the visible headings in the region to |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
237 the kill ring, e.g. to produce a table of contents. |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
238 |
30788 | 239 ** Changes to Show Paren mode. |
240 | |
241 *** Overlays used by Show Paren mode now use a priority property. | |
242 The new user option show-paren-priority specifies the priority to | |
243 use. Default is 1000. | |
244 | |
27200 | 245 ** New command M-x check-parens can be used to find unbalanced paren |
246 groups and strings in buffers in Lisp mode (or other modes). | |
247 | |
27094
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
248 ** You can now easily create new *Info* buffers using either M-x clone-buffer |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
249 or C-u m <entry> RET. M-x clone-buffer can also be used on *Help* and |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
250 several other special buffers. |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
251 |
26432
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
252 ** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse) |
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
253 under XFree86. To enable this, simply put (mwheel-install) in your |
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
254 .emacs file. |
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
255 |
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
256 The variables `mwheel-follow-mouse' and `mwheel-scroll-amount' |
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
257 determine where and by how much buffers are scrolled. |
23b09a47da5c
added entry about mwheel.el
William M. Perry <wmperry@aventail.com>
parents:
26417
diff
changeset
|
258 |
26417 | 259 ** Listing buffers with M-x list-buffers (C-x C-b) now shows |
260 abbreviated file names. Abbreviations can be customized by changing | |
261 `directory-abbrev-alist'. | |
262 | |
26322
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
263 ** Reading from the mini-buffer now reads from standard input if Emacs |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
264 is running in batch mode. For example, |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
265 |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
266 (message "%s" (read t)) |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
267 |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
268 will read a Lisp expression from standard input and print the result |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
269 to standard output. |
9d7f261d1841
Reading from mini-buffer reads from stdin if noninteractive.
Gerd Moellmann <gerd@gnu.org>
parents:
26306
diff
changeset
|
270 |
25853 | 271 ** Faces and frame parameters. |
272 | |
273 There are four new faces `scroll-bar', `border', `cursor' and `mouse'. | |
274 Setting the frame parameters `scroll-bar-foreground' and | |
275 `scroll-bar-background' sets foreground and background color of face | |
276 `scroll-bar' and vice versa. Setting frame parameter `border-color' | |
277 sets the background color of face `border' and vice versa. Likewise | |
278 for frame parameters `cursor-color' and face `cursor', and frame | |
279 parameter `mouse-color' and face `mouse'. | |
280 | |
281 Changing frame parameter `font' sets font-related attributes of the | |
282 `default' face and vice versa. Setting frame parameters | |
26264 | 283 `foreground-color' or `background-color' sets the colors of the |
25853 | 284 `default' face and vice versa. |
285 | |
25951 | 286 ** New face `menu'. |
287 | |
288 The face `menu' can be used to change colors and font of Emacs' menus. | |
289 Setting the font of LessTif/Motif menus is currently not supported; | |
290 attempts to set the font are ignored in this case. | |
291 | |
25853 | 292 ** New frame parameter `screen-gamma' for gamma correction. |
293 | |
294 The new frame parameter `screen-gamma' specifies gamma-correction for | |
295 colors. Its value may be nil, the default, in which case no gamma | |
296 correction occurs, or a number > 0, usually a float, that specifies | |
297 the screen gamma of a frame's display. | |
298 | |
299 PC monitors usually have a screen gamma of 2.2. smaller values result | |
300 in darker colors. You might want to try a screen gamma of 1.5 for LCD | |
301 color displays. The viewing gamma Emacs uses is 0.4545. (1/2.2). | |
302 | |
303 The X resource name of this parameter is `screenGamma', class | |
304 `ScreenGamma'. | |
305 | |
306 ** Emacs has a new redisplay engine. | |
307 | |
308 The new redisplay handles characters of variable width and height. | |
309 Italic text can be used without redisplay problems. Fonts containing | |
310 oversized characters, i.e. characters larger than the logical height | |
311 of a font can be used. Images of various formats can be displayed in | |
312 the text. | |
313 | |
314 ** Emacs has a new face implementation. | |
315 | |
316 The new faces no longer fundamentally use X font names to specify the | |
317 font. Instead, each face has several independent attributes--family, | |
318 height, width, weight and slant--that it may or may not specify. | |
319 These attributes can be merged from various faces, and then together | |
320 specify a font. | |
321 | |
322 Faces are supported on terminals that can display color or fonts. | |
323 These terminal capabilities are auto-detected. Details can be found | |
324 under Lisp changes, below. | |
325 | |
326 ** New default font is Courier 12pt. | |
327 | |
328 ** When using a windowing terminal, Emacs window now has a cursor of | |
329 its own. When the window is selected, the cursor is solid; otherwise, | |
330 it is hollow. | |
331 | |
332 ** Bitmap areas to the left and right of windows are used to display | |
333 truncation marks, continuation marks, overlay arrows and alike. The | |
334 foreground, background, and stipple of these areas can be changed by | |
335 customizing face `fringe'. | |
336 | |
337 ** The mode line under X is now drawn with shadows by default. You | |
338 can change its appearance by modifying the face `modeline'. | |
339 | |
340 ** LessTif support. | |
341 | |
342 Emacs now runs with LessTif (see <http://www.lesstif.org>). You will | |
343 need a version 0.88.1 or later. | |
344 | |
345 ** Toolkit scroll bars. | |
346 | |
347 Emacs now uses toolkit scrollbars if available. When configured for | |
348 LessTif/Motif, it will use that toolkit's scrollbar. Otherwise, when | |
349 configured for Lucid and Athena widgets, it will use the Xaw3d scroll | |
350 bar if Xaw3d is available. You can turn off the use of toolkit scroll | |
351 bars by specifying `--with-toolkit-scroll-bars=no' when configuring | |
352 Emacs. | |
353 | |
354 When you encounter problems with the Xaw3d scroll bar, watch out how | |
355 Xaw3d is compiled on your system. If the Makefile generated from | |
356 Xaw3d's Imakefile contains a `-DNARROWPROTO' compiler option, and your | |
357 Emacs system configuration file `s/your-system.h' does not contain a | |
358 define for NARROWPROTO, you might consider adding it. Take | |
359 `s/freebsd.h' as an example. | |
360 | |
361 Alternatively, if you don't have access to the Xaw3d source code, take | |
362 a look at your system's imake configuration file, for example in the | |
363 directory `/usr/X11R6/lib/X11/config' (paths are different on | |
364 different systems). You will find files `*.cf' there. If your | |
365 system's cf-file contains a line like `#define NeedWidePrototypes NO', | |
366 add a `#define NARROWPROTO' to your Emacs system configuration file. | |
367 | |
368 The reason for this is that one Xaw3d function uses `double' or | |
369 `float' function parameters depending on the setting of NARROWPROTO. | |
370 This is not a problem when Imakefiles are used because each system's | |
371 image configuration file contains the necessary information. Since | |
372 Emacs doesn't use imake, this has do be done manually. | |
373 | |
374 ** Toggle buttons and radio buttons in menus. | |
375 | |
376 When compiled with LessTif (or Motif) support, Emacs uses toolkit | |
377 widgets for radio and toggle buttons in menus. When configured for | |
378 Lucid, Emacs draws radio buttons and toggle buttons similar to Motif. | |
379 | |
380 ** Highlighting of trailing whitespace. | |
381 | |
382 When `show-trailing-whitespace' is non-nil, Emacs displays trailing | |
383 whitespace in the face `trailing-whitespace'. Trailing whitespace is | |
384 defined as spaces or tabs at the end of a line. To avoid busy | |
385 highlighting when entering new text, trailing whitespace is not | |
386 displayed if point is at the end of the line containing the | |
387 whitespace. | |
388 | |
389 ** Busy-cursor. | |
390 | |
391 Emacs can optionally display a busy-cursor under X. You can turn the | |
392 display on or off by customizing group `cursor'. | |
393 | |
394 ** Blinking cursor | |
395 | |
396 M-x blink-cursor-mode toggles a blinking cursor under X and on | |
397 terminals having terminal capabilities `vi', `vs', and `ve'. Blinking | |
398 and related parameters like frequency and delay can be customized in | |
399 the group `cursor'. | |
400 | |
401 ** New font-lock support mode `jit-lock-mode'. | |
402 | |
403 This support mode is roughly equivalent to `lazy-lock' but is | |
404 generally faster. It supports stealth and deferred fontification. | |
405 See the documentation of the function `jit-lock-mode' for more | |
406 details. | |
407 | |
408 Font-lock uses jit-lock-mode as default support mode, so you don't | |
409 have to do anything to activate it. | |
410 | |
411 ** Tabs and variable-width text. | |
412 | |
413 Tabs are now displayed with stretch properties; the width of a tab is | |
414 defined as a multiple of the normal character width of a frame, and is | |
415 independent of the fonts used in the text where the tab appears. | |
416 Thus, tabs can be used to line up text in different fonts. | |
417 | |
418 ** Enhancements of the Lucid menu bar | |
419 | |
420 *** The Lucid menu bar now supports the resource "margin". | |
421 | |
422 emacs.pane.menubar.margin: 5 | |
423 | |
28677
950ff4674e17
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28660
diff
changeset
|
424 The default margin is 4 which makes the menu bar appear like the |
950ff4674e17
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28660
diff
changeset
|
425 LessTif/Motif one. |
950ff4674e17
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28660
diff
changeset
|
426 |
950ff4674e17
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28660
diff
changeset
|
427 *** Arrows that indicate sub-menus are now drawn with shadows, as in |
950ff4674e17
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
28660
diff
changeset
|
428 LessTif and Motif. |
25853 | 429 |
430 ** Hscrolling in C code. | |
431 | |
28695 | 432 Horizontal scrolling now happens automatically if |
433 `automatic-hscrolling' is set (the default). This setting can be | |
434 customized. | |
25853 | 435 |
436 ** Tool bar support. | |
437 | |
438 Emacs supports a tool bar at the top of a frame under X. For details | |
439 how to define a tool bar, see the page describing Lisp-level changes. | |
440 | |
441 ** Mouse-sensitive mode line. | |
442 | |
443 Different parts of the mode line under X have been made | |
444 mouse-sensitive. Moving the mouse to a mouse-sensitive part in the mode | |
445 line changes the appearance of the mouse pointer to an arrow, and help | |
446 about available mouse actions is displayed either in the echo area, or | |
447 in the tooltip window if you have enabled one. | |
448 | |
449 Currently, the following actions have been defined: | |
450 | |
451 - Mouse-1 on the buffer name in the mode line switches between two | |
452 buffers. | |
453 | |
454 - Mouse-2 on the buffer-name switches to the next buffer, and | |
455 M-mouse-2 switches to the previous buffer in the buffer list. | |
456 | |
457 - Mouse-3 on the buffer-name displays a buffer menu. | |
458 | |
27266
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
459 - Mouse-2 on the read-only status in the mode line (`%' or `*') |
25853 | 460 toggles the read-only status. |
461 | |
462 - Mouse-3 on the mode name display a minor-mode menu. | |
463 | |
464 ** LessTif/Motif file selection dialog. | |
465 | |
466 When Emacs is configured to use LessTif or Motif, reading a file name | |
26652 | 467 from a menu will pop up a file selection dialog if `use-dialog-box' is |
25853 | 468 non-nil. |
469 | |
470 ** Emacs can display faces on TTY frames. | |
471 | |
472 Emacs automatically detects terminals that are able to display colors. | |
473 Faces with a weight greater than normal are displayed extra-bright, if | |
474 the terminal supports it. Faces with a weight less than normal and | |
475 italic faces are displayed dimmed, if the terminal supports it. | |
476 Underlined faces are displayed underlined if possible. Other face | |
29962
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
477 attributes such as `overline', `strike-through', and `box' are ignored |
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
478 on terminals. |
25853 | 479 |
480 ** Sound support | |
481 | |
30012 | 482 Emacs supports playing sound files on GNU/Linux and FreeBSD (Voxware |
30121
f67697912c81
Correct a typo ("aka as" -> "a.k.a.").
Eli Zaretskii <eliz@gnu.org>
parents:
30111
diff
changeset
|
483 driver and native BSD driver, a.k.a. Luigi's driver). Currently |
30012 | 484 supported file formats are RIFF-WAVE (*.wav) and Sun Audio (*.au). |
25853 | 485 |
486 ** A new variable, backup-by-copying-when-privileged-mismatch, gives | |
487 the highest file uid for which backup-by-copying-when-mismatch will be | |
488 forced on. The assumption is that uids less than or equal to this | |
489 value are special uids (root, bin, daemon, etc.--not real system | |
490 users) and that files owned by these users should not change ownership, | |
491 even if your system policy allows users other than root to edit them. | |
492 | |
493 The default is 200; set the variable to nil to disable the feature. | |
494 | |
495 ** A block cursor can be drawn as wide as the glyph under it under X. | |
496 | |
497 As an example: if a block cursor is over a tab character, it will be | |
498 drawn as wide as that tab on the display. To do this, set | |
499 `x-stretch-cursor' to a non-nil value. | |
500 | |
501 ** Empty display lines at the end of a buffer may be marked with a | |
502 bitmap (this is similar to the tilde displayed by vi). | |
503 | |
504 This behavior is activated by setting the buffer-local variable | |
505 `indicate-empty-lines' to a non-nil value. The default value of this | |
506 variable is found in `default-indicate-empty-lines'. | |
507 | |
508 ** There is a new "aggressive" scrolling method. | |
509 | |
510 When scrolling up because point is above the window start, if the | |
511 value of the buffer-local variable `scroll-up-aggessively' is a | |
512 number, Emacs chooses a new window start so that point ends up that | |
513 fraction of the window's height from the bottom of the window. | |
514 | |
515 When scrolling down because point is below the window end, if the | |
516 value of the buffer-local variable `scroll-down-aggessively' is a | |
517 number, Emacs chooses a new window start so that point ends up that | |
518 fraction of the window's height from the top of the window. | |
519 | |
520 ** The rectangle commands now avoid inserting undesirable spaces, | |
521 notably at the end of lines. | |
522 | |
523 All these functions have been rewritten to avoid inserting unwanted | |
524 spaces, and an optional prefix now allows them to behave the old way. | |
525 | |
28132 | 526 There is a new command M-x replace-rectangle. |
527 | |
25853 | 528 ** The new command M-x query-replace-regexp-eval acts like |
529 query-replace-regexp, but takes a Lisp expression which is evaluated | |
530 after each match to get the replacement text. | |
531 | |
29972 | 532 ** M-x query-replace recognizes a new command `e' (or `E') that lets |
533 you edit the replacement string. | |
28805 | 534 |
535 ** The new command mail-abbrev-complete-alias, bound to `M-TAB', let's | |
536 you complete mail aliases in the text, analogous to | |
537 lisp-complete-symbol. | |
538 | |
25853 | 539 ** Emacs now resizes mini-windows if appropriate. |
540 | |
29962
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
541 If a message is longer than one line, or minibuffer contents are |
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
542 longer than one line, Emacs now resizes the minibuffer window unless |
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
543 it is on a frame of its own. You can control the maximum minibuffer |
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
544 window size by setting the following variable: |
25853 | 545 |
546 - User option: max-mini-window-height | |
547 | |
548 Maximum height for resizing mini-windows. If a float, it specifies a | |
549 fraction of the mini-window frame's height. If an integer, it | |
550 specifies a number of lines. If nil, don't resize. | |
551 | |
552 Default is 0.25. | |
553 | |
30111 | 554 ** The command `Info-search' now uses a search history. |
555 | |
27017 | 556 ** Changes to hideshow.el |
557 | |
558 Hideshow is now at version 5.x. It uses a new algorithms for block | |
559 selection and traversal and includes more isearch support. | |
560 | |
561 *** Generalized block selection and traversal | |
562 | |
563 A block is now recognized by three things: its start and end regexps | |
564 (both strings), and a match-data selector (an integer) specifying | |
565 which sub-expression in the start regexp serves as the place where a | |
566 `forward-sexp'-like function can operate. Hideshow always adjusts | |
567 point to this sub-expression before calling `hs-forward-sexp-func' | |
568 (which for most modes evaluates to `forward-sexp'). | |
569 | |
570 If the match-data selector is not specified, it defaults to zero, | |
571 i.e., the entire start regexp is valid, w/ no prefix. This is | |
572 backwards compatible with previous versions of hideshow. Please see | |
573 the docstring for variable `hs-special-modes-alist' for details. | |
574 | |
575 *** Isearch support for updating mode line | |
576 | |
577 During incremental search, if Hideshow minor mode is active, hidden | |
578 blocks are temporarily shown. The variable `hs-headline' records the | |
579 line at the beginning of the opened block (preceding the hidden | |
580 portion of the buffer), and the mode line is refreshed. When a block | |
581 is re-hidden, the variable is set to nil. | |
582 | |
583 To show `hs-headline' in the mode line, you may wish to include | |
584 something like this in your .emacs. | |
585 | |
586 (add-hook 'hs-minor-mode-hook | |
587 (lambda () | |
588 (add-to-list 'mode-line-format 'hs-headline))) | |
589 | |
27266
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
590 ** Changes to Change Log mode and Add-Log functions |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
591 |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
592 If you invoke `add-change-log-entry' from a backup file, it makes an |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
593 entry appropriate for the file's parent. This is useful for making |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
594 log entries by comparing a version with deleted functions. |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
595 |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
596 New command M-x change-log-merge merges another log into the current |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
597 buffer, fixing old-style date formats if necessary. |
27005
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
598 |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
599 Change Log mode now adds a file's version number to change log entries |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
600 if user-option `change-log-version-info-enabled' is non-nil. |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
601 |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
602 The search for a file's version number is performed based on regular |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
603 expressions from `change-log-version-number-regexp-list' which can be |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
604 cutomized. Version numbers are only found in the first 10 percent of |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
605 a file. |
e9167a5cfad2
Alto's change to add-log.el.
Gerd Moellmann <gerd@gnu.org>
parents:
26964
diff
changeset
|
606 |
26964
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
607 ** Changes in Font Lock |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
608 |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
609 *** The new function `font-lock-remove-keywords' can be used to remove |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
610 font-lock keywords from the current buffer or from a specific major |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
611 mode. |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
612 |
26606 | 613 ** Comint (subshell) changes |
614 | |
30650
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
615 By default, comint no longer uses the variable `comint-prompt-regexp' to |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
616 distiguish prompts from user-input. Instead, it notices which parts of |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
617 the text were output by the process, and which entered by the user, and |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
618 attaches `field' properties to allow emacs commands to use this information. |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
619 Common movement commands, notably beginning-of-line, respect field |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
620 boundaries in a fairly natural manner. |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
621 To disable this feature, and use the old behavior, set the variable |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
622 `comint-use-prompt-regexp-instead-of-fields' to a non-nil value. |
db7dfd959c19
Add note about comint field changes (`comint-prompt-regexp removal').
Miles Bader <miles@gnu.org>
parents:
30576
diff
changeset
|
623 |
26606 | 624 Comint now includes new features to send commands to running processes |
625 and redirect the output to a designated buffer or buffers. | |
626 | |
627 The command M-x comint-redirect-send-command reads a command and | |
628 buffer name from the mini-buffer. The command is sent to the current | |
629 buffer's process, and its output is inserted into the specified buffer. | |
630 | |
631 The command M-x comint-redirect-send-command-to-process acts like | |
632 M-x comint-redirect-send-command but additionally reads the name of | |
633 the buffer whose process should be used from the mini-buffer. | |
634 | |
30759
408aec5f514c
Mention comint prompt highlighting.
Miles Bader <miles@gnu.org>
parents:
30693
diff
changeset
|
635 Packages based on comint.el like shell-mode, and scheme-interaction-mode |
408aec5f514c
Mention comint prompt highlighting.
Miles Bader <miles@gnu.org>
parents:
30693
diff
changeset
|
636 now highlight user input and program prompts, and support choosing |
408aec5f514c
Mention comint prompt highlighting.
Miles Bader <miles@gnu.org>
parents:
30693
diff
changeset
|
637 previous input with mouse-2. To control these feature, see the |
408aec5f514c
Mention comint prompt highlighting.
Miles Bader <miles@gnu.org>
parents:
30693
diff
changeset
|
638 user-options `comint-highlight-input' and `comint-highlight-prompt'. |
30319 | 639 |
26835
44fd08970a49
RET bound in Rmail summary.
Gerd Moellmann <gerd@gnu.org>
parents:
26834
diff
changeset
|
640 ** Changes to Rmail mode |
44fd08970a49
RET bound in Rmail summary.
Gerd Moellmann <gerd@gnu.org>
parents:
26834
diff
changeset
|
641 |
28492 | 642 *** The new user-option rmail-rmail-user-mail-address-regexp can be |
643 set to fine tune the identification of of the correspondent when | |
644 receiving new mail. If it matches the address of the sender, the | |
645 recipient is taken as correspondent of a mail. If nil, the default, | |
646 `user-login-name' and `user-mail-address' are used to exclude yourself | |
647 as correspondent. | |
648 | |
649 Usually you don't have to set this variable, except if you collect | |
650 mails sent by you under different user names. Then it should be a | |
29162 | 651 regexp matching your mail addresses. |
28492 | 652 |
28292 | 653 *** The new user-option rmail-confirm-expunge controls whether and how |
654 to ask for confirmation before expunging deleted messages from an | |
655 Rmail file. You can choose between no confirmation, confirmation | |
656 with y-or-n-p, or confirmation with yes-or-no-p. Default is to ask | |
657 for confirmation with yes-or-no-p. | |
658 | |
27361 | 659 *** RET is now bound in the Rmail summary to rmail-summary-goto-msg, |
660 like `j'. | |
661 | |
27381
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
662 *** There is a new user option `rmail-digest-end-regexps' that |
622e861dce48
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27378
diff
changeset
|
663 specifies the regular expressions to detect the line that ends a |
27378
af3075bcc264
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27369
diff
changeset
|
664 digest message. |
26835
44fd08970a49
RET bound in Rmail summary.
Gerd Moellmann <gerd@gnu.org>
parents:
26834
diff
changeset
|
665 |
29162 | 666 *** The new user option `rmail-automatic-folder-directives' specifies |
667 in which folder to put messages automatically. | |
668 | |
26271 | 669 ** Changes to TeX mode |
670 | |
671 The default mode has been changed from `plain-tex-mode' to | |
672 `latex-mode'. | |
673 | |
25853 | 674 ** Changes to RefTeX mode |
675 | |
676 *** RefTeX has new support for index generation. Index entries can be | |
677 created with `C-c <', with completion available on index keys. | |
678 Pressing `C-c /' indexes the word at the cursor with a default | |
679 macro. `C-c >' compiles all index entries into an alphabetically | |
680 sorted *Index* buffer which looks like the final index. Entries | |
681 can be edited from that buffer. | |
682 | |
683 *** Label and citation key selection now allow to select several | |
684 items and reference them together (use `m' to mark items, `a' or | |
685 `A' to use all marked entries). | |
686 | |
687 *** reftex.el has been split into a number of smaller files to reduce | |
688 memory use when only a part of RefTeX is being used. | |
689 | |
690 *** a new command `reftex-view-crossref-from-bibtex' (bound to `C-c &' | |
691 in BibTeX-mode) can be called in a BibTeX database buffer in order | |
692 to show locations in LaTeX documents where a particular entry has | |
693 been cited. | |
694 | |
26684
5ffc1f61b1d4
Add description of changed outline-regexp/new outline-level for
Gerd Moellmann <gerd@gnu.org>
parents:
26652
diff
changeset
|
695 ** Emacs Lisp mode now allows multiple levels of outline headings. |
5ffc1f61b1d4
Add description of changed outline-regexp/new outline-level for
Gerd Moellmann <gerd@gnu.org>
parents:
26652
diff
changeset
|
696 The level of a heading is determined from the number of leading |
5ffc1f61b1d4
Add description of changed outline-regexp/new outline-level for
Gerd Moellmann <gerd@gnu.org>
parents:
26652
diff
changeset
|
697 semicolons in a heading line. Toplevel forms starting with a `(' |
5ffc1f61b1d4
Add description of changed outline-regexp/new outline-level for
Gerd Moellmann <gerd@gnu.org>
parents:
26652
diff
changeset
|
698 in column 1 are always made leaves. |
5ffc1f61b1d4
Add description of changed outline-regexp/new outline-level for
Gerd Moellmann <gerd@gnu.org>
parents:
26652
diff
changeset
|
699 |
25853 | 700 ** The M-x time-stamp command (most commonly used on write-file-hooks) |
701 has the following new features: | |
702 | |
703 *** The patterns for finding the time stamp and for updating a pattern | |
704 may match text spanning multiple lines. For example, some people like | |
705 to have the filename and date on separate lines. The new variable | |
706 time-stamp-inserts-lines controls the matching for multi-line patterns. | |
707 | |
708 *** More than one time stamp can be updated in the same file. This | |
709 feature is useful if you need separate time stamps in a program source | |
710 file to both include in formatted documentation and insert in the | |
711 compiled binary. The same time-stamp will be written at each matching | |
712 pattern. The variable time-stamp-count enables this new feature; it | |
713 defaults to 1. | |
714 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
715 ** Partial Completion mode now completes environment variables in |
29676 | 716 file names. |
717 | |
25853 | 718 ** Tooltips. |
719 | |
720 Tooltips are small X windows displaying a help string at the current | |
721 mouse position. To use them, use the Lisp package `tooltip' which you | |
722 can access via the user option `tooltip-mode'. | |
723 | |
724 Tooltips also provides support for GUD debugging. If activated, | |
725 variable values can be displayed in tooltips by pointing at them with | |
726 the mouse in source buffers. You can customize various aspects of the | |
727 tooltip display in the group `tooltip'. | |
728 | |
729 ** Customize changes | |
730 | |
731 *** Customize now supports comments about customized items. Use the | |
26096 | 732 `State' menu to add comments. Note that customization comments will |
733 cause the customizations to fail in earlier versions of Emacs. | |
25853 | 734 |
735 *** The new option `custom-buffer-done-function' says whether to kill | |
736 Custom buffers when you've done with them or just bury them (the | |
737 default). | |
738 | |
26834
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
739 *** The keyword :set-after in defcustom allows to specify dependencies |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
740 between custom options. Example: |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
741 |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
742 (defcustom default-input-method nil |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
743 "*Default input method for multilingual text (a string). |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
744 This is the input method activated automatically by the command |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
745 `toggle-input-method' (\\[toggle-input-method])." |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
746 :group 'mule |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
747 :type '(choice (const nil) string) |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
748 :set-after '(current-language-environment)) |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
749 |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
750 This specifies that default-input-method should be set after |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
751 current-language-environment even if default-input-method appears |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
752 first in a custom-set-variables statement. |
782476a34d9d
Custom option keyword :set-after.
Gerd Moellmann <gerd@gnu.org>
parents:
26820
diff
changeset
|
753 |
25853 | 754 ** New features in evaluation commands |
755 | |
30056 | 756 *** The commands to evaluate Lisp expressions, such as C-M-x in Lisp |
25853 | 757 modes, C-j in Lisp Interaction mode, and M-:, now bind the variables |
758 print-level, print-length, and debug-on-error based on the | |
759 customizable variables eval-expression-print-level, | |
760 eval-expression-print-length, and eval-expression-debug-on-error. | |
761 | |
30056 | 762 *** The function `eval-defun' (M-C-x) now loads Edebug and instruments |
763 code when called with a prefix argument. | |
764 | |
30564 | 765 ** Ispell changes |
766 | |
30568
904cda56fa16
Fix typos in the entry for `ispell' command.
Eli Zaretskii <eliz@gnu.org>
parents:
30565
diff
changeset
|
767 *** The command `ispell' now spell-checks a region if |
904cda56fa16
Fix typos in the entry for `ispell' command.
Eli Zaretskii <eliz@gnu.org>
parents:
30565
diff
changeset
|
768 transient-mark-mode is on, and the mark is active. Otherwise it |
30564 | 769 spell-checks the current buffer. |
770 | |
25853 | 771 ** Dired changes |
772 | |
773 *** New variable `dired-recursive-deletes' determines if the delete | |
774 command will delete non-empty directories recursively. The default | |
775 is, delete only empty directories. | |
776 | |
777 *** New variable `dired-recursive-copies' determines if the copy | |
778 command will copy directories recursively. The default is, do not | |
779 copy directories recursively. | |
780 | |
26728
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
781 *** In command `dired-do-shell-command' (usually bound to `!') a `?' |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
782 in the shell command has a special meaning similar to `*', but with |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
783 the difference that the command will be run on each file individually. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
784 |
30111 | 785 *** The new command `dired-find-alternate-file' (usually bound to `a') |
786 replaces the Dired buffer with the buffer for an alternate file or | |
787 directory. | |
788 | |
30278
88f980a73f48
Add entry for new `dired-show-file-type' command.
Miles Bader <miles@gnu.org>
parents:
30222
diff
changeset
|
789 *** The new command `dired-show-file-type' (usually bound to `w') shows |
88f980a73f48
Add entry for new `dired-show-file-type' command.
Miles Bader <miles@gnu.org>
parents:
30222
diff
changeset
|
790 a message in the echo area describing what type of file the point is on. |
88f980a73f48
Add entry for new `dired-show-file-type' command.
Miles Bader <miles@gnu.org>
parents:
30222
diff
changeset
|
791 This command invokes the external program `file' do its work, and so |
88f980a73f48
Add entry for new `dired-show-file-type' command.
Miles Bader <miles@gnu.org>
parents:
30222
diff
changeset
|
792 will only work on systems with that program, and will be only as |
88f980a73f48
Add entry for new `dired-show-file-type' command.
Miles Bader <miles@gnu.org>
parents:
30222
diff
changeset
|
793 accurate or inaccurate as it is. |
88f980a73f48
Add entry for new `dired-show-file-type' command.
Miles Bader <miles@gnu.org>
parents:
30222
diff
changeset
|
794 |
30415 | 795 *** Dired now properly handles undo changes of adding/removing `-R' |
796 from ls switches. | |
797 | |
25853 | 798 ** The variable mail-specify-envelope-from controls whether to |
799 use the -f option when sending mail. | |
800 | |
26820 | 801 ** CC mode changes. |
802 | |
803 Note: This release contains changes that might not be compatible with | |
804 current user setups (although it's believed that these | |
805 incompatibilities will only show in very uncommon circumstances). | |
806 However, since the impact is uncertain, these changes may be rolled | |
807 back depending on user feedback. Therefore there's no forward | |
808 compatibility guarantee wrt the new features introduced in this | |
809 release. | |
810 | |
30412 | 811 *** c-style-variables-are-local-p now defaults to t. |
812 This is an incompatible change that has been made to make the behavior | |
813 of the style system wrt global variable settings less confusing for | |
814 non-advanced users. If you know what this variable does you might | |
815 want to set it to nil in your .emacs, otherwise you probably don't | |
816 have to bother. | |
817 | |
818 Defaulting c-style-variables-are-local-p to t avoids the confusing | |
819 situation that occurs when a user sets some style variables globally | |
30445 | 820 and edits both a Java and a non-Java file in the same Emacs session. |
30412 | 821 If the style variables aren't buffer local in this case, loading of |
822 the second file will cause the default style (either "gnu" or "java" | |
823 by default) to override the global settings made by the user. | |
824 | |
26820 | 825 *** New initialization procedure for the style system. |
826 When the initial style for a buffer is determined by CC Mode (from the | |
827 variable c-default-style), the global values of style variables now | |
828 take precedence over the values specified by the chosen style. This | |
829 is different than the old behavior: previously, the style-specific | |
830 settings would override the global settings. This change makes it | |
831 possible to do simple configuration in the intuitive way with | |
832 Customize or with setq lines in one's .emacs file. | |
833 | |
834 By default, the global value of every style variable is the new | |
835 special symbol set-from-style, which causes the value to be taken from | |
836 the style system. This means that in effect, only an explicit setting | |
837 of a style variable will cause the "overriding" behavior described | |
838 above. | |
839 | |
840 Also note that global settings override style-specific settings *only* | |
841 when the initial style of a buffer is chosen by a CC Mode major mode | |
842 function. When a style is chosen in other ways --- for example, by a | |
843 call like (c-set-style "gnu") in a hook, or via M-x c-set-style --- | |
844 then the style-specific values take precedence over any global style | |
845 values. In Lisp terms, global values override style-specific values | |
846 only when the new second argument to c-set-style is non-nil; see the | |
847 function documentation for more info. | |
848 | |
849 The purpose of these changes is to make it easier for users, | |
850 especially novice users, to do simple customizations with Customize or | |
851 with setq in their .emacs files. On the other hand, the new system is | |
852 intended to be compatible with advanced users' customizations as well, | |
853 such as those that choose styles in hooks or whatnot. This new system | |
854 is believed to be almost entirely compatible with current | |
855 configurations, in spite of the changed precedence between style and | |
856 global variable settings when a buffer's default style is set. | |
857 | |
858 (Thanks to Eric Eide for clarifying this explanation a bit.) | |
859 | |
860 **** c-offsets-alist is now a customizable variable. | |
861 This became possible as a result of the new initialization behavior. | |
862 | |
863 This variable is treated slightly differently from the other style | |
864 variables; instead of using the symbol set-from-style, it will be | |
865 completed with the syntactic symbols it doesn't already contain when | |
866 the style is first initialized. This means it now defaults to the | |
867 empty list to make all syntactic elements get their values from the | |
868 style system. | |
869 | |
870 **** Compatibility variable to restore the old behavior. | |
871 In case your configuration doesn't work with this change, you can set | |
872 c-old-style-variable-behavior to non-nil to get the old behavior back | |
873 as far as possible. | |
874 | |
875 *** Improvements to line breaking and text filling. | |
876 CC Mode now handles this more intelligently and seamlessly wrt the | |
877 surrounding code, especially inside comments. For details see the new | |
878 chapter about this in the manual. | |
879 | |
880 **** New variable to recognize comment line prefix decorations. | |
881 The variable c-comment-prefix-regexp has been added to properly | |
882 recognize the line prefix in both block and line comments. It's | |
883 primarily used to initialize the various paragraph recognition and | |
884 adaptive filling variables that the text handling functions uses. | |
885 | |
886 **** New variable c-block-comment-prefix. | |
887 This is a generalization of the now obsolete variable | |
888 c-comment-continuation-stars to handle arbitrary strings. | |
889 | |
890 **** CC Mode now uses adaptive fill mode. | |
891 This to make it adapt better to the paragraph style inside comments. | |
892 | |
893 It's also possible to use other adaptive filling packages inside CC | |
894 Mode, notably Kyle E. Jones' Filladapt mode (http://wonderworks.com/). | |
895 A new convenience function c-setup-filladapt sets up Filladapt for use | |
896 inside CC Mode. | |
897 | |
898 Note though that the 2.12 version of Filladapt lacks a feature that | |
899 causes it to work suboptimally when c-comment-prefix-regexp can match | |
900 the empty string (which it commonly does). A patch for that is | |
901 available from the CC Mode web site (http://www.python.org/emacs/ | |
902 cc-mode/). | |
903 | |
904 **** It's now possible to selectively turn off auto filling. | |
905 The variable c-ignore-auto-fill is used to ignore auto fill mode in | |
906 specific contexts, e.g. in preprocessor directives and in string | |
907 literals. | |
908 | |
909 **** New context sensitive line break function c-context-line-break. | |
910 It works like newline-and-indent in normal code, and adapts the line | |
911 prefix according to the comment style when used inside comments. If | |
912 you're normally using newline-and-indent, you might want to switch to | |
913 this function. | |
914 | |
915 *** Fixes to IDL mode. | |
916 It now does a better job in recognizing only the constructs relevant | |
917 to IDL. E.g. it no longer matches "class" as the beginning of a | |
918 struct block, but it does match the CORBA 2.3 "valuetype" keyword. | |
919 Thanks to Eric Eide. | |
920 | |
921 *** Improvements to the Whitesmith style. | |
922 It now keeps the style consistently on all levels and both when | |
923 opening braces hangs and when they don't. | |
924 | |
925 **** New lineup function c-lineup-whitesmith-in-block. | |
926 | |
927 *** New lineup functions c-lineup-template-args and c-indent-multi-line-block. | |
928 See their docstrings for details. c-lineup-template-args does a | |
929 better job of tracking the brackets used as parens in C++ templates, | |
930 and is used by default to line up continued template arguments. | |
931 | |
932 *** c-lineup-comment now preserves alignment with a comment on the | |
933 previous line. It used to instead preserve comments that started in | |
934 the column specified by comment-column. | |
935 | |
936 *** c-lineup-C-comments handles "free form" text comments. | |
937 In comments with a long delimiter line at the start, the indentation | |
938 is kept unchanged for lines that start with an empty comment line | |
939 prefix. This is intended for the type of large block comments that | |
940 contain documentation with its own formatting. In these you normally | |
941 don't want CC Mode to change the indentation. | |
942 | |
943 *** The `c' syntactic symbol is now relative to the comment start | |
944 instead of the previous line, to make integers usable as lineup | |
945 arguments. | |
946 | |
947 *** All lineup functions have gotten docstrings. | |
948 | |
949 *** More preprocessor directive movement functions. | |
950 c-down-conditional does the reverse of c-up-conditional. | |
951 c-up-conditional-with-else and c-down-conditional-with-else are | |
952 variants of these that also stops at "#else" lines (suggested by Don | |
953 Provan). | |
954 | |
955 *** Minor improvements to many movement functions in tricky situations. | |
956 | |
28506 | 957 ** Makefile mode changes |
958 | |
959 *** The mode now uses the abbrev table `makefile-mode-abbrev-table'. | |
960 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
961 *** Conditionals and include statements are now highlighted when |
28506 | 962 Fontlock mode is active. |
963 | |
26407 | 964 ** Isearch changes |
965 | |
30477 | 966 *** Isearch now puts a call to `isearch-resume' in the command history, |
967 so that searches can be resumed. | |
968 | |
969 *** In Isearch mode, M-C-s and M-C-r are now bound like C-s and C-r, | |
28506 | 970 respectively, i.e. you can repeat a regexp isearch with the same keys |
971 that started the search. | |
972 | |
26407 | 973 *** In Isearch mode, mouse-2 in the echo area now yanks the current |
25853 | 974 selection into the search string rather than giving an error. |
975 | |
26407 | 976 *** There is a new lazy highlighting feature in incremental search. |
977 | |
26417 | 978 Lazy highlighting is switched on/off by customizing variable |
26407 | 979 `isearch-lazy-highlight'. When active, all matches for the current |
980 search string are highlighted. The current match is highlighted as | |
981 before using face `isearch' or `region'. All other matches are | |
982 highlighted using face `isearch-lazy-highlight-face' which defaults to | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
983 `secondary-selection'. |
26407 | 984 |
985 The extra highlighting makes it easier to anticipate where the cursor | |
986 will end up each time you press C-s or C-r to repeat a pending search. | |
987 Highlighting of these additional matches happens in a deferred fashion | |
988 using "idle timers," so the cycles needed do not rob isearch of its | |
989 usual snappy response. | |
990 | |
991 If `isearch-lazy-highlight-cleanup' is set to t, highlights for | |
992 matches are automatically cleared when you end the search. If it is | |
993 set to nil, you can remove the highlights manually with `M-x | |
994 isearch-lazy-highlight-cleanup'. | |
995 | |
27470
483c021bf376
Change in sort-numeric-fields.
Gerd Moellmann <gerd@gnu.org>
parents:
27387
diff
changeset
|
996 ** Changes in sort.el |
483c021bf376
Change in sort-numeric-fields.
Gerd Moellmann <gerd@gnu.org>
parents:
27387
diff
changeset
|
997 |
483c021bf376
Change in sort-numeric-fields.
Gerd Moellmann <gerd@gnu.org>
parents:
27387
diff
changeset
|
998 The function sort-numeric-fields interprets numbers starting with `0' |
27533
6dfbe5197843
A typo ("ocatal" instead of "octal").
Eli Zaretskii <eliz@gnu.org>
parents:
27498
diff
changeset
|
999 as octal and numbers starting with `0x' or `0X' as hexadecimal. The |
27470
483c021bf376
Change in sort-numeric-fields.
Gerd Moellmann <gerd@gnu.org>
parents:
27387
diff
changeset
|
1000 new user-option sort-numberic-base can be used to specify a default |
483c021bf376
Change in sort-numeric-fields.
Gerd Moellmann <gerd@gnu.org>
parents:
27387
diff
changeset
|
1001 numeric base. |
26407 | 1002 |
28194 | 1003 ** Changes to Ange-ftp |
1004 | |
1005 *** Ange-ftp allows you to specify of a port number in remote file | |
25929 | 1006 names cleanly. It is appended to the host name, separated by a hash |
1007 sign, e.g. `/foo@bar.org#666:mumble'. (This syntax comes from EFS.) | |
1008 | |
28194 | 1009 *** If the new user-option `ange-ftp-try-passive-mode' is set, passive |
1010 ftp mode will be used if the ftp client supports that. | |
1011 | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1012 *** Ange-ftp handles the output of the w32-style clients which |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1013 output ^M at the end of lines. |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30516
diff
changeset
|
1014 |
25984 | 1015 ** Shell script mode changes. |
1016 | |
1017 Shell script mode (sh-script) can now indent scripts for shells | |
1018 derived from sh and rc. The indentation style is customizeable, and | |
1019 sh-script can attempt to "learn" the current buffer's style. | |
1020 | |
26264 | 1021 ** Etags changes. |
1022 | |
1023 *** In DOS, etags looks for file.cgz if it cannot find file.c. | |
1024 | |
26289
6651db4a4b1f
Document regexp changes in etags.
Francesco Potortì <pot@gnu.org>
parents:
26277
diff
changeset
|
1025 *** New option --ignore-case-regex is an alternative to --regex. It is now |
26292
81cd0c225dd9
Last changes for etags (I hope).
Francesco Potortì <pot@gnu.org>
parents:
26289
diff
changeset
|
1026 possible to bind a regexp to a language, by prepending the regexp with |
81cd0c225dd9
Last changes for etags (I hope).
Francesco Potortì <pot@gnu.org>
parents:
26289
diff
changeset
|
1027 {lang}, where lang is one of the languages that `etags --help' prints out. |
81cd0c225dd9
Last changes for etags (I hope).
Francesco Potortì <pot@gnu.org>
parents:
26289
diff
changeset
|
1028 This feature is useful especially for regex files, where each line contains |
81cd0c225dd9
Last changes for etags (I hope).
Francesco Potortì <pot@gnu.org>
parents:
26289
diff
changeset
|
1029 a regular expression. The manual contains details. |
26289
6651db4a4b1f
Document regexp changes in etags.
Francesco Potortì <pot@gnu.org>
parents:
26277
diff
changeset
|
1030 |
26264 | 1031 *** In C and derived languages, etags creates tags for function |
1032 declarations when given the --declarations option. | |
1033 | |
1034 *** In C++, tags are created for "operator". The tags have the form | |
26289
6651db4a4b1f
Document regexp changes in etags.
Francesco Potortì <pot@gnu.org>
parents:
26277
diff
changeset
|
1035 "operator+", without spaces between the keyword and the operator. |
26264 | 1036 |
1037 *** New language Ada: tags are functions, procedures, packages, tasks, and | |
1038 types. | |
1039 | |
29238 | 1040 *** In Fortran, `procedure' is not tagged. |
26264 | 1041 |
1042 *** In Java, tags are created for "interface". | |
1043 | |
1044 *** In Lisp, "(defstruct (foo", "(defun (operator" and similar constructs | |
1045 are now tagged. | |
1046 | |
1047 *** In Perl, the --globals option tags global variables. my and local | |
1048 variables are tagged. | |
1049 | |
1050 *** New language Python: def and class at the beginning of a line are tags. | |
1051 | |
26292
81cd0c225dd9
Last changes for etags (I hope).
Francesco Potortì <pot@gnu.org>
parents:
26289
diff
changeset
|
1052 *** .ss files are Scheme files, .pdb is Postscript with C syntax, .psw is |
81cd0c225dd9
Last changes for etags (I hope).
Francesco Potortì <pot@gnu.org>
parents:
26289
diff
changeset
|
1053 for PSWrap. |
26264 | 1054 |
26728
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1055 ** Changes in etags.el |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1056 |
28244 | 1057 *** The new user-option tags-case-fold-search can be used to make |
1058 tags operations case-sensitive or case-insensitive. The default | |
1059 is to use the same setting as case-fold-search. | |
1060 | |
26728
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1061 *** You can display additional output with M-x tags-apropos by setting |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1062 the new variable tags-apropos-additional-actions. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1063 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1064 If non-nil, the variable's value should be a list of triples (TITLE |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1065 FUNCTION TO-SEARCH). For each triple, M-x tags-apropos processes |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1066 TO-SEARCH and lists tags from it. TO-SEARCH should be an alist, |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1067 obarray, or symbol. If it is a symbol, the symbol's value is used. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1068 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1069 TITLE is a string to use to label the list of tags from TO-SEARCH. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1070 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1071 FUNCTION is a function to call when an entry is selected in the Tags |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1072 List buffer. It is called with one argument, the selected symbol. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1073 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1074 A useful example value for this variable might be something like: |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1075 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1076 '(("Emacs Lisp" Info-goto-emacs-command-node obarray) |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1077 ("Common Lisp" common-lisp-hyperspec common-lisp-hyperspec-obarray) |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1078 ("SCWM" scwm-documentation scwm-obarray)) |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1079 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1080 *** The face tags-tag-face can be used to customize the appearance |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1081 of tags in the output of M-x tags-apropos. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1082 |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1083 *** Setting tags-apropos-verbose to a non-nil value displays the |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1084 names of tags files in the *Tags List* buffer. |
8a531f428463
Etags.el change moved. Add dired-aux change.
Gerd Moellmann <gerd@gnu.org>
parents:
26718
diff
changeset
|
1085 |
26140
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1086 ** Emacs now attempts to determine the initial language environment |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1087 and preferred and locale coding systems systematically from the |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1088 LC_ALL, LC_CTYPE, and LANG environment variables during startup. |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1089 |
29506 | 1090 ** New language environments `Polish', `Latin-8' and `Latin-9'. |
1091 Latin-8 and Latin-9 correspond respectively to the ISO character sets | |
1092 8859-14 (Celtic) and 8859-15 (updated Latin-1, with the Euro sign). | |
1093 There is currently no specific input method support for them. | |
26016 | 1094 |
29962
cb2595f03c92
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
29949
diff
changeset
|
1095 ** Fortran mode has a new command `fortran-strip-sequence-nos' to |
26652 | 1096 remove text past column 72. The syntax class of `\' in Fortran is now |
1097 appropriate for C-style escape sequences in strings. | |
1098 | |
1099 ** SGML mode's default `sgml-validate-command' is now `nsgmls'. | |
1100 | |
26768 | 1101 ** A new command `view-emacs-problems' (C-h P) displays the PROBLEMS file. |
1102 | |
28492 | 1103 ** The Dabbrev package has a new user-option `dabbrev-ignore-regexps' |
1104 containing a list of regular expressions. Buffers matching a regular | |
1105 expression from that list, are not checked. | |
1106 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1107 ** Emacs can now figure out modification times of remote files. |
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1108 When you do C-x C-f /user@host:/path/file RET and edit the file, |
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1109 and someone else modifies the file, you will be prompted to revert |
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1110 the buffer, just like for the local files. |
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1111 |
25853 | 1112 ** New modes and packages |
1113 | |
30781 | 1114 *** The new package timeclock.el is a mode is for keeping track of time |
1115 intervals. You can use it for whatever purpose you like, but the | |
1116 typical scenario is to keep track of how much time you spend working | |
1117 on certain projects. | |
1118 | |
1119 *** The new package hi-lock.el, text matching interactively entered | |
30789 | 1120 regexp's can be highlighted. For example, |
1121 | |
1122 M-x highlight-regexp RET clearly RET RET | |
30565 | 1123 |
1124 will highlight all occurrences of `clearly' using a yellow background | |
1125 face. New occurrences of `clearly' will be highlighted as they are | |
1126 typed. `M-x unhighlight-regexp RET' will remove the highlighting. | |
1127 Any existing face can be used for highlighting and a set of | |
1128 appropriate faces is provided. The regexps can be written into the | |
1129 current buffer in a form that will be recognized the next time the | |
1130 corresponding file is read. | |
1131 | |
30789 | 1132 *** The new package zone.el plays games with Emacs' display when |
30565 | 1133 Emacs is idle. |
1134 | |
30319 | 1135 *** The new package xml.el provides a simple but generic XML |
1136 parser. It doesn't parse the DTDs however. | |
1137 | |
29218
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
1138 *** The comment operations are now provided by the newcomment.el |
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
1139 package which allows different styles of comment-region and should |
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
1140 be more robust while offering the same functionality. |
e956cc90f6c0
newcomment and the change of binding for M-;
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29162
diff
changeset
|
1141 |
28879 | 1142 *** The Ebrowse package implements a C++ class browser and tags |
1143 facilities tailored for use with C++. It is documented in a | |
1144 separate Texinfo file. | |
1145 | |
28854
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1146 *** The PCL-CVS package available by either running M-x cvs-examine |
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1147 or by visiting a CVS administrative directory (with a prefix argument) |
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1148 provides an alternative interface to VC-dired for CVS. |
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1149 It comes with log-view-mode to view RCS and SCCS logs and log-edit-mode |
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1150 used to enter checkin log messages. |
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1151 |
28834 | 1152 *** The new package called `woman' allows to browse Unix man pages |
1153 without invoking external programs. | |
1154 | |
1155 The command `M-x woman' formats manual pages entirely in Emacs Lisp | |
1156 and then displays them, like `M-x manual-entry' does. Unlike | |
1157 `manual-entry', `woman' does not invoke any external programs, so it | |
1158 is useful on systems such as MS-DOS/MS-Windows where the `man' and | |
28955
6cfd3ddf0911
Correct a typo in description of `woman.el'.
Eli Zaretskii <eliz@gnu.org>
parents:
28946
diff
changeset
|
1159 Groff or `troff' commands are not readily available. |
28834 | 1160 |
1161 The command `M-x woman-find-file' asks for the file name of a man | |
1162 page, then formats and displays it like `M-x woman' does. | |
1163 | |
28098 | 1164 *** The new command M-x re-builder offers a convenient interface for |
1165 authoring regular expressions with immediate visual feedback. | |
1166 | |
1167 The buffer from which the command was called becomes the target for | |
1168 the regexp editor popping up in a separate window. Matching text in | |
1169 the target buffer is immediately color marked during the editing. | |
1170 Each sub-expression of the regexp will show up in a different face so | |
1171 even complex regexps can be edited and verified on target data in a | |
1172 single step. | |
1173 | |
1174 On displays not supporting faces the matches instead blink like | |
1175 matching parens to make them stand out. On such a setup you will | |
1176 probably also want to use the sub-expression mode when the regexp | |
1177 contains such to get feedback about their respective limits. | |
1178 | |
27644 | 1179 *** glasses-mode is a minor mode that makes |
1180 unreadableIdentifiersLikeThis readable. It works as glasses, without | |
1181 actually modifying content of a buffer. | |
1182 | |
27498 | 1183 *** The package ebnf2ps translates an EBNF to a syntactic chart in |
1184 PostScript. | |
1185 | |
1186 Currently accepts ad-hoc EBNF, ISO EBNF and Bison/Yacc. | |
1187 | |
1188 The ad-hoc default EBNF syntax has the following elements: | |
1189 | |
1190 ; comment (until end of line) | |
1191 A non-terminal | |
1192 "C" terminal | |
1193 ?C? special | |
1194 $A default non-terminal | |
1195 $"C" default terminal | |
1196 $?C? default special | |
1197 A = B. production (A is the header and B the body) | |
1198 C D sequence (C occurs before D) | |
1199 C | D alternative (C or D occurs) | |
1200 A - B exception (A excluding B, B without any non-terminal) | |
1201 n * A repetition (A repeats n (integer) times) | |
1202 (C) group (expression C is grouped together) | |
1203 [C] optional (C may or not occurs) | |
1204 C+ one or more occurrences of C | |
1205 {C}+ one or more occurrences of C | |
1206 {C}* zero or more occurrences of C | |
1207 {C} zero or more occurrences of C | |
1208 C / D equivalent to: C {D C}* | |
1209 {C || D}+ equivalent to: C {D C}* | |
1210 {C || D}* equivalent to: [C {D C}*] | |
1211 {C || D} equivalent to: [C {D C}*] | |
1212 | |
1213 Please, see ebnf2ps documentation for EBNF syntax and how to use it. | |
1214 | |
27328 | 1215 *** The package align.el will align columns within a region, using M-x |
1216 align. Its mode-specific rules, based on regular expressions, | |
1217 determine where the columns should be split. In C and C++, for | |
1218 example, it will align variable names in declaration lists, or the | |
1219 equal signs of assignments. | |
1220 | |
27266
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
1221 *** `paragraph-indent-minor-mode' is a new minor mode supporting |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
1222 paragraphs in the same style as `paragraph-indent-text-mode'. |
8ce11c7a7fcb
read-mail-command, outline mode changes, change-log-merge,
Dave Love <fx@gnu.org>
parents:
27200
diff
changeset
|
1223 |
27016 | 1224 *** bs.el is a new package for buffer selection similar to |
1225 list-buffers or electric-buffer-list. Use M-x bs-show to display a | |
1226 buffer menu with this package. You can use M-x bs-customize to | |
1227 customize the package. | |
1228 | |
29696 | 1229 *** find-lisp.el is a package emulating the Unix find command in Lisp. |
1230 | |
27733 | 1231 *** calculator.el is a small calculator package that is intended to |
1232 replace desktop calculators such as xcalc and calc.exe. Actually, it | |
1233 is not too small - it has more features than most desktop calculators, | |
1234 and can be customized easily to get many more functions. It should | |
1235 not be confused with "calc" which is a much bigger mathematical tool | |
1236 which answers different needs. | |
1237 | |
26964
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1238 *** The minor modes cwarn-mode and global-cwarn-mode highlights |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1239 suspicious C and C++ constructions. Currently, assignments inside |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1240 expressions, semicolon following `if', `for' and `while' (except, of |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1241 course, after a `do .. while' statement), and C++ functions with |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1242 reference parameters are recognized. The modes require font-lock mode |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1243 to be enabled. |
2939daf50656
Font-lock changes by Anders Lindgren.
Gerd Moellmann <gerd@gnu.org>
parents:
26933
diff
changeset
|
1244 |
27094
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1245 *** smerge-mode.el provides `smerge-mode', a simple minor-mode for files |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1246 containing diff3-style conflict markers, such as generated by RCS. |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1247 |
25853 | 1248 *** 5x5.el is a simple puzzle game. |
1249 | |
1250 *** hl-line.el provides a minor mode to highlight the current line. | |
1251 | |
1252 *** ansi-color.el translates ANSI terminal escapes into text-properties. | |
1253 | |
1254 *** delphi.el provides a major mode for editing the Delphi (Object | |
1255 Pascal) language. | |
1256 | |
1257 *** quickurl.el provides a simple method of inserting a URL based on | |
1258 the text at point. | |
1259 | |
1260 *** sql.el provides an interface to SQL data bases. | |
1261 | |
25862 | 1262 *** fortune.el uses the fortune program to create mail/news signatures. |
1263 | |
25853 | 1264 *** whitespace.el ??? |
1265 | |
25992 | 1266 *** PostScript mode (ps-mode) is a new major mode for editing PostScript |
1267 files. It offers: interaction with a PostScript interpreter, including | |
1268 (very basic) error handling; fontification, easily customizable for | |
1269 interpreter messages; auto-indentation; insertion of EPSF templates and | |
1270 often used code snippets; viewing of BoundingBox; commenting out / | |
1271 uncommenting regions; conversion of 8bit characters to PostScript octal | |
1272 codes. All functionality is accessible through a menu. | |
1273 | |
1274 *** delim-col helps to prettify columns in a text region or rectangle. | |
1275 | |
1276 Here is an example of columns: | |
1277 | |
1278 horse apple bus | |
1279 dog pineapple car EXTRA | |
1280 porcupine strawberry airplane | |
1281 | |
1282 Doing the following settings: | |
1283 | |
1284 (setq delimit-columns-str-before "[ ") | |
1285 (setq delimit-columns-str-after " ]") | |
1286 (setq delimit-columns-str-separator ", ") | |
1287 (setq delimit-columns-separator "\t") | |
1288 | |
1289 | |
1290 Selecting the lines above and typing: | |
1291 | |
1292 M-x delimit-columns-region | |
1293 | |
1294 It results: | |
1295 | |
1296 [ horse , apple , bus , ] | |
1297 [ dog , pineapple , car , EXTRA ] | |
1298 [ porcupine, strawberry, airplane, ] | |
1299 | |
1300 delim-col has the following options: | |
1301 | |
1302 delimit-columns-str-before Specify a string to be inserted | |
1303 before all columns. | |
1304 | |
1305 delimit-columns-str-separator Specify a string to be inserted | |
1306 between each column. | |
1307 | |
1308 delimit-columns-str-after Specify a string to be inserted | |
1309 after all columns. | |
1310 | |
1311 delimit-columns-separator Specify a regexp which separates | |
1312 each column. | |
1313 | |
1314 delim-col has the following commands: | |
1315 | |
1316 delimit-columns-region Prettify all columns in a text region. | |
1317 delimit-columns-rectangle Prettify all columns in a text rectangle. | |
1318 | |
26030
c5e8559a53cb
Add description of recentf.
Gerd Moellmann <gerd@gnu.org>
parents:
26016
diff
changeset
|
1319 *** The package recentf.el maintains a menu for visiting files that |
30319 | 1320 were operated on recently. |
1321 | |
1322 M-x recentf-mode RET toggles recentf mode. | |
1323 | |
1324 M-x customize-variable RET recentf-mode RET can be used to enable | |
1325 recentf at Emacs startup. | |
1326 | |
1327 M-x customize-variable RET recentf-menu-filter RET to specify a menu | |
1328 filter function to change the menu appearance. For example, the recent | |
1329 file list can be displayed: | |
1330 | |
1331 - organized by major modes, directories or user defined rules. | |
1332 - sorted by file pathes, file names, ascending or descending. | |
1333 - showing pathes relative to the current default-directory | |
1334 | |
1335 The `recentf-filter-changer' menu filter function allows to | |
1336 dynamically change the menu appearance. | |
26030
c5e8559a53cb
Add description of recentf.
Gerd Moellmann <gerd@gnu.org>
parents:
26016
diff
changeset
|
1337 |
26149 | 1338 *** elide-head.el provides a mechanism for eliding boilerplate header |
1339 text. | |
1340 | |
26924 | 1341 *** footnote.el provides `footnote-mode', a minor mode supporting use |
26786 | 1342 of footnotes. It is intended for use with Message mode, but isn't |
1343 specific to Message mode. | |
1344 | |
26924 | 1345 *** diff-mode.el provides `diff-mode', a major mode for |
1346 viewing/editing context diffs (patches). It is selected for files | |
1347 with extension `.diff', `.diffs', `.patch' and `.rej'. | |
1348 | |
27714
22a581e00fe4
Mention some new packages, extra configure options.
Dave Love <fx@gnu.org>
parents:
27693
diff
changeset
|
1349 *** EUDC, the Emacs Unified Directory Client, provides a common user |
22a581e00fe4
Mention some new packages, extra configure options.
Dave Love <fx@gnu.org>
parents:
27693
diff
changeset
|
1350 interface to access directory servers using different directory |
22a581e00fe4
Mention some new packages, extra configure options.
Dave Love <fx@gnu.org>
parents:
27693
diff
changeset
|
1351 protocols. It has a separate manual. |
22a581e00fe4
Mention some new packages, extra configure options.
Dave Love <fx@gnu.org>
parents:
27693
diff
changeset
|
1352 |
28132 | 1353 *** autoconf.el provides a major mode for editing configure.in files |
1354 for Autoconf, selected automatically. | |
1355 | |
28710 | 1356 *** windmove.el provides moving between windows. |
28855
1be9a502caca
Cleaned some left over bogus conflict markers.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28854
diff
changeset
|
1357 |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1358 *** crm.el provides a facility to read multiple strings from the |
28710 | 1359 minibuffer with completion. |
27714
22a581e00fe4
Mention some new packages, extra configure options.
Dave Love <fx@gnu.org>
parents:
27693
diff
changeset
|
1360 |
28883 | 1361 *** todo-mode.el provides management of TODO lists and integration |
1362 with the diary features. | |
1363 | |
28912 | 1364 *** autoarg.el provides a feature reported from Twenex Emacs whereby |
1365 numeric keys supply prefix args rather than self inserting. | |
1366 | |
29814 | 1367 *** The function `turn-off-auto-fill' unconditionally turns off Auto |
1368 Fill mode. | |
1369 | |
25853 | 1370 ** Withdrawn packages |
1371 | |
1372 *** mldrag.el has been removed. mouse.el provides the same | |
1373 functionality with aliases for the mldrag functions. | |
26133 | 1374 |
27369 | 1375 *** eval-reg.el has been obsoleted by changes to edebug.el and removed. |
1376 | |
1377 *** ph.el has been obsoleted by EUDC and removed. | |
29102 | 1378 |
1379 | |
1380 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual, | |
1381 (Display-related features are described in a page of their own below.) | |
1382 | |
30564 | 1383 ** If `display-buffer-reuse-frames' is set, function `display-buffer' |
1384 will raise frames displaying a buffer, instead of creating a new | |
1385 frame or window. | |
1386 | |
30516 | 1387 ** Two new functions for removing elements from lists/sequences |
1388 were added | |
1389 | |
1390 - Function: remove ELT SEQ | |
1391 | |
1392 Return a copy of SEQ with all occurences of ELT removed. SEQ must be | |
1393 a list, vector, or string. The comparison is done with `equal'. | |
1394 | |
1395 - Function: remq ELT LIST | |
1396 | |
1397 Return a copy of LIST with all occurences of ELT removed. The | |
1398 comparison is done with `eq'. | |
1399 | |
1400 ** The function `delete' now also works with vectors and strings. | |
30511 | 1401 |
30502 | 1402 ** The meaning of the `:weakness WEAK' argument of make-hash-table |
1403 has been changed. | |
1404 | |
30357 | 1405 ** Function `aset' stores any multibyte character in any string |
1406 without signaling "Attempt to change char length of a string". It may | |
1407 convert a unibyte string to multibyte if necessary. | |
1408 | |
30219 | 1409 ** The value of the `help-echo' text property is called as a function |
1410 or evaluated, if it is not a string already, to obtain a help string. | |
30203 | 1411 |
30158
84d54b049d67
make-obsolete, plist-member changes
Dave Love <fx@gnu.org>
parents:
30155
diff
changeset
|
1412 ** Function `make-obsolete' now has an optional arg to say when the |
84d54b049d67
make-obsolete, plist-member changes
Dave Love <fx@gnu.org>
parents:
30155
diff
changeset
|
1413 function was declared obsolete. |
84d54b049d67
make-obsolete, plist-member changes
Dave Love <fx@gnu.org>
parents:
30155
diff
changeset
|
1414 |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1415 ** Function `plist-member' is renamed from `widget-plist-member' (which is |
30158
84d54b049d67
make-obsolete, plist-member changes
Dave Love <fx@gnu.org>
parents:
30155
diff
changeset
|
1416 retained as an alias). |
84d54b049d67
make-obsolete, plist-member changes
Dave Love <fx@gnu.org>
parents:
30155
diff
changeset
|
1417 |
30068
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1418 ** Easy-menu's :filter now works as in XEmacs. |
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1419 It takes the unconverted (i.e. XEmacs) form of the menu and the result |
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1420 is automatically converted to Emacs' form. |
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1421 |
30038 | 1422 ** The new function `window-list' has been defined |
1423 | |
1424 - Function: window-list &optional WINDOW MINIBUF ALL-FRAMES | |
1425 | |
1426 Return a list of windows in canonical order. The parameters WINDOW, | |
1427 MINIBUF and ALL-FRAMES are defined like for `next-window'. | |
1428 | |
30006 | 1429 ** There's a new function `some-window' defined as follows |
1430 | |
1431 - Function: some-window PREDICATE &optional MINIBUF ALL-FRAMES DEFAULT | |
1432 | |
1433 Return a window satisfying PREDICATE. | |
1434 | |
1435 This function cycles through all visible windows using `walk-windows', | |
1436 calling PREDICATE on each one. PREDICATE is called with a window as | |
1437 argument. The first window for which PREDICATE returns a non-nil | |
1438 value is returned. If no window satisfies PREDICATE, DEFAULT is | |
1439 returned. | |
1440 | |
1441 Optional second arg MINIBUF t means count the minibuffer window even | |
1442 if not active. MINIBUF nil or omitted means count the minibuffer iff | |
1443 it is active. MINIBUF neither t nor nil means not to count the | |
1444 minibuffer even if it is active. | |
1445 | |
1446 Several frames may share a single minibuffer; if the minibuffer | |
1447 counts, all windows on all frames that share that minibuffer count | |
1448 too. Therefore, if you are using a separate minibuffer frame | |
1449 and the minibuffer is active and MINIBUF says it counts, | |
1450 `walk-windows' includes the windows in the frame from which you | |
1451 entered the minibuffer, as well as the minibuffer window. | |
1452 | |
1453 ALL-FRAMES is the optional third argument. | |
1454 ALL-FRAMES nil or omitted means cycle within the frames as specified above. | |
1455 ALL-FRAMES = `visible' means include windows on all visible frames. | |
1456 ALL-FRAMES = 0 means include windows on all visible and iconified frames. | |
1457 ALL-FRAMES = t means include windows on all frames including invisible frames. | |
1458 If ALL-FRAMES is a frame, it means include windows on that frame. | |
1459 Anything else means restrict to the selected frame. | |
1460 | |
30564 | 1461 ** The function `single-key-description' now encloses function key and |
1462 event names in angle brackets. When called with a second optional | |
1463 argument non-nil, angle brackets won't be printed. | |
29657 | 1464 |
29637 | 1465 ** If the variable `message-truncate-lines' is bound to t around a |
1466 call to `message', the echo area will not be resized to display that | |
30290 | 1467 message; it will be truncated instead, as it was done in 20.x. |
1468 Default value is nil. | |
29637 | 1469 |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1470 ** The user option `line-number-display-limit' can now be set to nil, |
29633 | 1471 meaning no limit. |
1472 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1473 ** `select-safe-coding-system' now also checks the most preferred |
29509 | 1474 coding-system if buffer-file-coding-system is `undecided' and |
1475 DEFAULT-CODING-SYSTEM is not specified, | |
1476 | |
29286 | 1477 ** The function `subr-arity' provides information on the argument list |
29238 | 1478 of a primitive. |
1479 | |
29286 | 1480 ** The text property `keymap' specifies a key map which overrides the |
1481 buffer's local map and the map specified by the `local-map' property. | |
1482 This is probably what most current uses of `local-map' want, rather | |
1483 than replacing the local map. | |
1484 | |
29381
580f03a746d8
find-image, {before,after}-change-function
Dave Love <fx@gnu.org>
parents:
29286
diff
changeset
|
1485 ** The obsolete variables before-change-function and |
580f03a746d8
find-image, {before,after}-change-function
Dave Love <fx@gnu.org>
parents:
29286
diff
changeset
|
1486 after-change-function are no longer acted upon and have been removed. |
29498 | 1487 |
1488 ** The function `apropos-mode' runs the hook `apropos-mode-hook'. | |
1489 | |
30339
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
1490 ** `concat' no longer accepts individual integer arguments, as |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
1491 promised long ago. |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
1492 |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1493 ** The new function `float-time' returns the current time as a float. |
25853 | 1494 |
1495 * Lisp changes in Emacs 21.1 (see following page for display-related features) | |
1496 | |
1497 Note that +++ before an item means the Lisp manual has been updated. | |
1498 --- means that I have decided it does not need to be in the Lisp manual. | |
1499 When you add a new item, please add it without either +++ or --- | |
1500 so I will know I still need to look at it -- rms. | |
1501 | |
29506 | 1502 *** The functions `find-charset-region' and `find-charset-string' include |
1503 `eight-bit-control' and/or `eight-bit-graphic' in the returned list | |
1504 when it finds 8-bit characters. Previously, it included `ascii' in a | |
1505 multibyte buffer and `unknown' in a unibyte buffer. | |
1506 | |
1507 *** The functions `set-buffer-modified', `string-as-multibyte' and | |
1508 `string-as-unibyte' change the byte sequence of a buffer if it | |
1509 contains a character from the `eight-bit-control' character set. | |
1510 | |
1511 *** The handling of multibyte sequences in a multibyte buffer is | |
1512 changed. Previously, a byte sequence matching the pattern | |
1513 [\200-\237][\240-\377]+ was interpreted as a single character | |
1514 regardless of the length of the trailing bytes [\240-\377]+. Thus, if | |
1515 the sequence was longer than what the leading byte indicated, the | |
1516 extra trailing bytes were ignored by Lisp functions. Now such extra | |
1517 bytes are independent 8-bit characters belonging to the charset | |
1518 eight-bit-graphic. | |
1519 | |
1520 ** Fontsets are now implemented using char-tables. | |
1521 | |
1522 A fontset can now be specified for for each independent character, for | |
1523 a group of characters or for a character set rather than just for a | |
1524 character set as previously. | |
1525 | |
1526 *** The arguments of the function `set-fontset-font' are changed. | |
1527 They are NAME, CHARACTER, FONTNAME, and optional FRAME. The function | |
1528 modifies fontset NAME to use FONTNAME for CHARACTER. | |
1529 | |
1530 CHARACTER may be a cons (FROM . TO), where FROM and TO are non-generic | |
1531 characters. In that case FONTNAME is used for all characters in the | |
1532 range FROM and TO (inclusive). CHARACTER may be a charset. In that | |
1533 case FONTNAME is used for all character in the charset. | |
1534 | |
1535 FONTNAME may be a cons (FAMILY . REGISTRY), where FAMILY is the family | |
1536 name of a font and REGSITRY is a registry name of a font. | |
1537 | |
1538 *** Variable x-charset-registry has been deleted. The default charset | |
1539 registries of character sets are set in the default fontset | |
1540 "fontset-default". | |
1541 | |
1542 *** The function `create-fontset-from-fontset-spec' ignores the second | |
1543 argument STYLE-VARIANT. It never creates style-variant fontsets. | |
1544 | |
1545 ** The method of composing characters is changed. Now character | |
1546 composition is done by a special text property `composition' in | |
1547 buffers and strings. | |
1548 | |
1549 *** Charset composition is deleted. Emacs never creates a `composite | |
1550 character' which is an independent character with a unique character | |
1551 code. Thus the following functions handling `composite characters' | |
1552 have been deleted: composite-char-component, | |
1553 composite-char-component-count, composite-char-composition-rule, | |
1554 composite-char-composition-rule and decompose-composite-char delete. | |
1555 The variables leading-code-composition and min-composite-char have | |
1556 also been deleted. | |
1557 | |
1558 *** Three more glyph reference points are added. They can be used to | |
1559 specify a composition rule. See the documentation of the variable | |
1560 `reference-point-alist' for more detail. | |
1561 | |
1562 *** The function `compose-region' takes new arguments COMPONENTS and | |
1563 MODIFICATION-FUNC. With COMPONENTS, you can specify not only a | |
1564 composition rule but also characters to be composed. Such characters | |
1565 may differ between buffer and string text. | |
1566 | |
1567 *** The function `compose-string' takes new arguments START, END, | |
1568 COMPONENTS, and MODIFICATION-FUNC. | |
1569 | |
1570 *** The function `compose-string' puts text property `composition' | |
1571 directly on the argument STRING instead of returning a new string. | |
1572 Likewise, the function `decompose-string' just removes text property | |
1573 `composition' from STRING. | |
1574 | |
1575 *** The new function `find-composition' returns information about | |
1576 a composition at a specified position in a buffer or a string. | |
1577 | |
1578 *** The function `decompose-composite-char' is now labeled as | |
1579 obsolete. | |
1580 | |
1581 ** The new character set `mule-unicode-0100-24ff' is introduced for | |
1582 Unicode characters of the range U+0100..U+24FF. Currently, this | |
1583 character set is not used. | |
1584 | |
1585 ** The new character sets `japanese-jisx0213-1' and | |
1586 `japanese-jisx0213-2' are introduced for the new Japanese standard JIS | |
1587 X 0213 Plane 1 and Plane 2. | |
1588 | |
1589 +++ | |
1590 ** The new character sets `eight-bit-control' and `eight-bit-graphic' | |
1591 are introduced for 8-bit characters in the ranges 0x80..0x9F and | |
30068
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1592 0xA0..0xFF respectively. |
29506 | 1593 |
28883 | 1594 +++ |
28847 | 1595 ** If the APPEND argument of `write-region' is an integer, it seeks to |
1596 that offset in the file before writing. | |
1597 | |
30068
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1598 ** The function `add-minor-mode' has been added for convenience and |
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1599 compatibility with XEmacs (and is used internally by define-minor-mode). |
28724 | 1600 |
28710 | 1601 ** The function `shell-command' now sets the default directory of the |
1602 `*Shell Command Output*' buffer to the default directory of the buffer | |
1603 from which the command was issued. | |
1604 | |
1605 ** The functions `query-replace', `query-replace-regexp', | |
1606 `query-replace-regexp-eval' `map-query-replace-regexp', | |
1607 `replace-string', `replace-regexp', and `perform-replace' take two | |
1608 additional optional arguments START and END that specify the region to | |
1609 operate on. | |
1610 | |
28658 | 1611 ** The new function `count-screen-lines' is a more flexible alternative |
1612 to `window-buffer-height'. | |
1613 | |
1614 - Function: count-screen-lines &optional BEG END COUNT-FINAL-NEWLINE WINDOW | |
1615 | |
1616 Return the number of screen lines in the region between BEG and END. | |
1617 The number of screen lines may be different from the number of actual | |
1618 lines, due to line breaking, display table, etc. | |
1619 | |
1620 Optional arguments BEG and END default to `point-min' and `point-max' | |
1621 respectively. | |
1622 | |
1623 If region ends with a newline, ignore it unless optinal third argument | |
1624 COUNT-FINAL-NEWLINE is non-nil. | |
1625 | |
1626 The optional fourth argument WINDOW specifies the window used for | |
1627 obtaining parameters such as width, horizontal scrolling, and so | |
1628 on. The default is to use the selected window's parameters. | |
1629 | |
1630 Like `vertical-motion', `count-screen-lines' always uses the current | |
1631 buffer, regardless of which buffer is displayed in WINDOW. This makes | |
1632 possible to use `count-screen-lines' in any buffer, whether or not it | |
1633 is currently displayed in some window. | |
1634 | |
28556 | 1635 ** The new function `mapc' is like `mapcar' but doesn't collect the |
1636 argument function's results. | |
1637 | |
28496 | 1638 ** The functions base64-decode-region and base64-decode-string now |
1639 signal an error instead of returning nil if decoding fails. | |
1640 | |
28492 | 1641 ** The function sendmail-user-agent-compose now recognizes a `body' |
1642 header is the list of headers passed to it. | |
1643 | |
1644 ** The new function member-ignore-case works like `member', but | |
1645 ignores differences in case and text representation. | |
1646 | |
1647 ** The buffer-local variable cursor-type can be used to specify the | |
28323 | 1648 cursor to use in windows displaying a buffer. Values are interpreted |
1649 as follows: | |
1650 | |
1651 t use the cursor specified for the frame (default) | |
1652 nil don't display a cursor | |
1653 `bar' display a bar cursor with default width | |
1654 (bar . WIDTH) display a bar cursor with width WIDTH | |
1655 others display a box cursor. | |
1656 | |
28303 | 1657 ** The variable open-paren-in-column-0-is-defun-start controls whether |
1658 an open parenthesis in column 0 is considered to be the start of a | |
1659 defun. If set, the default, it is considered a defun start. If not | |
1660 set, an open parenthesis in column 0 has no special meaning. | |
1661 | |
28194 | 1662 ** The new function `string-to-syntax' can be used to translate syntax |
28854
a5c81109bc31
Mention PCL-CVS.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28847
diff
changeset
|
1663 specifications in string form as accepted by `modify-syntax-entry' to |
28194 | 1664 the cons-cell form that is used for the values of the `syntax-table' |
1665 text property, and in `font-lock-syntactic-keywords'. | |
1666 | |
1667 Example: | |
1668 | |
1669 (string-to-syntax "()") | |
1670 => (4 . 41) | |
1671 | |
28166 | 1672 ** Emacs' reader supports CL read syntax for integers in bases |
1673 other than 10. | |
1674 | |
1675 *** `#BINTEGER' or `#bINTEGER' reads INTEGER in binary (radix 2). | |
1676 INTEGER optionally contains a sign. | |
1677 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1678 #b1111 |
28166 | 1679 => 15 |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1680 #b-1111 |
28166 | 1681 => -15 |
1682 | |
1683 *** `#OINTEGER' or `#oINTEGER' reads INTEGER in octal (radix 8). | |
1684 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1685 #o666 |
28166 | 1686 => 438 |
1687 | |
1688 *** `#XINTEGER' or `#xINTEGER' reads INTEGER in hexadecimal (radix 16). | |
1689 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1690 #xbeef |
28166 | 1691 => 48815 |
1692 | |
1693 *** `#RADIXrINTEGER' reads INTEGER in radix RADIX, 2 <= RADIX <= 36. | |
1694 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1695 #2R-111 |
28166 | 1696 => -7 |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
1697 #25rah |
28166 | 1698 => 267 |
1699 | |
28335 | 1700 ** The function `documentation-property' now evaluates the value of |
30068
fd80ab818a0c
Fix various typos.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30056
diff
changeset
|
1701 the given property to obtain a string if it doesn't refer to etc/DOC |
28037 | 1702 and isn't a string. |
1703 | |
28335 | 1704 ** If called for a symbol, the function `documentation' now looks for |
1705 a `function-documentation' property of that symbol. If it has a non-nil | |
1706 value, the documentation is taken from that value. If the value is | |
1707 not a string, it is evaluated to obtain a string. | |
1708 | |
27881
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1709 +++ |
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1710 ** The last argument of `define-key-after' defaults to t for convenience. |
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1711 |
28149 | 1712 ** The new function `replace-regexp-in-string' replaces all matches |
27881
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1713 for a regexp in a string. |
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1714 |
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1715 ** `mouse-position' now runs the abnormal hook |
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1716 `mouse-position-function'. |
f54471f7b913
replace-regexps-in-string, mouse-position-function, define-key-after change
Dave Love <fx@gnu.org>
parents:
27847
diff
changeset
|
1717 |
27827 | 1718 ** The function string-to-number now returns a float for numbers |
1719 that don't fit into a Lisp integer. | |
1720 | |
27820 | 1721 ** The variable keyword-symbols-constants-flag has been removed. |
1722 Keywords are now always considered constants. | |
1723 | |
27770 | 1724 +++ |
1725 ** The new function `delete-and-extract-region' deletes text and | |
1726 returns it. | |
1727 | |
27276 | 1728 ** The function `clear-this-command-keys' now also clears the vector |
1729 returned by function `recent-keys'. | |
1730 | |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1731 +++ |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1732 ** Variables `beginning-of-defun-function' and `end-of-defun-function' |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1733 can be used to define handlers for the functions that find defuns. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1734 Major modes can define these locally instead of rebinding M-C-a |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1735 etc. if the normal conventions for defuns are not appropriate for the |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1736 mode. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1737 |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1738 +++ |
27094
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1739 ** easy-mmode-define-minor-mode now takes an additional BODY argument |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1740 and is renamed `define-minor-mode'. |
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1741 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1742 +++ |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1743 ** If an abbrev has a hook function which is a symbol, and that symbol |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1744 has a non-nil `no-self-insert' property, the return value of the hook |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1745 function specifies whether an expansion has been done or not. If it |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1746 returns nil, abbrev-expand also returns nil, meaning "no expansion has |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1747 been performed." |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1748 |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1749 When abbrev expansion is done by typing a self-inserting character, |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1750 and the abbrev has a hook with the `no-self-insert' property, and the |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1751 hook function returns non-nil meaning expansion has been done, |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1752 then the self-inserting character is not inserted. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1753 |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1754 +++ |
26737 | 1755 ** The function `intern-soft' now accepts a symbol as first argument. |
1756 In this case, that exact symbol is looked up in the specified obarray, | |
1757 and the function's value is nil if it is not found. | |
1758 | |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1759 +++ |
26467 | 1760 ** The new macro `with-syntax-table' can be used to evaluate forms |
1761 with the syntax table of the current buffer temporarily set to a | |
1762 specified table. | |
1763 | |
1764 (with-syntax-table TABLE &rest BODY) | |
1765 | |
1766 Evaluate BODY with syntax table of current buffer set to a copy of | |
26541
ce6bf7b42bc7
--with-syntax-table changed.
Gerd Moellmann <gerd@gnu.org>
parents:
26525
diff
changeset
|
1767 TABLE. The current syntax table is saved, BODY is evaluated, and the |
ce6bf7b42bc7
--with-syntax-table changed.
Gerd Moellmann <gerd@gnu.org>
parents:
26525
diff
changeset
|
1768 saved table is restored, even in case of an abnormal exit. Value is |
ce6bf7b42bc7
--with-syntax-table changed.
Gerd Moellmann <gerd@gnu.org>
parents:
26525
diff
changeset
|
1769 what BODY returns. |
26467 | 1770 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1771 +++ |
27693
d8bedafef8d5
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27644
diff
changeset
|
1772 ** Regular expressions now support intervals \{n,m\} as well as |
28063
f1b33463506d
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28051
diff
changeset
|
1773 Perl's shy-groups \(?:...\) and non-greedy *? +? and ?? operators. |
27094
6500fd0a7d8e
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27092
diff
changeset
|
1774 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1775 +++ |
26397
17d6fe2e2d0f
Removal of buffer argument of file-local-copy.
Gerd Moellmann <gerd@gnu.org>
parents:
26360
diff
changeset
|
1776 ** The optional argument BUFFER of function file-local-copy has been |
17d6fe2e2d0f
Removal of buffer argument of file-local-copy.
Gerd Moellmann <gerd@gnu.org>
parents:
26360
diff
changeset
|
1777 removed since it wasn't used by anything. |
17d6fe2e2d0f
Removal of buffer argument of file-local-copy.
Gerd Moellmann <gerd@gnu.org>
parents:
26360
diff
changeset
|
1778 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1779 +++ |
26360
5370b1c171ef
Change in file-locked-p argument.
Gerd Moellmann <gerd@gnu.org>
parents:
26359
diff
changeset
|
1780 ** The file name argument of function `file-locked-p' is now required |
5370b1c171ef
Change in file-locked-p argument.
Gerd Moellmann <gerd@gnu.org>
parents:
26359
diff
changeset
|
1781 instead of being optional. |
5370b1c171ef
Change in file-locked-p argument.
Gerd Moellmann <gerd@gnu.org>
parents:
26359
diff
changeset
|
1782 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1783 +++ |
26277
32e16b70ae15
New built-in error `text-read-only'.
Gerd Moellmann <gerd@gnu.org>
parents:
26271
diff
changeset
|
1784 ** The new built-in error `text-read-only' is signaled when trying to |
32e16b70ae15
New built-in error `text-read-only'.
Gerd Moellmann <gerd@gnu.org>
parents:
26271
diff
changeset
|
1785 modify read-only text. |
32e16b70ae15
New built-in error `text-read-only'.
Gerd Moellmann <gerd@gnu.org>
parents:
26271
diff
changeset
|
1786 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1787 +++ |
26140
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1788 ** New functions and variables for locales. |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1789 |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1790 The new variable `locale-coding-system' specifies how to encode and |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1791 decode strings passed to low-level message functions like strerror and |
26525
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1792 time functions like strftime. The new variables |
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1793 `system-messages-locale' and `system-time-locale' give the system |
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1794 locales to be used when invoking these two types of functions. |
26140
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1795 |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1796 The new function `set-locale-environment' sets the language |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1797 environment, preferred coding system, and locale coding system from |
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1798 the system locale as specified by the LC_ALL, LC_CTYPE, and LANG |
26525
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1799 environment variables. Normally, it is invoked during startup and need |
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1800 not be invoked thereafter. It uses the new variables |
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1801 `locale-language-names', `locale-charset-language-names', and |
4df5920724de
Rename messages-locale to system-messages-locale
Paul Eggert <eggert@twinsun.com>
parents:
26467
diff
changeset
|
1802 `locale-preferred-coding-systems' to make its decisions. |
26140
068f7ad41d40
Describe new functions and variables for locales.
Paul Eggert <eggert@twinsun.com>
parents:
26133
diff
changeset
|
1803 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1804 +++ |
26107
5bdae485eb03
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26096
diff
changeset
|
1805 ** syntax tables now understand nested comments. |
5bdae485eb03
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26096
diff
changeset
|
1806 To declare a comment syntax as allowing nesting, just add an `n' |
5bdae485eb03
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26096
diff
changeset
|
1807 modifier to either of the characters of the comment end and the comment |
5bdae485eb03
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26096
diff
changeset
|
1808 start sequences. |
5bdae485eb03
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26096
diff
changeset
|
1809 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1810 +++ |
25910
918acea58309
Add section for change of pixmap-spec-p to bitmap-spec-p.
Gerd Moellmann <gerd@gnu.org>
parents:
25862
diff
changeset
|
1811 ** The function `pixmap-spec-p' has been renamed `bitmap-spec-p' |
918acea58309
Add section for change of pixmap-spec-p to bitmap-spec-p.
Gerd Moellmann <gerd@gnu.org>
parents:
25862
diff
changeset
|
1812 because `bitmap' is more in line with the usual X terminology. |
918acea58309
Add section for change of pixmap-spec-p to bitmap-spec-p.
Gerd Moellmann <gerd@gnu.org>
parents:
25862
diff
changeset
|
1813 |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1814 +++ |
25853 | 1815 ** New function `propertize' |
1816 | |
1817 The new function `propertize' can be used to conveniently construct | |
1818 strings with text properties. | |
1819 | |
1820 - Function: propertize STRING &rest PROPERTIES | |
1821 | |
1822 Value is a copy of STRING with text properties assigned as specified | |
1823 by PROPERTIES. PROPERTIES is a sequence of pairs PROPERTY VALUE, with | |
1824 PROPERTY being the name of a text property and VALUE being the | |
1825 specified value of that property. Example: | |
1826 | |
1827 (propertize "foo" 'face 'bold 'read-only t) | |
1828 | |
1829 +++ | |
1830 ** push and pop macros. | |
1831 | |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1832 Simple versions of the push and pop macros of Common Lisp |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1833 are now defined in Emacs Lisp. These macros allow only symbols |
25853 | 1834 as the place that holds the list to be changed. |
1835 | |
1836 (push NEWELT LISTNAME) add NEWELT to the front of LISTNAME's value. | |
1837 (pop LISTNAME) return first elt of LISTNAME, and remove it | |
1838 (thus altering the value of LISTNAME). | |
1839 | |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1840 ** New dolist and dotimes macros. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1841 |
27387
d0a7127b33e5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
1842 Simple versions of the dolist and dotimes macros of Common Lisp |
d0a7127b33e5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27385
diff
changeset
|
1843 are now defined in Emacs Lisp. |
27385
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1844 |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1845 (dolist (VAR LIST [RESULT]) BODY...) |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1846 Execute body once for each element of LIST, |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1847 using the variable VAR to hold the current element. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1848 Then return the value of RESULT, or nil if RESULT is omitted. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1849 |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1850 (dotimes (VAR COUNT [RESULT]) BODY...) |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1851 Execute BODY with VAR bound to successive integers running from 0, |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1852 inclusive, to COUNT, exclusive. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1853 Then return the value of RESULT, or nil if RESULT is omitted. |
f7b7fdb0f3f4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
27381
diff
changeset
|
1854 |
25853 | 1855 +++ |
1856 ** Regular expressions now support Posix character classes such | |
1857 as [:alpha:], [:space:] and so on. | |
1858 | |
1859 [:digit:] matches 0 through 9 | |
1860 [:cntrl:] matches ASCII control characters | |
1861 [:xdigit:] matches 0 through 9, a through f and A through F. | |
1862 [:blank:] matches space and tab only | |
1863 [:graph:] matches graphic characters--everything except ASCII control chars, | |
1864 space, and DEL. | |
1865 [:print:] matches printing characters--everything except ASCII control chars | |
1866 and DEL. | |
1867 [:alnum:] matches letters and digits. | |
1868 (But at present, for multibyte characters, | |
1869 it matches anything that has word syntax.) | |
1870 [:alpha:] matches letters. | |
1871 (But at present, for multibyte characters, | |
1872 it matches anything that has word syntax.) | |
1873 [:ascii:] matches ASCII (unibyte) characters. | |
1874 [:nonascii:] matches non-ASCII (multibyte) characters. | |
1875 [:lower:] matches anything lower-case. | |
1876 [:punct:] matches punctuation. | |
1877 (But at present, for multibyte characters, | |
1878 it matches anything that has non-word syntax.) | |
1879 [:space:] matches anything that has whitespace syntax. | |
1880 [:upper:] matches anything upper-case. | |
1881 [:word:] matches anything that has word syntax. | |
1882 | |
1883 +++ | |
1884 ** Emacs now has built-in hash tables. | |
1885 | |
1886 The following functions are defined for hash tables: | |
1887 | |
1888 - Function: make-hash-table ARGS | |
1889 | |
1890 The argument list ARGS consists of keyword/argument pairs. All arguments | |
1891 are optional. The following arguments are defined: | |
1892 | |
1893 :test TEST | |
1894 | |
1895 TEST must be a symbol specifying how to compare keys. Default is `eql'. | |
1896 Predefined are `eq', `eql' and `equal'. If TEST is not predefined, | |
1897 it must have been defined with `define-hash-table-test'. | |
1898 | |
1899 :size SIZE | |
1900 | |
1901 SIZE must be an integer > 0 giving a hint to the implementation how | |
1902 many elements will be put in the hash table. Default size is 65. | |
1903 | |
1904 :rehash-size REHASH-SIZE | |
1905 | |
1906 REHASH-SIZE specifies by how much to grow a hash table once it becomes | |
1907 full. If REHASH-SIZE is an integer, add that to the hash table's old | |
1908 size to get the new size. Otherwise, REHASH-SIZE must be a float > | |
1909 1.0, and the new size is computed by multiplying REHASH-SIZE with the | |
1910 old size. Default rehash size is 1.5. | |
1911 | |
1912 :rehash-threshold THRESHOLD | |
1913 | |
1914 THRESHOLD must be a float > 0 and <= 1.0 specifying when to resize the | |
1915 hash table. It is resized when the ratio of (number of entries) / | |
1916 (size of hash table) is >= THRESHOLD. Default threshold is 0.8. | |
1917 | |
1918 :weakness WEAK | |
1919 | |
30502 | 1920 WEAK must be either nil, one of the symbols `key, `value', |
1921 `key-or-value', `key-and-value', or t, meaning the same as | |
1922 `key-and-value'. Entries are removed from weak tables during garbage | |
1923 collection if their key and/or value are not referenced elsewhere | |
1924 outside of the hash table. Default are non-weak hash tables. | |
25853 | 1925 |
1926 - Function: makehash &optional TEST | |
1927 | |
1928 Similar to make-hash-table, but only TEST can be specified. | |
1929 | |
1930 - Function: hash-table-p TABLE | |
1931 | |
1932 Returns non-nil if TABLE is a hash table object. | |
1933 | |
1934 - Function: copy-hash-table TABLE | |
1935 | |
1936 Returns a copy of TABLE. Only the table itself is copied, keys and | |
1937 values are shared. | |
1938 | |
1939 - Function: hash-table-count TABLE | |
1940 | |
1941 Returns the number of entries in TABLE. | |
1942 | |
1943 - Function: hash-table-rehash-size TABLE | |
1944 | |
1945 Returns the rehash size of TABLE. | |
1946 | |
1947 - Function: hash-table-rehash-threshold TABLE | |
1948 | |
1949 Returns the rehash threshold of TABLE. | |
1950 | |
1951 - Function: hash-table-rehash-size TABLE | |
1952 | |
1953 Returns the size of TABLE. | |
1954 | |
30789 | 1955 - Function: hash-table-test TABLE |
25853 | 1956 |
1957 Returns the test TABLE uses to compare keys. | |
1958 | |
1959 - Function: hash-table-weakness TABLE | |
1960 | |
1961 Returns the weakness specified for TABLE. | |
1962 | |
1963 - Function: clrhash TABLE | |
1964 | |
1965 Clear TABLE. | |
1966 | |
1967 - Function: gethash KEY TABLE &optional DEFAULT | |
1968 | |
1969 Look up KEY in TABLE and return its associated VALUE or DEFAULT if | |
1970 not found. | |
1971 | |
26264 | 1972 - Function: puthash KEY VALUE TABLE |
25853 | 1973 |
1974 Associate KEY with VALUE in TABLE. If KEY is already associated with | |
1975 another value, replace the old value with VALUE. | |
1976 | |
1977 - Function: remhash KEY TABLE | |
1978 | |
1979 Remove KEY from TABLE if it is there. | |
1980 | |
1981 - Function: maphash FUNCTION TABLE | |
1982 | |
1983 Call FUNCTION for all elements in TABLE. FUNCTION must take two | |
1984 arguments KEY and VALUE. | |
1985 | |
1986 - Function: sxhash OBJ | |
1987 | |
1988 Return a hash code for Lisp object OBJ. | |
1989 | |
1990 - Function: define-hash-table-test NAME TEST-FN HASH-FN | |
1991 | |
1992 Define a new hash table test named NAME. If NAME is specified as | |
1993 a test in `make-hash-table', the table created will use TEST-FN for | |
26264 | 1994 comparing keys, and HASH-FN to compute hash codes for keys. Test |
25853 | 1995 and hash function are stored as symbol property `hash-table-test' |
1996 of NAME with a value of (TEST-FN HASH-FN). | |
1997 | |
1998 TEST-FN must take two arguments and return non-nil if they are the same. | |
1999 | |
2000 HASH-FN must take one argument and return an integer that is the hash | |
2001 code of the argument. The function should use the whole range of | |
2002 integer values for hash code computation, including negative integers. | |
2003 | |
2004 Example: The following creates a hash table whose keys are supposed to | |
2005 be strings that are compared case-insensitively. | |
2006 | |
2007 (defun case-fold-string= (a b) | |
2008 (compare-strings a nil nil b nil nil t)) | |
2009 | |
2010 (defun case-fold-string-hash (a) | |
2011 (sxhash (upcase a))) | |
2012 | |
26264 | 2013 (define-hash-table-test 'case-fold 'case-fold-string= |
25853 | 2014 'case-fold-string-hash)) |
2015 | |
2016 (make-hash-table :test 'case-fold) | |
2017 | |
2018 +++ | |
2019 ** The Lisp reader handles circular structure. | |
2020 | |
2021 It now works to use the #N= and #N# constructs to represent | |
2022 circular structures. For example, #1=(a . #1#) represents | |
2023 a cons cell which is its own cdr. | |
2024 | |
2025 +++ | |
2026 ** The Lisp printer handles circular structure. | |
2027 | |
2028 If you bind print-circle to a non-nil value, the Lisp printer outputs | |
2029 #N= and #N# constructs to represent circular and shared structure. | |
2030 | |
2031 +++ | |
2032 ** If the second argument to `move-to-column' is anything but nil or | |
2033 t, that means replace a tab with spaces if necessary to reach the | |
2034 specified column, but do not add spaces at the end of the line if it | |
2035 is too short to reach that column. | |
2036 | |
2037 +++ | |
2038 ** perform-replace has a new feature: the REPLACEMENTS argument may | |
2039 now be a cons cell (FUNCTION . DATA). This means to call FUNCTION | |
2040 after each match to get the replacement text. FUNCTION is called with | |
2041 two arguments: DATA, and the number of replacements already made. | |
2042 | |
2043 If the FROM-STRING contains any upper-case letters, | |
2044 perform-replace also turns off `case-fold-search' temporarily | |
2045 and inserts the replacement text without altering case in it. | |
2046 | |
2047 +++ | |
2048 ** The function buffer-size now accepts an optional argument | |
2049 to specify which buffer to return the size of. | |
2050 | |
2051 +++ | |
2052 ** The calendar motion commands now run the normal hook | |
2053 calendar-move-hook after moving point. | |
2054 | |
2055 +++ | |
2056 ** The new variable small-temporary-file-directory specifies a | |
2057 directory to use for creating temporary files that are likely to be | |
2058 small. (Certain Emacs features use this directory.) If | |
2059 small-temporary-file-directory is nil, they use | |
2060 temporary-file-directory instead. | |
2061 | |
2062 +++ | |
2063 ** The variable `inhibit-modification-hooks', if non-nil, inhibits all | |
2064 the hooks that track changes in the buffer. This affects | |
2065 `before-change-functions' and `after-change-functions', as well as | |
2066 hooks attached to text properties and overlay properties. | |
2067 | |
2068 +++ | |
2069 ** assoc-delete-all is a new function that deletes all the | |
2070 elements of an alist which have a particular value as the car. | |
2071 | |
2072 +++ | |
2073 ** make-temp-file provides a more reliable way to create a temporary file. | |
2074 | |
2075 make-temp-file is used like make-temp-name, except that it actually | |
2076 creates the file before it returns. This prevents a timing error, | |
2077 ensuring that no other job can use the same name for a temporary file. | |
2078 | |
2079 +++ | |
2080 ** New exclusive-open feature in `write-region' | |
2081 | |
2082 The optional seventh arg is now called MUSTBENEW. If non-nil, it insists | |
2083 on a check for an existing file with the same name. If MUSTBENEW | |
2084 is `excl', that means to get an error if the file already exists; | |
2085 never overwrite. If MUSTBENEW is neither nil nor `excl', that means | |
2086 ask for confirmation before overwriting, but do go ahead and | |
2087 overwrite the file if the user gives confirmation. | |
2088 | |
2089 If the MUSTBENEW argument in `write-region' is `excl', | |
2090 that means to use a special feature in the `open' system call | |
2091 to get an error if the file exists at that time. | |
2092 The error reported is `file-already-exists'. | |
2093 | |
2094 +++ | |
2095 ** Function `format' now handles text properties. | |
2096 | |
2097 Text properties of the format string are applied to the result string. | |
2098 If the result string is longer than the format string, text properties | |
2099 ending at the end of the format string are extended to the end of the | |
2100 result string. | |
2101 | |
2102 Text properties from string arguments are applied to the result | |
2103 string where arguments appear in the result string. | |
2104 | |
2105 Example: | |
2106 | |
2107 (let ((s1 "hello, %s") | |
2108 (s2 "world")) | |
2109 (put-text-property 0 (length s1) 'face 'bold s1) | |
2110 (put-text-property 0 (length s2) 'face 'italic s2) | |
26034 | 2111 (format s1 s2)) |
25853 | 2112 |
2113 results in a bold-face string with an italic `world' at the end. | |
2114 | |
2115 +++ | |
2116 ** Messages can now be displayed with text properties. | |
2117 | |
2118 Text properties are handled as described above for function `format'. | |
2119 The following example displays a bold-face message with an italic | |
2120 argument in it. | |
2121 | |
2122 (let ((msg "hello, %s!") | |
2123 (arg "world")) | |
2124 (put-text-property 0 (length msg) 'face 'bold msg) | |
2125 (put-text-property 0 (length arg) 'face 'italic arg) | |
2126 (message msg arg)) | |
2127 | |
2128 +++ | |
2129 ** Sound support | |
2130 | |
2131 Emacs supports playing sound files on GNU/Linux and the free BSDs | |
2132 (Voxware driver and native BSD driver, aka as Luigi's driver). | |
2133 | |
2134 Currently supported file formats are RIFF-WAVE (*.wav) and Sun Audio | |
2135 (*.au). You must configure Emacs with the option `--with-sound=yes' | |
2136 to enable sound support. | |
2137 | |
2138 Sound files can be played by calling (play-sound SOUND). SOUND is a | |
2139 list of the form `(sound PROPERTY...)'. The function is only defined | |
2140 when sound support is present for the system on which Emacs runs. The | |
2141 functions runs `play-sound-functions' with one argument which is the | |
2142 sound to play, before playing the sound. | |
2143 | |
2144 The following sound properties are supported: | |
2145 | |
2146 - `:file FILE' | |
2147 | |
2148 FILE is a file name. If FILE isn't an absolute name, it will be | |
2149 searched relative to `data-directory'. | |
2150 | |
27148 | 2151 - `:data DATA' |
2152 | |
2153 DATA is a string containing sound data. Either :file or :data | |
2154 may be present, but not both. | |
2155 | |
25853 | 2156 - `:volume VOLUME' |
2157 | |
2158 VOLUME must be an integer in the range 0..100 or a float in the range | |
2159 0..1. This property is optional. | |
2160 | |
2161 Other properties are ignored. | |
2162 | |
2163 ** `multimedia' is a new Finder keyword and Custom group. | |
26933 | 2164 |
2165 ** keywordp is a new predicate to test efficiently for an object being | |
2166 a keyword symbol. | |
27145
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2167 |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2168 ** Changes to garbage collection |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2169 |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2170 *** The function garbage-collect now additionally returns the number |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2171 of live and free strings. |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2172 |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2173 *** There is a new variable `strings-consed' holding the number of |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2174 strings that have been consed so far. |
01abacc81cce
Changes to garbage-collect, new var strings-consed,
Gerd Moellmann <gerd@gnu.org>
parents:
27144
diff
changeset
|
2175 |
25853 | 2176 |
29151 | 2177 * Lisp-level Display features added after release 2.6 of the Emacs |
2178 Lisp Manual | |
2179 | |
30222 | 2180 +++ |
2181 ** Help strings in menu items are now used to provide `help-echo' text. | |
29939 | 2182 |
2183 ** The function `image-size' can be used to determine the size of an | |
2184 image. | |
2185 | |
2186 - Function: image-size SPEC &optional PIXELS FRAME | |
2187 | |
2188 Return the size of an image as a pair (WIDTH . HEIGHT). | |
2189 | |
2190 SPEC is an image specification. PIXELS non-nil means return sizes | |
2191 measured in pixels, otherwise return sizes measured in canonical | |
2192 character units (fractions of the width/height of the frame's default | |
2193 font). FRAME is the frame on which the image will be displayed. | |
2194 FRAME nil or omitted means use the selected frame. | |
2195 | |
29506 | 2196 ** The function `find-image' can be used to find a usable image |
2197 satisfying one of a list of specifications. | |
2198 | |
2199 +++ | |
2200 ** The STRING argument of `put-image' and `insert-image' is now | |
2201 optional. | |
2202 | |
29151 | 2203 ** Image specifications may contain the property `:ascent center'. |
2204 | |
2205 When this property is specified, the image is vertically centered | |
2206 around a centerline which would be the vertical center of text drawn | |
2207 at the position of the image, in the manner specified by the text | |
2208 properties and overlays that apply to the image. | |
2209 | |
2210 | |
25853 | 2211 * New Lisp-level Display features in Emacs 21.1 |
2212 | |
2213 Note that +++ before an item means the Lisp manual has been updated. | |
2214 --- means that I have decided it does not need to be in the Lisp manual. | |
2215 When you add a new item, please add it without either +++ or --- | |
2216 so I will know I still need to look at it -- rms. | |
2217 | |
28634 | 2218 ** The function tty-suppress-bold-inverse-default-colors can be used |
2219 to make Emacs avoid displaying text with bold black foreground on TTYs. | |
2220 | |
2221 Some terminals, notably PC consoles, emulate bold text by displaying | |
2222 text in brighter colors. On such a console, a bold black foreground | |
2223 is displayed in a gray color. If this turns out to be hard to read on | |
2224 your monitor---the problem occurred with the mode line on | |
2225 laptops---you can instruct Emacs to ignore the text's boldness, and to | |
2226 just display it black instead. | |
2227 | |
2228 This situation can't be detected automatically. You will have to put | |
2229 a line like | |
2230 | |
2231 (tty-suppress-bold-inverse-default-colors t) | |
2232 | |
2233 in your `.emacs'. | |
2234 | |
25853 | 2235 ** New face implementation. |
2236 | |
2237 Emacs faces have been reimplemented from scratch. They don't use XLFD | |
2238 font names anymore and face merging now works as expected. | |
2239 | |
2240 +++ | |
2241 *** New faces. | |
2242 | |
2243 Each face can specify the following display attributes: | |
2244 | |
2245 1. Font family or fontset alias name. | |
26264 | 2246 |
25853 | 2247 2. Relative proportionate width, aka character set width or set |
2248 width (swidth), e.g. `semi-compressed'. | |
26264 | 2249 |
25853 | 2250 3. Font height in 1/10pt |
26264 | 2251 |
25853 | 2252 4. Font weight, e.g. `bold'. |
26264 | 2253 |
25853 | 2254 5. Font slant, e.g. `italic'. |
26264 | 2255 |
25853 | 2256 6. Foreground color. |
26264 | 2257 |
25853 | 2258 7. Background color. |
2259 | |
2260 8. Whether or not characters should be underlined, and in what color. | |
2261 | |
2262 9. Whether or not characters should be displayed in inverse video. | |
2263 | |
2264 10. A background stipple, a bitmap. | |
2265 | |
2266 11. Whether or not characters should be overlined, and in what color. | |
2267 | |
2268 12. Whether or not characters should be strike-through, and in what | |
2269 color. | |
2270 | |
2271 13. Whether or not a box should be drawn around characters, its | |
2272 color, the width of the box lines, and 3D appearance. | |
2273 | |
2274 Faces are frame-local by nature because Emacs allows to define the | |
2275 same named face (face names are symbols) differently for different | |
2276 frames. Each frame has an alist of face definitions for all named | |
2277 faces. The value of a named face in such an alist is a Lisp vector | |
2278 with the symbol `face' in slot 0, and a slot for each each of the face | |
2279 attributes mentioned above. | |
2280 | |
2281 There is also a global face alist `face-new-frame-defaults'. Face | |
2282 definitions from this list are used to initialize faces of newly | |
2283 created frames. | |
26264 | 2284 |
25853 | 2285 A face doesn't have to specify all attributes. Those not specified |
2286 have a nil value. Faces specifying all attributes are called | |
2287 `fully-specified'. | |
2288 | |
2289 +++ | |
2290 *** Face merging. | |
2291 | |
2292 The display style of a given character in the text is determined by | |
2293 combining several faces. This process is called `face merging'. Any | |
2294 aspect of the display style that isn't specified by overlays or text | |
2295 properties is taken from the `default' face. Since it is made sure | |
2296 that the default face is always fully-specified, face merging always | |
2297 results in a fully-specified face. | |
2298 | |
2299 +++ | |
2300 *** Face realization. | |
2301 | |
2302 After all face attributes for a character have been determined by | |
2303 merging faces of that character, that face is `realized'. The | |
2304 realization process maps face attributes to what is physically | |
2305 available on the system where Emacs runs. The result is a `realized | |
2306 face' in form of an internal structure which is stored in the face | |
2307 cache of the frame on which it was realized. | |
2308 | |
2309 Face realization is done in the context of the charset of the | |
2310 character to display because different fonts and encodings are used | |
2311 for different charsets. In other words, for characters of different | |
2312 charsets, different realized faces are needed to display them. | |
2313 | |
2314 Except for composite characters, faces are always realized for a | |
2315 specific character set and contain a specific font, even if the face | |
2316 being realized specifies a fontset. The reason is that the result of | |
2317 the new font selection stage is better than what can be done with | |
2318 statically defined font name patterns in fontsets. | |
2319 | |
2320 In unibyte text, Emacs' charsets aren't applicable; function | |
2321 `char-charset' reports ASCII for all characters, including those > | |
2322 0x7f. The X registry and encoding of fonts to use is determined from | |
2323 the variable `face-default-registry' in this case. The variable is | |
2324 initialized at Emacs startup time from the font the user specified for | |
2325 Emacs. | |
2326 | |
2327 Currently all unibyte text, i.e. all buffers with | |
2328 `enable-multibyte-characters' nil are displayed with fonts of the same | |
2329 registry and encoding `face-default-registry'. This is consistent | |
2330 with the fact that languages can also be set globally, only. | |
2331 | |
2332 ++++ | |
2333 **** Clearing face caches. | |
2334 | |
2335 The Lisp function `clear-face-cache' can be called to clear face caches | |
2336 on all frames. If called with a non-nil argument, it will also unload | |
2337 unused fonts. | |
2338 | |
2339 +++ | |
2340 *** Font selection. | |
26264 | 2341 |
25853 | 2342 Font selection tries to find the best available matching font for a |
2343 given (charset, face) combination. This is done slightly differently | |
2344 for faces specifying a fontset, or a font family name. | |
2345 | |
2346 If the face specifies a fontset name, that fontset determines a | |
2347 pattern for fonts of the given charset. If the face specifies a font | |
2348 family, a font pattern is constructed. Charset symbols have a | |
2349 property `x-charset-registry' for that purpose that maps a charset to | |
2350 an XLFD registry and encoding in the font pattern constructed. | |
2351 | |
2352 Available fonts on the system on which Emacs runs are then matched | |
2353 against the font pattern. The result of font selection is the best | |
2354 match for the given face attributes in this font list. | |
2355 | |
2356 Font selection can be influenced by the user. | |
2357 | |
2358 The user can specify the relative importance he gives the face | |
2359 attributes width, height, weight, and slant by setting | |
2360 face-font-selection-order (faces.el) to a list of face attribute | |
2361 names. The default is (:width :height :weight :slant), and means | |
2362 that font selection first tries to find a good match for the font | |
2363 width specified by a face, then---within fonts with that width---tries | |
2364 to find a best match for the specified font height, etc. | |
2365 | |
2366 Setting `face-alternative-font-family-alist' allows the user to | |
2367 specify alternative font families to try if a family specified by a | |
2368 face doesn't exist. | |
2369 | |
2370 +++ | |
2371 **** Scalable fonts | |
2372 | |
2373 Emacs can make use of scalable fonts but doesn't do so by default, | |
2374 since the use of too many or too big scalable fonts may crash XFree86 | |
2375 servers. | |
2376 | |
2377 To enable scalable font use, set the variable | |
26034 | 2378 `scalable-fonts-allowed'. A value of nil, the default, means never use |
25853 | 2379 scalable fonts. A value of t means any scalable font may be used. |
2380 Otherwise, the value must be a list of regular expressions. A | |
2381 scalable font may then be used if it matches a regular expression from | |
2382 that list. Example: | |
2383 | |
2384 (setq scalable-fonts-allowed '("muleindian-2$")) | |
2385 | |
2386 allows the use of scalable fonts with registry `muleindian-2'. | |
2387 | |
2388 +++ | |
2389 *** Functions and variables related to font selection. | |
2390 | |
2391 - Function: x-family-fonts &optional FAMILY FRAME | |
2392 | |
2393 Return a list of available fonts of family FAMILY on FRAME. If FAMILY | |
2394 is omitted or nil, list all families. Otherwise, FAMILY must be a | |
2395 string, possibly containing wildcards `?' and `*'. | |
2396 | |
2397 If FRAME is omitted or nil, use the selected frame. Each element of | |
2398 the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT SLANT FIXED-P | |
2399 FULL REGISTRY-AND-ENCODING]. FAMILY is the font family name. | |
2400 POINT-SIZE is the size of the font in 1/10 pt. WIDTH, WEIGHT, and | |
2401 SLANT are symbols describing the width, weight and slant of the font. | |
2402 These symbols are the same as for face attributes. FIXED-P is non-nil | |
2403 if the font is fixed-pitch. FULL is the full name of the font, and | |
2404 REGISTRY-AND-ENCODING is a string giving the registry and encoding of | |
2405 the font. The result list is sorted according to the current setting | |
2406 of the face font sort order. | |
2407 | |
26264 | 2408 - Function: x-font-family-list |
25853 | 2409 |
2410 Return a list of available font families on FRAME. If FRAME is | |
2411 omitted or nil, use the selected frame. Value is a list of conses | |
2412 (FAMILY . FIXED-P) where FAMILY is a font family, and FIXED-P is | |
2413 non-nil if fonts of that family are fixed-pitch. | |
2414 | |
2415 - Variable: font-list-limit | |
2416 | |
2417 Limit for font matching. If an integer > 0, font matching functions | |
2418 won't load more than that number of fonts when searching for a | |
2419 matching font. The default is currently 100. | |
2420 | |
2421 +++ | |
2422 *** Setting face attributes. | |
2423 | |
2424 For the most part, the new face implementation is interface-compatible | |
2425 with the old one. Old face attribute related functions are now | |
2426 implemented in terms of the new functions `set-face-attribute' and | |
2427 `face-attribute'. | |
2428 | |
2429 Face attributes are identified by their names which are keyword | |
2430 symbols. All attributes can be set to `unspecified'. | |
2431 | |
2432 The following attributes are recognized: | |
2433 | |
2434 `:family' | |
2435 | |
2436 VALUE must be a string specifying the font family, e.g. ``courier'', | |
2437 or a fontset alias name. If a font family is specified, wild-cards `*' | |
2438 and `?' are allowed. | |
2439 | |
2440 `:width' | |
2441 | |
2442 VALUE specifies the relative proportionate width of the font to use. | |
2443 It must be one of the symbols `ultra-condensed', `extra-condensed', | |
2444 `condensed', `semi-condensed', `normal', `semi-expanded', `expanded', | |
2445 `extra-expanded', or `ultra-expanded'. | |
2446 | |
2447 `:height' | |
2448 | |
2449 VALUE must be an integer specifying the height of the font to use in | |
2450 1/10 pt. | |
2451 | |
2452 `:weight' | |
2453 | |
2454 VALUE specifies the weight of the font to use. It must be one of the | |
2455 symbols `ultra-bold', `extra-bold', `bold', `semi-bold', `normal', | |
2456 `semi-light', `light', `extra-light', `ultra-light'. | |
2457 | |
2458 `:slant' | |
2459 | |
2460 VALUE specifies the slant of the font to use. It must be one of the | |
2461 symbols `italic', `oblique', `normal', `reverse-italic', or | |
2462 `reverse-oblique'. | |
2463 | |
2464 `:foreground', `:background' | |
2465 | |
2466 VALUE must be a color name, a string. | |
2467 | |
2468 `:underline' | |
2469 | |
2470 VALUE specifies whether characters in FACE should be underlined. If | |
2471 VALUE is t, underline with foreground color of the face. If VALUE is | |
2472 a string, underline with that color. If VALUE is nil, explicitly | |
2473 don't underline. | |
2474 | |
2475 `:overline' | |
2476 | |
2477 VALUE specifies whether characters in FACE should be overlined. If | |
2478 VALUE is t, overline with foreground color of the face. If VALUE is a | |
2479 string, overline with that color. If VALUE is nil, explicitly don't | |
2480 overline. | |
2481 | |
2482 `:strike-through' | |
2483 | |
2484 VALUE specifies whether characters in FACE should be drawn with a line | |
2485 striking through them. If VALUE is t, use the foreground color of the | |
2486 face. If VALUE is a string, strike-through with that color. If VALUE | |
2487 is nil, explicitly don't strike through. | |
2488 | |
2489 `:box' | |
2490 | |
2491 VALUE specifies whether characters in FACE should have a box drawn | |
2492 around them. If VALUE is nil, explicitly don't draw boxes. If | |
2493 VALUE is t, draw a box with lines of width 1 in the foreground color | |
2494 of the face. If VALUE is a string, the string must be a color name, | |
2495 and the box is drawn in that color with a line width of 1. Otherwise, | |
2496 VALUE must be a property list of the form `(:line-width WIDTH | |
2497 :color COLOR :style STYLE)'. If a keyword/value pair is missing from | |
2498 the property list, a default value will be used for the value, as | |
2499 specified below. WIDTH specifies the width of the lines to draw; it | |
2500 defaults to 1. COLOR is the name of the color to draw in, default is | |
2501 the foreground color of the face for simple boxes, and the background | |
2502 color of the face for 3D boxes. STYLE specifies whether a 3D box | |
2503 should be draw. If STYLE is `released-button', draw a box looking | |
2504 like a released 3D button. If STYLE is `pressed-button' draw a box | |
2505 that appears like a pressed button. If STYLE is nil, the default if | |
2506 the property list doesn't contain a style specification, draw a 2D | |
2507 box. | |
2508 | |
2509 `:inverse-video' | |
2510 | |
2511 VALUE specifies whether characters in FACE should be displayed in | |
2512 inverse video. VALUE must be one of t or nil. | |
2513 | |
2514 `:stipple' | |
2515 | |
2516 If VALUE is a string, it must be the name of a file of pixmap data. | |
2517 The directories listed in the `x-bitmap-file-path' variable are | |
2518 searched. Alternatively, VALUE may be a list of the form (WIDTH | |
2519 HEIGHT DATA) where WIDTH and HEIGHT are the size in pixels, and DATA | |
2520 is a string containing the raw bits of the bitmap. VALUE nil means | |
2521 explicitly don't use a stipple pattern. | |
2522 | |
2523 For convenience, attributes `:family', `:width', `:height', `:weight', | |
2524 and `:slant' may also be set in one step from an X font name: | |
2525 | |
2526 `:font' | |
2527 | |
2528 Set font-related face attributes from VALUE. VALUE must be a valid | |
2529 XLFD font name. If it is a font name pattern, the first matching font | |
2530 is used--this is for compatibility with the behavior of previous | |
2531 versions of Emacs. | |
2532 | |
2533 For compatibility with Emacs 20, keywords `:bold' and `:italic' can | |
2534 be used to specify that a bold or italic font should be used. VALUE | |
2535 must be t or nil in that case. A value of `unspecified' is not allowed." | |
2536 | |
2537 Please see also the documentation of `set-face-attribute' and | |
2538 `defface'. | |
2539 | |
2540 *** Face attributes and X resources | |
2541 | |
2542 The following X resource names can be used to set face attributes | |
2543 from X resources: | |
2544 | |
2545 Face attribute X resource class | |
2546 ----------------------------------------------------------------------- | |
2547 :family attributeFamily . Face.AttributeFamily | |
2548 :width attributeWidth Face.AttributeWidth | |
2549 :height attributeHeight Face.AttributeHeight | |
2550 :weight attributeWeight Face.AttributeWeight | |
2551 :slant attributeSlant Face.AttributeSlant | |
2552 foreground attributeForeground Face.AttributeForeground | |
2553 :background attributeBackground . Face.AttributeBackground | |
2554 :overline attributeOverline Face.AttributeOverline | |
2555 :strike-through attributeStrikeThrough Face.AttributeStrikeThrough | |
2556 :box attributeBox Face.AttributeBox | |
2557 :underline attributeUnderline Face.AttributeUnderline | |
2558 :inverse-video attributeInverse Face.AttributeInverse | |
2559 :stipple attributeStipple Face.AttributeStipple | |
26264 | 2560 or attributeBackgroundPixmap |
25853 | 2561 Face.AttributeBackgroundPixmap |
2562 :font attributeFont Face.AttributeFont | |
2563 :bold attributeBold Face.AttributeBold | |
2564 :italic attributeItalic . Face.AttributeItalic | |
2565 :font attributeFont Face.AttributeFont | |
2566 | |
2567 +++ | |
2568 *** Text property `face'. | |
2569 | |
2570 The value of the `face' text property can now be a single face | |
2571 specification or a list of such specifications. Each face | |
2572 specification can be | |
2573 | |
2574 1. A symbol or string naming a Lisp face. | |
2575 | |
2576 2. A property list of the form (KEYWORD VALUE ...) where each | |
2577 KEYWORD is a face attribute name, and VALUE is an appropriate value | |
2578 for that attribute. Please see the doc string of `set-face-attribute' | |
2579 for face attribute names. | |
2580 | |
2581 3. Conses of the form (FOREGROUND-COLOR . COLOR) or | |
2582 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is | |
2583 for compatibility with previous Emacs versions. | |
2584 | |
2585 +++ | |
2586 ** Support functions for colors on text-only terminals. | |
2587 | |
27092
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2588 The function `tty-color-define' can be used to define colors for use |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2589 on TTY and MSDOS frames. It maps a color name to a color number on |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2590 the terminal. Emacs defines a couple of common color mappings by |
25853 | 2591 default. You can get defined colors with a call to |
27092
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2592 `defined-colors'. The function `tty-color-clear' can be |
25853 | 2593 used to clear the mapping table. |
2594 | |
27092
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2595 ** Unified support for colors independent of frame type. |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2596 |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2597 The new functions `defined-colors', `color-defined-p', `color-values', |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2598 and `display-color-p' work for any type of frame. On frames whose |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2599 type is neither x nor w32, these functions transparently map X-style |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2600 color specifications to the closest colors supported by the frame |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2601 display. Lisp programs should use these new functions instead of the |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2602 old `x-defined-colors', `x-color-defined-p', `x-color-values', and |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2603 `x-display-color-p'. (The old function names are still available for |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2604 compatibility; they are now aliases of the new names.) Lisp programs |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2605 should no more look at the value of the variable window-system to |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2606 modify their color-related behavior. |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2607 |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2608 The primitives `color-gray-p' and `color-supported-p' also work for |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2609 any frame type. |
60f5b0f50db9
Document the unified frame-independent support for colors and faces.
Eli Zaretskii <eliz@gnu.org>
parents:
27076
diff
changeset
|
2610 |
27573
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2611 ** Platform-independent functions to describe display capabilities. |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2612 |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2613 The new functions `display-mouse-p', `display-popup-menus-p', |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2614 `display-graphic-p', `display-selections-p', `display-screens', |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2615 `display-pixel-width', `display-pixel-height', `display-mm-width', |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2616 `display-mm-height', `display-backing-store', `display-save-under', |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2617 `display-planes', `display-color-cells', `display-visual-class', and |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2618 `display-grayscale-p' describe the basic capabilities of a particular |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2619 display. Lisp programs should call these functions instead of testing |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2620 the value of the variables `window-system' or `system-type', or calling |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2621 platform-specific functions such as `x-display-pixel-width'. |
32f4457e5501
Document functions which return display capabilities.
Eli Zaretskii <eliz@gnu.org>
parents:
27533
diff
changeset
|
2622 |
25853 | 2623 +++ |
2624 ** The minibuffer prompt is now actually inserted in the minibuffer. | |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2625 |
25853 | 2626 This makes it possible to scroll through the prompt, if you want to. |
2627 | |
2628 The function minubuffer-prompt-end returns the current position of the | |
2629 end of the minibuffer prompt, if the minibuffer is current. | |
2630 Otherwise, it returns zero. | |
2631 | |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2632 ** New `field' abstraction in buffers. |
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2633 |
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2634 There is now code to support an abstraction called `fields' in emacs |
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2635 buffers. A field is a contiguous region of text with the same `field' |
30776 | 2636 property (which can be a text property or an overlay). |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2637 |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2638 Many emacs functions, such as forward-word, forward-sentence, |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2639 forward-paragraph, beginning-of-line, etc., stop moving when they come |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2640 to the boundary between fields; beginning-of-line and end-of-line will |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2641 not let the point move past the field boundary, but other movement |
27144 | 2642 commands continue into the next field if repeated. Stopping at field |
2643 boundaries can be suppressed programmatically by binding | |
2644 `inhibit-field-text-motion' to a non-nil value around calls to these | |
2645 functions. | |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2646 |
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2647 Now that the minibuffer prompt is inserted into the minibuffer, it is in |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2648 a separate field from the user-input part of the buffer, so that common |
26062
fd35581d53c1
Add Miles Bader's description of fields.
Gerd Moellmann <gerd@gnu.org>
parents:
26034
diff
changeset
|
2649 editing commands treat the user's text separately from the prompt. |
25853 | 2650 |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2651 The following functions are defined for operating on fields: |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2652 |
30776 | 2653 - Function: constrain-to-field NEW-POS OLD-POS &optional ESCAPE-FROM-EDGE ONLY-IN-LINE INHIBIT-CAPTURE-PROPERTY |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2654 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2655 Return the position closest to NEW-POS that is in the same field as OLD-POS. |
30776 | 2656 |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2657 A field is a region of text with the same `field' property. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2658 If NEW-POS is nil, then the current point is used instead, and set to the |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2659 constrained position if that is is different. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2660 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2661 If OLD-POS is at the boundary of two fields, then the allowable |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2662 positions for NEW-POS depends on the value of the optional argument |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2663 ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is |
30776 | 2664 constrained to the field that has the same `field' char-property |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2665 as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2666 is non-nil, NEW-POS is constrained to the union of the two adjacent |
30776 | 2667 fields. Additionally, if two fields are separated by another field with |
2668 the special value `boundary', then any point within this special field is | |
2669 also considered to be `on the boundary'. | |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2670 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2671 If the optional argument ONLY-IN-LINE is non-nil and constraining |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2672 NEW-POS would move it to a different line, NEW-POS is returned |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2673 unconstrained. This useful for commands that move by line, like |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2674 C-n or C-a, which should generally respect field boundaries |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2675 only in the case where they can still move to the right line. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2676 |
30776 | 2677 If the optional argument INHIBIT-CAPTURE-PROPERTY is non-nil, and OLD-POS has |
2678 a non-nil property of that name, then any field boundaries are ignored. | |
2679 | |
2680 Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. | |
2681 | |
2682 - Function: delete-field &optional POS | |
2683 | |
2684 Delete the field surrounding POS. | |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2685 A field is a region of text with the same `field' property. |
30776 | 2686 If POS is nil, the value of point is used for POS. |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2687 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2688 - Function: field-beginning &optional POS ESCAPE-FROM-EDGE |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2689 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2690 Return the beginning of the field surrounding POS. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2691 A field is a region of text with the same `field' property. |
30776 | 2692 If POS is nil, the value of point is used for POS. |
2693 If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its | |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2694 field, then the beginning of the *previous* field is returned. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2695 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2696 - Function: field-end &optional POS ESCAPE-FROM-EDGE |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2697 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2698 Return the end of the field surrounding POS. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2699 A field is a region of text with the same `field' property. |
30776 | 2700 If POS is nil, the value of point is used for POS. |
2701 If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field, | |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2702 then the end of the *following* field is returned. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2703 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2704 - Function: field-string &optional POS |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2705 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2706 Return the contents of the field surrounding POS as a string. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2707 A field is a region of text with the same `field' property. |
30776 | 2708 If POS is nil, the value of point is used for POS. |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2709 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2710 - Function: field-string-no-properties &optional POS |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2711 |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2712 Return the contents of the field around POS, without text-properties. |
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2713 A field is a region of text with the same `field' property. |
30776 | 2714 If POS is nil, the value of point is used for POS. |
26300
25356c16306f
Expanded description of `field' property from Miles Bader.
Gerd Moellmann <gerd@gnu.org>
parents:
26292
diff
changeset
|
2715 |
25853 | 2716 +++ |
2717 ** Image support. | |
2718 | |
2719 Emacs can now display images. Images are inserted into text by giving | |
2720 strings or buffer text a `display' text property containing one of | |
2721 (AREA IMAGE) or IMAGE. The display of the `display' property value | |
2722 replaces the display of the characters having that property. | |
2723 | |
2724 If the property value has the form (AREA IMAGE), AREA must be one of | |
2725 `(margin left-margin)', `(margin right-margin)' or `(margin nil)'. If | |
2726 AREA is `(margin nil)', IMAGE will be displayed in the text area of a | |
2727 window, otherwise it will be displayed in the left or right marginal | |
2728 area. | |
2729 | |
2730 IMAGE is an image specification. | |
2731 | |
2732 *** Image specifications | |
2733 | |
2734 Image specifications are lists of the form `(image PROPS)' where PROPS | |
2735 is a property list whose keys are keyword symbols. Each | |
2736 specifications must contain a property `:type TYPE' with TYPE being a | |
26403 | 2737 symbol specifying the image type, e.g. `xbm'. Properties not |
2738 described below are ignored. | |
25853 | 2739 |
2740 The following is a list of properties all image types share. | |
2741 | |
2742 `:ascent ASCENT' | |
2743 | |
28789 | 2744 ASCENT must be a number in the range 0..100, or the symbol `center'. |
2745 If it is a number, it specifies the percentage of the image's height | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
2746 to use for its ascent. |
28789 | 2747 |
2748 If not specified, ASCENT defaults to the value 50 which means that the | |
2749 image will be centered with the base line of the row it appears in. | |
2750 | |
30483
05fc373ff5b8
mention `float-time' and the remote file modtime check
Sam Steingold <sds@gnu.org>
parents:
30482
diff
changeset
|
2751 If ASCENT is `center' the image is vertically centered around a |
29151 | 2752 centerline which is the vertical center of text drawn at the position |
2753 of the image, in the manner specified by the text properties and | |
2754 overlays that apply to the image. | |
25853 | 2755 |
2756 `:margin MARGIN' | |
2757 | |
26264 | 2758 MARGIN must be a number >= 0 specifying how many pixels to put as |
25853 | 2759 margin around the image. Default is 0. |
2760 | |
2761 `:relief RELIEF' | |
2762 | |
2763 RELIEF is analogous to the `:relief' attribute of faces. Puts a relief | |
2764 around an image. | |
2765 | |
2766 `:algorithm ALGO' | |
2767 | |
2768 Apply an image algorithm to the image before displaying it. ALGO must | |
2769 be a symbol specifying the algorithm. Currently only `laplace' is | |
2770 supported which applies a Laplace edge detection algorithm to an image | |
2771 which is intended to display images "disabled." | |
2772 | |
2773 `:heuristic-mask BG' | |
2774 | |
2775 If BG is not nil, build a clipping mask for the image, so that the | |
2776 background of a frame is visible behind the image. If BG is t, | |
2777 determine the background color of the image by looking at the 4 | |
2778 corners of the image, assuming the most frequently occuring color from | |
2779 the corners is the background color of the image. Otherwise, BG must | |
2780 be a list `(RED GREEN BLUE)' specifying the color to assume for the | |
2781 background of the image. | |
2782 | |
2783 `:file FILE' | |
2784 | |
2785 Load image from FILE. If FILE is not absolute after expanding it, | |
2786 search for the image in `data-directory'. Some image types support | |
2787 building images from data. When this is done, no `:file' property | |
2788 may be present in the image specification. | |
2789 | |
27076
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2790 `:data DATA' |
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2791 |
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2792 Get image data from DATA. (As of this writing, this is not yet |
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2793 supported for image type `postscript'). Either :file or :data may be |
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2794 present in an image specification, but not both. All image types |
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2795 support strings as DATA, some types allow additional types of DATA. |
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2796 |
25853 | 2797 *** Supported image types |
2798 | |
26034 | 2799 **** XBM, image type `xbm'. |
25853 | 2800 |
2801 XBM images don't require an external library. Additional image | |
2802 properties supported are | |
2803 | |
2804 `:foreground FG' | |
2805 | |
2806 FG must be a string specifying the image foreground color. Default | |
2807 is the frame's foreground. | |
2808 | |
2809 `:background FG' | |
2810 | |
2811 BG must be a string specifying the image foreground color. Default is | |
2812 the frame's background color. | |
2813 | |
2814 XBM images can be constructed from data instead of file. In this | |
2815 case, the image specification must contain the following properties | |
2816 instead of a `:file' property. | |
2817 | |
2818 `:width WIDTH' | |
2819 | |
2820 WIDTH specifies the width of the image in pixels. | |
2821 | |
2822 `:height HEIGHT' | |
2823 | |
2824 HEIGHT specifies the height of the image in pixels. | |
2825 | |
2826 `:data DATA' | |
2827 | |
2828 DATA must be either | |
2829 | |
2830 1. a string large enough to hold the bitmap data, i.e. it must | |
2831 have a size >= (WIDTH + 7) / 8 * HEIGHT | |
2832 | |
2833 2. a bool-vector of size >= WIDTH * HEIGHT | |
2834 | |
2835 3. a vector of strings or bool-vectors, one for each line of the | |
2836 bitmap. | |
2837 | |
28748 | 2838 4. a string that's an in-memory XBM file. Neither width nor |
2839 height may be specified in this case because these are defined | |
2840 in the file. | |
2841 | |
25853 | 2842 **** XPM, image type `xpm' |
2843 | |
2844 XPM images require the external library `libXpm', package | |
2845 `xpm-3.4k.tar.gz', version 3.4k or later. Make sure the library is | |
2846 found when Emacs is configured by supplying appropriate paths via | |
2847 `--x-includes' and `--x-libraries'. | |
2848 | |
2849 Additional image properties supported are: | |
2850 | |
2851 `:color-symbols SYMBOLS' | |
2852 | |
2853 SYMBOLS must be a list of pairs (NAME . COLOR), with NAME being the | |
2854 name of color as it appears in an XPM file, and COLOR being an X color | |
2855 name. | |
2856 | |
2857 XPM images can be built from memory instead of files. In that case, | |
2858 add a `:data' property instead of a `:file' property. | |
2859 | |
2860 The XPM library uses libz in its implementation so that it is able | |
2861 to display compressed images. | |
2862 | |
2863 **** PBM, image type `pbm' | |
2864 | |
2865 PBM images don't require an external library. Color, gray-scale and | |
2866 mono images are supported. There are no additional image properties | |
2867 defined. | |
2868 | |
2869 **** JPEG, image type `jpeg' | |
2870 | |
2871 Support for JPEG images requires the external library `libjpeg', | |
27055 | 2872 package `jpegsrc.v6a.tar.gz', or later. Additional image properties |
2873 are: | |
2874 | |
25853 | 2875 **** TIFF, image type `tiff' |
2876 | |
2877 Support for TIFF images requires the external library `libtiff', | |
2878 package `tiff-v3.4-tar.gz', or later. There are no additional image | |
2879 properties defined. | |
2880 | |
2881 **** GIF, image type `gif' | |
2882 | |
2883 Support for GIF images requires the external library `libungif', package | |
2884 `libungif-4.1.0', or later. | |
2885 | |
2886 Additional image properties supported are: | |
2887 | |
2888 `:index INDEX' | |
2889 | |
2890 INDEX must be an integer >= 0. Load image number INDEX from a | |
2891 multi-image GIF file. An error is signalled if INDEX is too large. | |
2892 | |
2893 This could be used to implement limited support for animated GIFs. | |
2894 For example, the following function displays a multi-image GIF file | |
2895 at point-min in the current buffer, switching between sub-images | |
2896 every 0.1 seconds. | |
2897 | |
2898 (defun show-anim (file max) | |
2899 "Display multi-image GIF file FILE which contains MAX subimages." | |
2900 (display-anim (current-buffer) file 0 max t)) | |
2901 | |
2902 (defun display-anim (buffer file idx max first-time) | |
2903 (when (= idx max) | |
2904 (setq idx 0)) | |
27076
40c18bc759e9
Change description of :data for images.
Gerd Moellmann <gerd@gnu.org>
parents:
27055
diff
changeset
|
2905 (let ((img (create-image file nil nil :index idx))) |
25853 | 2906 (save-excursion |
2907 (set-buffer buffer) | |
2908 (goto-char (point-min)) | |
2909 (unless first-time (delete-char 1)) | |
2910 (insert-image img "x")) | |
2911 (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil))) | |
2912 | |
2913 **** PNG, image type `png' | |
2914 | |
2915 Support for PNG images requires the external library `libpng', | |
2916 package `libpng-1.0.2.tar.gz', or later. There are no additional image | |
2917 properties defined. | |
2918 | |
2919 **** Ghostscript, image type `postscript'. | |
2920 | |
2921 Additional image properties supported are: | |
2922 | |
2923 `:pt-width WIDTH' | |
2924 | |
2925 WIDTH is width of the image in pt (1/72 inch). WIDTH must be an | |
26034 | 2926 integer. This is a required property. |
25853 | 2927 |
2928 `:pt-height HEIGHT' | |
2929 | |
2930 HEIGHT specifies the height of the image in pt (1/72 inch). HEIGHT | |
26034 | 2931 must be a integer. This is an required property. |
25853 | 2932 |
2933 `:bounding-box BOX' | |
2934 | |
2935 BOX must be a list or vector of 4 integers giving the bounding box of | |
2936 the PS image, analogous to the `BoundingBox' comment found in PS | |
2937 files. This is an required property. | |
2938 | |
2939 Part of the Ghostscript interface is implemented in Lisp. See | |
2940 lisp/gs.el. | |
2941 | |
2942 *** Lisp interface. | |
2943 | |
26264 | 2944 The variable `image-types' contains a list of those image types |
2945 which are supported in the current configuration. | |
25853 | 2946 |
2947 Images are stored in an image cache and removed from the cache when | |
2948 they haven't been displayed for `image-cache-eviction-delay seconds. | |
2949 The function `clear-image-cache' can be used to clear the image cache | |
28759 | 2950 manually. Images in the cache are compared with `equal', i.e. all |
2951 images with `equal' specifications share the same image. | |
25853 | 2952 |
2953 *** Simplified image API, image.el | |
2954 | |
2955 The new Lisp package image.el contains functions that simplify image | |
2956 creation and putting images into text. The function `create-image' | |
2957 can be used to create images. The macro `defimage' can be used to | |
2958 define an image based on available image types. The functions | |
2959 `put-image' and `insert-image' can be used to insert an image into a | |
2960 buffer. | |
2961 | |
2962 +++ | |
2963 ** Display margins. | |
2964 | |
2965 Windows can now have margins which are used for special text | |
2966 and images. | |
2967 | |
2968 To give a window margins, either set the buffer-local variables | |
2969 `left-margin-width' and `right-margin-width', or call | |
2970 `set-window-margins'. The function `window-margins' can be used to | |
2971 obtain the current settings. To make `left-margin-width' and | |
2972 `right-margin-width' take effect, you must set them before displaying | |
2973 the buffer in a window, or use `set-window-buffer' to force an update | |
2974 of the display margins. | |
2975 | |
2976 You can put text in margins by giving it a `display' text property | |
2977 containing a pair of the form `(LOCATION . VALUE)', where LOCATION is | |
2978 one of `left-margin' or `right-margin' or nil. VALUE can be either a | |
2979 string, an image specification or a stretch specification (see later | |
2980 in this file). | |
2981 | |
2982 +++ | |
2983 ** Help display | |
2984 | |
2985 Emacs displays short help messages in the echo area, when the mouse | |
2986 moves over a tool-bar item or a piece of text that has a text property | |
2987 `help-echo'. This feature also applies to strings in the mode line | |
2988 that have a `help-echo' property. | |
2989 | |
30219 | 2990 If the value of the `help-echo' property is a function, that function |
30305 | 2991 is called with three arguments WINDOW, OBJECT and POSITION. WINDOW is |
30372 | 2992 the window in which the help was found. |
2993 | |
2994 If OBJECT is a buffer, POS is the position in the buffer where the | |
2995 `help-echo' text property was found. | |
2996 | |
2997 If OBJECT is an overlay, that overlay has a `help-echo' property, and | |
2998 POS is the position in the overlay's buffer under the mouse. | |
2999 | |
3000 If OBJECT is a string (an overlay string or a string displayed with | |
30467
26afdae5ea13
--disable-largefile, 64-bit solaris
Dave Love <fx@gnu.org>
parents:
30445
diff
changeset
|
3001 the `display' property), POS is the position in that string under the |
30372 | 3002 mouse. |
30219 | 3003 |
3004 If the value of the `help-echo' property is neither a function nor a | |
3005 string, it is evaluated to obtain a help string. | |
3006 | |
3007 For tool-bar and menu-bar items, their key definition is used to | |
3008 determine the help to display. If their definition contains a | |
3009 property `:help FORM', FORM is evaluated to determine the help string. | |
3010 For tool-bar items without a help form, the caption of the item is | |
3011 used as help string. | |
25853 | 3012 |
3013 The hook `show-help-function' can be set to a function that displays | |
30339
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
3014 the help string differently. For example, enabling a tooltip window |
70d759570f7a
C-down-mouse-3. Move concat change.
Dave Love <fx@gnu.org>
parents:
30319
diff
changeset
|
3015 causes the help display to appear there instead of in the echo area. |
25853 | 3016 |
3017 +++ | |
3018 ** Vertical fractional scrolling. | |
3019 | |
3020 The display of text in windows can be scrolled smoothly in pixels. | |
3021 This is useful, for example, for making parts of large images visible. | |
3022 | |
3023 The function `window-vscroll' returns the current value of vertical | |
3024 scrolling, a non-negative fraction of the canonical character height. | |
3025 The function `set-window-vscroll' can be used to set the vertical | |
3026 scrolling value. Here is an example of how these function might be | |
3027 used. | |
3028 | |
26264 | 3029 (global-set-key [A-down] |
3030 #'(lambda () | |
25853 | 3031 (interactive) |
26264 | 3032 (set-window-vscroll (selected-window) |
25853 | 3033 (+ 0.5 (window-vscroll))))) |
26264 | 3034 (global-set-key [A-up] |
25853 | 3035 #'(lambda () |
3036 (interactive) | |
26264 | 3037 (set-window-vscroll (selected-window) |
25853 | 3038 (- (window-vscroll) 0.5))))) |
3039 | |
3040 +++ | |
3041 ** New hook `fontification-functions'. | |
3042 | |
3043 Functions from `fontification-functions' are called from redisplay | |
3044 when it encounters a region of text that is not yet fontified. This | |
3045 variable automatically becomes buffer-local when set. Each function | |
3046 is called with one argument, POS. | |
3047 | |
3048 At least one of the hook functions should fontify one or more | |
3049 characters starting at POS in the current buffer. It should mark them | |
3050 as fontified by giving them a non-nil value of the `fontified' text | |
3051 property. It may be reasonable for these functions to check for the | |
3052 `fontified' property and not put it back on, but they do not have to. | |
3053 | |
3054 +++ | |
3055 ** Tool bar support. | |
3056 | |
3057 Emacs supports a tool bar at the top of a frame under X. The frame | |
3058 parameter `tool-bar-lines' (X resource "toolBar", class "ToolBar") | |
3059 controls how may lines to reserve for the tool bar. A zero value | |
3060 suppresses the tool bar. If the value is non-zero and | |
3061 `auto-resize-tool-bars' is non-nil the tool bar's size will be changed | |
3062 automatically so that all tool bar items are visible. | |
3063 | |
3064 *** Tool bar item definitions | |
3065 | |
3066 Tool bar items are defined using `define-key' with a prefix-key | |
3067 `tool-bar'. For example `(define-key global-map [tool-bar item1] ITEM)' | |
3068 where ITEM is a list `(menu-item CAPTION BINDING PROPS...)'. | |
26264 | 3069 |
25853 | 3070 CAPTION is the caption of the item, If it's not a string, it is |
3071 evaluated to get a string. The caption is currently not displayed in | |
3072 the tool bar, but it is displayed if the item doesn't have a `:help' | |
3073 property (see below). | |
26264 | 3074 |
25853 | 3075 BINDING is the tool bar item's binding. Tool bar items with keymaps as |
3076 binding are currently ignored. | |
3077 | |
3078 The following properties are recognized: | |
3079 | |
3080 `:enable FORM'. | |
26264 | 3081 |
25853 | 3082 FORM is evaluated and specifies whether the tool bar item is enabled |
3083 or disabled. | |
26264 | 3084 |
25853 | 3085 `:visible FORM' |
26264 | 3086 |
25853 | 3087 FORM is evaluated and specifies whether the tool bar item is displayed. |
26264 | 3088 |
25853 | 3089 `:filter FUNCTION' |
3090 | |
3091 FUNCTION is called with one parameter, the same list BINDING in which | |
3092 FUNCTION is specified as the filter. The value FUNCTION returns is | |
3093 used instead of BINDING to display this item. | |
26264 | 3094 |
25853 | 3095 `:button (TYPE SELECTED)' |
3096 | |
3097 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated | |
3098 and specifies whether the button is selected (pressed) or not. | |
26264 | 3099 |
25853 | 3100 `:image IMAGES' |
3101 | |
3102 IMAGES is either a single image specification or a vector of four | |
3103 image specifications. If it is a vector, this table lists the | |
3104 meaning of each of the four elements: | |
3105 | |
3106 Index Use when item is | |
3107 ---------------------------------------- | |
3108 0 enabled and selected | |
3109 1 enabled and deselected | |
3110 2 disabled and selected | |
3111 3 disabled and deselected | |
26264 | 3112 |
28946 | 3113 If IMAGE is a single image specification, a Laplace edge-detection |
3114 algorithm is used on that image to draw the image in disabled state. | |
3115 | |
25853 | 3116 `:help HELP-STRING'. |
26264 | 3117 |
25853 | 3118 Gives a help string to display for the tool bar item. This help |
3119 is displayed when the mouse is moved over the item. | |
3120 | |
3121 *** Tool-bar-related variables. | |
3122 | |
3123 If `auto-resize-tool-bar' is non-nil, the tool bar will automatically | |
3124 resize to show all defined tool bar items. It will never grow larger | |
3125 than 1/4 of the frame's size. | |
3126 | |
26264 | 3127 If `auto-raise-tool-bar-buttons' is non-nil, tool bar buttons will be |
25853 | 3128 raised when the mouse moves over them. |
3129 | |
3130 You can add extra space between tool bar items by setting | |
3131 `tool-bar-button-margin' to a positive integer specifying a number of | |
3132 pixels. Default is 1. | |
3133 | |
3134 You can change the shadow thickness of tool bar buttons by setting | |
3135 `tool-bar-button-relief' to an integer. Default is 3. | |
3136 | |
3137 *** Tool-bar clicks with modifiers. | |
3138 | |
3139 You can bind commands to clicks with control, shift, meta etc. on | |
26264 | 3140 a tool bar item. If |
25853 | 3141 |
3142 (define-key global-map [tool-bar shell] | |
3143 '(menu-item "Shell" shell | |
3144 :image (image :type xpm :file "shell.xpm"))) | |
3145 | |
3146 is the original tool bar item definition, then | |
3147 | |
3148 (define-key global-map [tool-bar S-shell] 'some-command) | |
3149 | |
3150 makes a binding to run `some-command' for a shifted click on the same | |
3151 item. | |
3152 | |
3153 ** Mode line changes. | |
3154 | |
3155 +++ | |
3156 *** Mouse-sensitive mode line. | |
3157 | |
3158 The mode line can be made mouse-sensitive by displaying strings there | |
3159 that have a `local-map' text property. There are three ways to display | |
3160 a string with a `local-map' property in the mode line. | |
3161 | |
3162 1. The mode line spec contains a variable whose string value has | |
3163 a `local-map' text property. | |
3164 | |
3165 2. The mode line spec contains a format specifier (e.g. `%12b'), and | |
3166 that format specifier has a `local-map' property. | |
3167 | |
3168 3. The mode line spec contains a list containing `:eval FORM'. FORM | |
3169 is evaluated. If the result is a string, and that string has a | |
3170 `local-map' property. | |
3171 | |
3172 The same mechanism is used to determine the `face' and `help-echo' | |
3173 properties of strings in the mode line. See `bindings.el' for an | |
3174 example. | |
3175 | |
26359
d2970b5d3b72
Add mode line element '(:eval FORM)'.
Gerd Moellmann <gerd@gnu.org>
parents:
26322
diff
changeset
|
3176 *** If a mode line element has the form `(:eval FORM)', FORM is |
d2970b5d3b72
Add mode line element '(:eval FORM)'.
Gerd Moellmann <gerd@gnu.org>
parents:
26322
diff
changeset
|
3177 evaluated and the result is used as mode line element. |
d2970b5d3b72
Add mode line element '(:eval FORM)'.
Gerd Moellmann <gerd@gnu.org>
parents:
26322
diff
changeset
|
3178 |
25853 | 3179 +++ |
3180 *** You can suppress mode-line display by setting the buffer-local | |
3181 variable mode-line-format to nil. | |
3182 | |
3183 +++ | |
3184 *** A headerline can now be displayed at the top of a window. | |
3185 | |
3186 This mode line's contents are controlled by the new variable | |
3187 `header-line-format' and `default-header-line-format' which are | |
3188 completely analogous to `mode-line-format' and | |
3189 `default-mode-line-format'. A value of nil means don't display a top | |
3190 line. | |
3191 | |
3192 The appearance of top mode lines is controlled by the face | |
3193 `header-line'. | |
3194 | |
3195 The function `coordinates-in-window-p' returns `header-line' for a | |
3196 position in the header-line. | |
3197 | |
3198 +++ | |
3199 ** Text property `display' | |
3200 | |
3201 The `display' text property is used to insert images into text, and | |
3202 also control other aspects of how text displays. The value of the | |
3203 `display' property should be a display specification, as described | |
3204 below, or a list or vector containing display specifications. | |
3205 | |
3206 *** Variable width and height spaces | |
3207 | |
3208 To display a space of fractional width or height, use a display | |
3209 specification of the form `(LOCATION STRECH)'. If LOCATION is | |
3210 `(margin left-margin)', the space is displayed in the left marginal | |
3211 area, if it is `(margin right-margin)', it is displayed in the right | |
3212 marginal area, and if LOCATION is `(margin nil)' the space is | |
3213 displayed in the text. In the latter case you can also use the | |
3214 simpler form STRETCH as property value. | |
3215 | |
3216 The stretch specification STRETCH itself is a list of the form `(space | |
3217 PROPS)', where PROPS is a property list which can contain the | |
3218 properties described below. | |
3219 | |
3220 The display of the fractional space replaces the display of the | |
3221 characters having the `display' property. | |
3222 | |
3223 - :width WIDTH | |
3224 | |
3225 Specifies that the space width should be WIDTH times the normal | |
3226 character width. WIDTH can be an integer or floating point number. | |
3227 | |
3228 - :relative-width FACTOR | |
3229 | |
3230 Specifies that the width of the stretch should be computed from the | |
3231 first character in a group of consecutive characters that have the | |
3232 same `display' property. The computation is done by multiplying the | |
3233 width of that character by FACTOR. | |
3234 | |
3235 - :align-to HPOS | |
3236 | |
3237 Specifies that the space should be wide enough to reach HPOS. The | |
3238 value HPOS is measured in units of the normal character width. | |
3239 | |
3240 Exactly one of the above properties should be used. | |
3241 | |
3242 - :height HEIGHT | |
3243 | |
3244 Specifies the height of the space, as HEIGHT, measured in terms of the | |
3245 normal line height. | |
3246 | |
3247 - :relative-height FACTOR | |
3248 | |
3249 The height of the space is computed as the product of the height | |
3250 of the text having the `display' property and FACTOR. | |
3251 | |
3252 - :ascent ASCENT | |
3253 | |
3254 Specifies that ASCENT percent of the height of the stretch should be | |
3255 used for the ascent of the stretch, i.e. for the part above the | |
3256 baseline. The value of ASCENT must be a non-negative number less or | |
3257 equal to 100. | |
3258 | |
3259 You should not use both `:height' and `:relative-height' together. | |
3260 | |
3261 *** Images | |
3262 | |
3263 A display specification for an image has the form `(LOCATION | |
3264 . IMAGE)', where IMAGE is an image specification. The image replaces, | |
3265 in the display, the characters having this display specification in | |
3266 their `display' text property. If LOCATION is `(margin left-margin)', | |
3267 the image will be displayed in the left marginal area, if it is | |
3268 `(margin right-margin)' it will be displayed in the right marginal | |
3269 area, and if LOCATION is `(margin nil)' the image will be displayed in | |
3270 the text. In the latter case you can also use the simpler form IMAGE | |
3271 as display specification. | |
3272 | |
3273 *** Other display properties | |
3274 | |
3275 - :space-width FACTOR | |
3276 | |
3277 Specifies that space characters in the text having that property | |
3278 should be displayed FACTOR times as wide as normal; FACTOR must be an | |
3279 integer or float. | |
3280 | |
3281 - :height HEIGHT | |
3282 | |
3283 Display text having this property in a font that is smaller or larger. | |
3284 | |
3285 If HEIGHT is a list of the form `(+ N)', where N is an integer, that | |
3286 means to use a font that is N steps larger. If HEIGHT is a list of | |
3287 the form `(- N)', that means to use a font that is N steps smaller. A | |
3288 ``step'' is defined by the set of available fonts; each size for which | |
3289 a font is available counts as a step. | |
3290 | |
3291 If HEIGHT is a number, that means to use a font that is HEIGHT times | |
3292 as tall as the frame's default font. | |
3293 | |
3294 If HEIGHT is a symbol, it is called as a function with the current | |
3295 height as argument. The function should return the new height to use. | |
3296 | |
3297 Otherwise, HEIGHT is evaluated to get the new height, with the symbol | |
3298 `height' bound to the current specified font height. | |
3299 | |
3300 - :raise FACTOR | |
3301 | |
3302 FACTOR must be a number, specifying a multiple of the current | |
3303 font's height. If it is positive, that means to display the characters | |
3304 raised. If it is negative, that means to display them lower down. The | |
3305 amount of raising or lowering is computed without taking account of the | |
3306 `:height' subproperty. | |
3307 | |
3308 *** Conditional display properties | |
3309 | |
3310 All display specifications can be conditionalized. If a specification | |
3311 has the form `(:when CONDITION . SPEC)', the specification SPEC | |
3312 applies only when CONDITION yields a non-nil value when evaluated. | |
3313 During evaluattion, point is temporarily set to the end position of | |
3314 the text having the `display' property. | |
3315 | |
3316 The normal specification consisting of SPEC only is equivalent to | |
3317 `(:when t SPEC)'. | |
3318 | |
3319 +++ | |
3320 ** New menu separator types. | |
3321 | |
3322 Emacs now supports more than one menu separator type. Menu items with | |
3323 item names consisting of dashes only (including zero dashes) are | |
3324 treated like before. In addition, the following item names are used | |
3325 to specify other menu separator types. | |
3326 | |
3327 - `--no-line' or `--space', or `--:space', or `--:noLine' | |
3328 | |
3329 No separator lines are drawn, but a small space is inserted where the | |
3330 separator occurs. | |
3331 | |
3332 - `--single-line' or `--:singleLine' | |
3333 | |
3334 A single line in the menu's foreground color. | |
3335 | |
3336 - `--double-line' or `--:doubleLine' | |
3337 | |
3338 A double line in the menu's foreground color. | |
3339 | |
3340 - `--single-dashed-line' or `--:singleDashedLine' | |
3341 | |
3342 A single dashed line in the menu's foreground color. | |
3343 | |
3344 - `--double-dashed-line' or `--:doubleDashedLine' | |
3345 | |
3346 A double dashed line in the menu's foreground color. | |
3347 | |
3348 - `--shadow-etched-in' or `--:shadowEtchedIn' | |
3349 | |
3350 A single line with 3D sunken appearance. This is the the form | |
3351 displayed for item names consisting of dashes only. | |
3352 | |
3353 - `--shadow-etched-out' or `--:shadowEtchedOut' | |
3354 | |
3355 A single line with 3D raised appearance. | |
3356 | |
3357 - `--shadow-etched-in-dash' or `--:shadowEtchedInDash' | |
3358 | |
3359 A single dashed line with 3D sunken appearance. | |
3360 | |
3361 - `--shadow-etched-out-dash' or `--:shadowEtchedOutDash' | |
3362 | |
3363 A single dashed line with 3D raise appearance. | |
3364 | |
3365 - `--shadow-double-etched-in' or `--:shadowDoubleEtchedIn' | |
3366 | |
3367 Two lines with 3D sunken appearance. | |
3368 | |
3369 - `--shadow-double-etched-out' or `--:shadowDoubleEtchedOut' | |
3370 | |
3371 Two lines with 3D raised appearance. | |
3372 | |
3373 - `--shadow-double-etched-in-dash' or `--:shadowDoubleEtchedInDash' | |
3374 | |
3375 Two dashed lines with 3D sunken appearance. | |
3376 | |
3377 - `--shadow-double-etched-out-dash' or `--:shadowDoubleEtchedOutDash' | |
3378 | |
3379 Two dashed lines with 3D raised appearance. | |
3380 | |
3381 Under LessTif/Motif, the last four separator types are displayed like | |
3382 the corresponding single-line separators. | |
3383 | |
3384 +++ | |
3385 ** New frame parameters for scroll bar colors. | |
3386 | |
3387 The new frame parameters `scroll-bar-foreground' and | |
3388 `scroll-bar-background' can be used to change scroll bar colors. | |
3389 Their value must be either a color name, a string, or nil to specify | |
3390 that scroll bars should use a default color. For toolkit scroll bars, | |
3391 default colors are toolkit specific. For non-toolkit scroll bars, the | |
3392 default background is the background color of the frame, and the | |
3393 default foreground is black. | |
3394 | |
3395 The X resource name of these parameters are `scrollBarForeground' | |
3396 (class ScrollBarForeground) and `scrollBarBackground' (class | |
3397 `ScrollBarBackground'). | |
3398 | |
3399 Setting these parameters overrides toolkit specific X resource | |
3400 settings for scroll bar colors. | |
3401 | |
3402 +++ | |
3403 ** You can set `redisplay-dont-pause' to a non-nil value to prevent | |
3404 display updates from being interrupted when input is pending. | |
3405 | |
3406 --- | |
3407 ** Changing a window's width may now change its window start if it | |
3408 starts on a continuation line. The new window start is computed based | |
3409 on the window's new width, starting from the start of the continued | |
3410 line as the start of the screen line with the minimum distance from | |
3411 the original window start. | |
3412 | |
3413 --- | |
3414 ** The variable `hscroll-step' and the functions | |
3415 `hscroll-point-visible' and `hscroll-window-column' have been removed | |
3416 now that proper horizontal scrolling is implemented. | |
3417 | |
3418 +++ | |
3419 ** Windows can now be made fixed-width and/or fixed-height. | |
3420 | |
3421 A window is fixed-size if its buffer has a buffer-local variable | |
3422 `window-size-fixed' whose value is not nil. A value of `height' makes | |
3423 windows fixed-height, a value of `width' makes them fixed-width, any | |
3424 other non-nil value makes them both fixed-width and fixed-height. | |
3425 | |
3426 The following code makes all windows displaying the current buffer | |
3427 fixed-width and fixed-height. | |
3428 | |
3429 (set (make-local-variable 'window-size-fixed) t) | |
3430 | |
3431 A call to enlarge-window on a window gives an error if that window is | |
3432 fixed-width and it is tried to change the window's width, or if the | |
3433 window is fixed-height, and it is tried to change its height. To | |
3434 change the size of a fixed-size window, bind `window-size-fixed' | |
3435 temporarily to nil, for example | |
3436 | |
3437 (let ((window-size-fixed nil)) | |
3438 (enlarge-window 10)) | |
3439 | |
26264 | 3440 Likewise, an attempt to split a fixed-height window vertically, |
25853 | 3441 or a fixed-width window horizontally results in a error. |
28094
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3442 |
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3443 ** The cursor-type frame parameter is now supported on MS-DOS |
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3444 terminals. When Emacs starts, it by default changes the cursor shape |
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3445 to a solid box, as it does on Unix. The `cursor-type' frame parameter |
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3446 overrides this as it does on Unix, except that the bar cursor is |
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3447 horizontal rather than vertical (since the MS-DOS display doesn't |
e1e48e0663f6
Mention cursor-type support on MS-DOS terminals.
Eli Zaretskii <eliz@gnu.org>
parents:
28063
diff
changeset
|
3448 support a vertical-bar cursor). |
30786 | 3449 |
25853 | 3450 |
30786 | 3451 * For older news, see the file NEWS.1. |
25853 | 3452 |
3453 ---------------------------------------------------------------------- | |
3454 Copyright information: | |
3455 | |
27200 | 3456 Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
25853 | 3457 |
3458 Permission is granted to anyone to make or distribute verbatim copies | |
3459 of this document as received, in any medium, provided that the | |
3460 copyright notice and this permission notice are preserved, | |
3461 thus giving the recipient permission to redistribute in turn. | |
3462 | |
3463 Permission is granted to distribute modified versions | |
3464 of this document, or of portions of it, | |
3465 under the above conditions, provided also that they | |
3466 carry prominent notices stating who last changed them. | |
3467 | |
3468 Local variables: | |
3469 mode: outline | |
3470 paragraph-separate: "[ ]*$" | |
3471 end: |