comparison etc/NEWS @ 41229:70059cb88be4

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 18 Nov 2001 05:59:41 +0000
parents eab977ad2163
children 003c53bb8906
comparison
equal deleted inserted replaced
41228:06145993e54d 41229:70059cb88be4
15 `--program-suffix' and `--program-transform-name' that affect the names of 15 `--program-suffix' and `--program-transform-name' that affect the names of
16 installed programs. 16 installed programs.
17 17
18 18
19 * Changes in Emacs 21.3 19 * Changes in Emacs 21.3
20 20
21 ** The keyboard-coding-system is now automatically set based on
22 your current locale settings. If it turns out that your terminal
23 does not support the encoding implied by your locale, you will
24 need to add
25
26 (set-keyboard-coding-system nil)
27
28 to your .emacs to revert to the old behavior.
29
21 +++ 30 +++
22 ** Emacs now reads the standard abbrevs file ~/.abbrev_defs 31 ** Emacs now reads the standard abbrevs file ~/.abbrev_defs
23 automatically at startup, if it exists. And it always offers to save 32 automatically at startup, if it exists. And it always offers to save
24 abbrevs (if you have changed them) when if offers to save modified 33 abbrevs (if you have changed them) when if offers to save modified
25 buffers. 34 buffers.
42 with a space, if they visit files. 51 with a space, if they visit files.
43 52
44 ** You can now customize fill-nobreak-predicate to control where 53 ** You can now customize fill-nobreak-predicate to control where
45 filling can break lines. We provide two sample predicates, 54 filling can break lines. We provide two sample predicates,
46 fill-single-word-nobreak-p and fill-french-nobreak-p. 55 fill-single-word-nobreak-p and fill-french-nobreak-p.
47
48 ** In Texinfo mode, when Font-Lock is enabled, updating one of the
49 `foo's in `@foo ... @end foo' updates the other one on the fly.
50 56
51 ** New user option `add-log-always-start-new-record'. 57 ** New user option `add-log-always-start-new-record'.
52 When this option is enabled, M-x add-change-log-entry will always 58 When this option is enabled, M-x add-change-log-entry will always
53 start a new record regardless of when the last record is. 59 start a new record regardless of when the last record is.
54 60
144 (function (lambda () 150 (function (lambda ()
145 (master-set-slave sql-buffer)))) 151 (master-set-slave sql-buffer))))
146 152
147 153
148 * Lisp Changes in Emacs 21.3 154 * Lisp Changes in Emacs 21.3
155
156 ** defcustom and other custom declarations now use a default group
157 (the last group defined in the same file) when no :group was given.
158
159 ** emacsserver now runs pre-command-hook and post-command-hook when
160 it receives a request from emacsclient.
161
162 ** The default value of paragraph-start and indent-line-function has
163 been changed to reflect the one used in text-mode rather than the one
164 used in indented-text-mode.
149 165
150 ** If a major mode function has a non-nil `no-clone-indirect' 166 ** If a major mode function has a non-nil `no-clone-indirect'
151 property, `clone-indirect-buffer' signals an error if you use 167 property, `clone-indirect-buffer' signals an error if you use
152 it in that buffer. 168 it in that buffer.
153 169