NEWS: Fix typo in last commit.
[bpt/emacs.git] / etc / NEWS
CommitLineData
29b7722a 1GNU Emacs NEWS -- history of user-visible changes.
5b87ad55 2
ba318903 3Copyright (C) 2010-2014 Free Software Foundation, Inc.
5b87ad55 4See the end of the file for license conditions.
a933dad1 5
893db5bc 6Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
9a21d88b
KS
7If possible, use M-x report-emacs-bug.
8
eb199145 9This file is about changes in Emacs version 24.
9a21d88b 10
eb199145
GM
11See files NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18,
12and NEWS.1-17 for changes in older Emacs versions.
9a21d88b
KS
13
14You can narrow news to a specific version by calling `view-emacs-news'
15with a prefix argument or by typing C-u C-h C-n.
3f7194ed 16
a1ed8b05 17Temporary note:
219afb88
GM
18+++ indicates that all necessary updates to the manuals in doc/ are complete.
19--- means no change in the manuals is needed.
20When you add a new item, use the appropriate mark if you know it applies,
21otherwise leave it unmarked.
a1ed8b05
GM
22
23\f
95a32efb 24* Installation Changes in Emacs 24.4
7c3d167f 25
70c8f5ca 26** Emacs can now be compiled with ACL support.
7c3d167f
RF
27This happens by default if a suitable support library is found at
28build time, like libacl on GNU/Linux. To prevent this, use the
ffdc270a 29configure option `--disable-acl'.
7c3d167f 30
70c8f5ca 31** Emacs can now be compiled with file notification support.
671d4bfc
GM
32This happens by default if a suitable system library is found at
33build time. To prevent this, use the configure option
34`--with-file-notification-no'. See below for file-notify features.
35FIXME? This feature is not available for the Nextstep port. (?)
2f23b3ab 36
d65a92bb 37---
70c8f5ca
CY
38** The configure option `--without-compress-info' has been generalized,
39and renamed to `--without-compress-install'. It now prevents compression
335142f9
GM
40of _any_ files during installation.
41
d65a92bb 42---
70c8f5ca 43** The configure option `--with-crt-dir' has been removed.
f1e496a5
EZ
44It is no longer needed, as the crt*.o files are no longer linked
45specially.
46
d65a92bb 47---
ae7bfbf5
JB
48** Directories passed to configure option `--enable-locallisppath' are
49no longer created during installation.
50
70c8f5ca
CY
51** Emacs can be compiled with zlib support.
52If this library is present (which it normally is on most systems), the
53function `zlib-decompress-region' becomes available, which can
54decompress gzip- and zlib-format compressed data.
313546eb 55
9524a13d
JD
56---
57** Emacs for NS (OSX, GNUStep) can be built with ImageMagick support.
58pkg-config is required to find ImageMagick libraries.
59
3fa2054e
JD
60** For OSX >= 10.5, the Core text based font backend from the Mac port is used.
61For GNUStep and OSX 10.4 the old backend is used.
62To use the old backend by default, do on the command line:
63% defaults write org.gnu.Emacs FontBackend ns
64
0bfbd67c
ER
65** If your Emacs was built from a repository checkout, the new variable
66`emacs-repository-version' contains information about the bzr revision used.
67In 24.3 this variable was `emacs-bzr-version`.
68
c57b2d76 69\f
95a32efb 70* Startup Changes in Emacs 24.4
c57b2d76 71
17e0445b
GM
72+++
73** When initializing `load-path', an empty element in the EMACSLOADPATH
74environment variable (either leading, e.g., ":/foo"; trailing, e.g.,
75"/foo:"; or embedded, e.g., "/foo::/bar") is replaced with the default
76load-path (the one that would have been used if EMACSLOADPATH was unset).
77This makes it easier to _extend_ the load-path via EMACSLOADPATH
78(previously, EMACSLOADPATH had to specify the complete load-path,
79including the defaults). (In older versions of Emacs, an empty element
80was replaced by ".", so use an explicit "." now if that is what you want.)
81
a0833f62
GM
82+++
83** The -L option, which normally prepends its argument to load-path,
2df10228
GM
84will instead append, if the argument begins with `:' (or `;' on MS Windows;
85i.e., `path-separator').
a0833f62 86
06a4f110
GM
87+++
88** If you use either site-load.el or site-init.el to customize the dumped
89Emacs executable, any changes to `load-path' that these files make
90will no longer be present after dumping. To affect a permanent change
91to `load-path', use the `--enable-locallisppath' option of `configure'.
92
70c8f5ca
CY
93+++
94** The user option `initial-buffer-choice' can now specify a function
95to set up the initial buffer.
96
c57b2d76 97\f
95a32efb 98* Changes in Emacs 24.4
c6c08d3f 99
d8a2993d
TZ
100+++
101** New option `gnutls-verify-error', if non-nil, means that Emacs
102should reject SSL/TLS certificates that GnuTLS determines as invalid.
103(This option defaults to nil at present, but this is expected to change
104in a future release.)
105
0a12fca0
EZ
106+++
107** Emacs now supports menus on text-mode terminals.
108If the terminal supports a mouse, clicking on the menu bar, or on
109sensitive portions of the mode line or header line, will drop down the
110menu defined at that position. Likewise, clicking C-mouse-2 or
111C-mouse-2 or C-mouse-3 on the text area will pop up the menus defined
112for those locations.
113
114If the text terminal does not support a mouse, you can activate the
115first menu-bar menu by typing F10, which invokes `menu-bar-open'.
116
117If you want the previous behavior, whereby F10 invoked `tmm-menubar',
118customize the option `tty-menu-open-use-tmm' to a non-nil value.
119(Typing M-` will always invoke `tmm-menubar', even if
120`tty-menu-open-use-tmm' is nil.)
121
a34a0ac8 122+++
70c8f5ca
CY
123** The *Messages* buffer is created in `messages-buffer-mode',
124a new major mode, with read-only status. Any code that might create
125the *Messages* buffer should call the function `messages-buffer' to do
126so and set up the mode.
61a5bb85 127
70c8f5ca 128** Emacs now supports ACLs (access control lists).
7c3d167f
RF
129+++
130*** Emacs preserves the ACL entries of files when backing up.
131+++
132*** New functions `file-acl' and `set-file-acl' get and set the ACL
66447e07
EZ
133entries of a file. On GNU/Linux, the POSIX ACL interface is used via
134libacl. On MS-Windows, the NT Security APIs are used to emulate the
135POSIX ACL interfaces.
7c3d167f 136
4e3f9230
YM
137** Multi-monitor support has been added.
138
139*** New functions `display-monitor-attributes-list' and
140`frame-monitor-attributes' can be used to obtain information about
141each physical monitor on multi-monitor setups.
142
cf13177e
YM
143*** The functions `display-pixel-width' and `display-pixel-height' now
144behave consistently among the platforms: they return the pixel width
145or height for all physical monitors associated with the given display
146as just they were on X11. To get information for each physical
147monitor, use the new functions above. Similar notes also apply to
148`x-display-pixel-width', `x-display-pixel-height', `display-mm-width',
149`display-mm-height', `x-display-mm-width', and `x-display-mm-height'.
150
70c8f5ca
CY
151+++
152** The cursor stops blinking after 10 blinks (by default) on X and NS.
153You can change the default by customizing `blink-cursor-blinks'.
61e56e2c 154
70c8f5ca
CY
155+++
156** In keymaps where SPC scrolls forward, S-SPC now scrolls backward.
157This affects View mode, etc.
158
159** Help changes
f88ac3bb 160
98104aea 161+++
70c8f5ca
CY
162*** The command `apropos-variable' is renamed to `apropos-user-option'.
163`apropos-user-option' shows all user options while `apropos-variable'
164shows all variables. When called with a universal prefix argument,
165the two commands swap their behaviors. When `apropos-do-all' is
166non-nil, they output the same results.
18c26d81 167
70c8f5ca
CY
168+++
169*** The key `?' now describes prefix bindings, like `C-h'.
6585d561 170
3ca34b22
DE
171*** The command `describe-function' was extended for EIEIO.
172Running it on constructors will show a full description of the
d6a62260 173generated class. For generic functions, it will show all
3ca34b22
DE
174implementations together with links to the source. The old commands
175`describe-class', `describe-constructor' and `describe-generic' were
176removed.
177
70c8f5ca 178*** The command `quail-help' is deleted. Use `C-h C-\'
6950f152
KH
179(`describe-input-method') instead.
180
b29daf07
GM
181** ImageMagick
182
4e7d26fc 183+++
b29daf07
GM
184*** ImageMagick images now support the :max-width and :max-height
185keywords.
186
187*** Some data types aren't auto-detected by ImageMagick. Adding
188:format to `create-image' may help if the content type is in the
189new variable `image-format-suffixes'.
190
70c8f5ca 191** Frame and window changes
da9ea6d9 192
70c8f5ca
CY
193+++
194*** New commands `toggle-frame-fullscreen' and `toggle-frame-maximized',
195bound to <f11> and M-<f10>, respectively.
0a749fa0 196
70c8f5ca
CY
197*** New command `frameset-to-register' is now bound to `C-x r f', replacing
198`frame-configuration-to-register'. It offers similar functionality,
199plus enhancements like the ability to restore deleted frames. The
200command `frame-configuration-to-register' still exists, but is unbound.
0a749fa0 201
dc20a9d2 202+++
70c8f5ca
CY
203*** New hooks `focus-in-hook', `focus-out-hook'.
204These are normal hooks run when an Emacs frame gains or loses input focus.
205
206---
207*** `split-window' is now a non-interactive function, not a command.
208As a command, it was a special case of `C-x 2' (`split-window-below'),
209and as such superfluous. After being reimplemented in Lisp, its
210interactive form was mistakenly retained.
4f0552c2 211
daef8ab1 212+++
70c8f5ca
CY
213*** New option `scroll-bar-adjust-thumb-portion'.
214Available only on X, this option allows to control over-scrolling
215using the scroll bar (i.e. dragging the thumb down even when the end
216of the buffer is visible).
217
218** Lisp evaluation changes
75a1e034 219+++
70c8f5ca
CY
220*** `eval-defun' on an already defined defcustom calls the :set function,
221if there is one.
222
223*** A zero prefix arg of `eval-last-sexp' (`C-x C-e'),
224`eval-expression' (`M-:') and `eval-print-last-sexp' (`C-j') inserts
225a list with no limit on its length and level (by using nil values of
226`print-length' and `print-level'), and inserts additional formats for
227integers (octal, hexadecimal, and character).
228
229---
230** `write-region-inhibit-fsync' now defaults to t in batch mode.
da048127 231
2cd12d28 232+++
70c8f5ca
CY
233** `cache-long-line-scans' has been renamed to `cache-long-scans'
234because it affects caching of paragraph scanning results as well.
4e36a6a6 235
70c8f5ca
CY
236---
237** The option `set-mark-default-inactive' has been deleted.
238This unfinished feature was introduced by accident in Emacs 23.1;
239simply disabling Transient Mark mode does the same thing.
240
241** The default value of `comment-use-global-state' is changed to t,
242and this variable has been marked obsolete.
243
642d7ae8
CY
244** New user options:
245
246*** `read-regexp-defaults-function' defines a function to read regexps,
247used by commands like `rgrep', `lgrep' `occur', `highlight-regexp',
248etc. You can customize this to specify a function that provides a
249default value from the regexp last history element, or from the symbol
250found at point.
251
ec918aab 252+++
642d7ae8
CY
253*** `load-prefer-newer', affects how the `load' function chooses the
254file to load. If this is non-nil, then when both .el and .elc
255versions of a file exist, and the caller did not explicitly specify
256which one to load, then the newer file is loaded. The default, nil,
257means to always load the .elc file.
258
70c8f5ca
CY
259\f
260* Editing Changes in Emacs 24.4
261
262** Indentation changes
263
264+++
265*** The behavior of `C-x TAB' (`indent-rigidly') has changed.
266When invoked without a prefix argument, it now activates a transient
267mode in which typing <left>, <right>, <S-left>, and <S-right> adjusts
268the text indentation in the region. Typing any other key resumes
269normal editing behavior.
3472b6c6 270
70c8f5ca 271*** `electric-indent-mode' is enabled by default.
b7d5bd82 272
70c8f5ca 273*** `tab-stop-list' is now implicitly extended to infinity by repeating
3ccc2d28
XF
274the last step. Its default value is changed to nil which means a tab
275stop every `tab-width' columns.
b7d5bd82 276
70c8f5ca 277** Filling changes
0aa3616e 278
70c8f5ca
CY
279*** New command `cycle-spacing' cycles between spacing conventions:
280having just one space, no spaces, or reverting to the original
281spacing. Like `just-one-space', it can handle or ignore newlines and
282leave different number of spaces.
283
284*** `fill-single-char-nobreak-p' prevents fill from breaking a line after
285a 1-letter word, which is an error according to Polish and
286Czech typography rules. To globally enable this feature, evaluate:
287
288 (add-hook 'fill-nobreak-predicate 'fill-single-char-nobreak-p)
37f38bca 289
30aafaf5 290+++
70c8f5ca
CY
291** Uniquify is enabled by default with `post-forward-angle-brackets' style.
292
293** New command `C-x SPC' (`rectangle-mark-mode') makes a rectangular region.
294Most commands are still unaware of it, but kill/yank do work on the rectangle.
958614cf 295
4c672a0f
EZ
296+++
297** New option `visual-order-cursor-movement'.
298If this is non-nil, cursor motion with arrow keys will follow the
299visual order of characters on the screen: <left> always moves to the
300left, <right> always moves to the right, disregarding the surrounding
301bidirectional context.
302
70c8f5ca 303** Register changes
c8af480d 304
70c8f5ca 305*** All register commands can now show help with preview.
0b1619da 306
ced5cc29
XF
307+++
308*** New command `C-x C-k x' (`kmacro-to-register') stores keyboard
309macros in registers.
ac2f8659 310
70c8f5ca
CY
311*** New command `C-x r f' (`frameset-to-register').
312See Changes in Emacs 24.4, above.
313
314** New command `delete-duplicate-lines'.
315When its arg ADJACENT is non-nil (when called interactively with C-u
316C-u) it works like the utility `uniq'. Otherwise by default it
317deletes duplicate lines everywhere in the region without regard to
318adjacency. When its arg KEEP-BLANKS is non-nil (when called
319interactively with C-u C-u C-u), duplicate blank lines are preserved.
ac2f8659 320
4f0552c2 321\f
95a32efb 322* Changes in Specialized Modes and Packages in Emacs 24.4
4f0552c2 323
fba1763d 324** More packages look for ~/.emacs.d/<foo> additionally to ~/.<foo>.
940e5099
SM
325Affected files:
326~/.emacs.d/timelog replaces ~/.timelog
940e5099
SM
327~/.emacs.d/vip replaces ~/.vip
328~/.emacs.d/viper replaces ~/.viper
329~/.emacs.d/ido.last replaces ~/.ido.last
330~/.emacs.d/kkcrc replaces ~/.kkcrc
331~/.emacs.d/quickurls replaces ~/.quickurls
332~/.emacs.d/idlwave replaces ~/.idlwave
333~/.emacs.d/bdfcache.el replaces ~/.bdfcache.el
334~/.emacs.d/places replaces ~/.emacs-places
335~/.emacs.d/shadows replaces ~/.shadows
336~/.emacs.d/shadow_todo replaces ~/.shadow_todo
337~/.emacs.d/strokes replaces ~/.strokes
338~/.emacs.d/notes replaces ~/.notes
339~/.emacs.d/type-break replaces ~/.type-break
d29bf51c
SB
340Also the following files used by the now obsolete otodo-mode.el:
341~/.emacs.d/todo-do replaces ~/.todo-do
342~/.emacs.d/todo-done replaces ~/.todo-done
343~/.emacs.d/todo-top replaces ~/.todo-top
344
70c8f5ca 345** Backtrace and debugger
e56221d5 346
70c8f5ca
CY
347*** The Lisp debugger's `e' command now includes the lexical environment
348when evaluating the code in the context at point. Hence, it now lets
349you access lexical variables.
24da7273 350
c9832cd8
XF
351+++
352*** New command `v' (`debugger-toggle-locals') displays local vars.
b14abca9 353
70c8f5ca
CY
354*** New minor mode `jit-lock-debug-mode' lets you use the debuggers on
355code run via JIT Lock.
4b72c12b 356
19b748ad
TM
357** Battery
358
44b9b800 359---
19b748ad
TM
360*** Battery information via the BSD `apm' utility is now supported.
361
96673afe
JL
362** Buffer Menu
363
364*** `M-s a C-o' shows lines matching a regexp in marked buffers using Occur.
365
fd3a9a6b
GM
366** Calendar and Diary
367
8d3c54a0 368---
70c8f5ca
CY
369*** New faces `calendar-weekday-header', `calendar-weekend-header',
370and `calendar-month-header'.
3b5c03d3 371
11c06c77 372+++
3b5c03d3
GM
373*** New option `calendar-day-header-array'.
374
fd3a9a6b 375+++
f8780a05 376*** New variable `diary-from-outlook-function', used by the command
fd3a9a6b
GM
377`diary-from-outlook'.
378
11c06c77 379---
70c8f5ca 380*** The variable `calendar-font-lock-keywords' is obsolete.
ba30c70f 381
0e70ce93
PE
382** Calc
383
384*** Calc by default now uses the Gregorian calendar for all dates, and
385uses January 1, 1 AD as its day number 1. Previously Calc used the
386Julian calendar for dates before September 14, 1752, and it used
387December 31, 1 BC as its day number 1; the new scheme is more
388consistent with Calendar's calendrical system and day numbering.
389
390*** The new variable `calc-gregorian-switch' lets you configure the
391date when Calc switches from the Julian to the Gregorian calendar.
392Nil, the default value, means to always use the Gregorian calendar.
393The value (YEAR MONTH DAY) means to start using the Gregorian calendar
394on the given date.
395
86e100a6
GM
396*** Support for ISO 8601 dates.
397
70c8f5ca
CY
398** CEDET
399
400*** EDE
401
402**** The cpp-root project now supports executing a compile command.
403It can be set through the new :compile-command slot or the
404buffer-local variable `compile-command'.
405
406**** Better selection of include directories for the 'linux' project.
407Include directories now support out-of-tree build directories and
408target architecture auto-detection.
409
410*** Semantic
411
412**** Improved detection of used namespaces in current scope in C++.
413
414**** Parsing of default values for variables and function arguments in C/C++.
415They are also displayed by the summarize feature in the modeline.
416
417**** Improved parsing of function pointers in C/C++.
418This also includes parsing of function pointers as function arguments.
419
420**** Parsing of C/C++ preprocessor macros which open new scope.
421For example, this enables parsing of macros which open new namespaces.
422
423**** Support for 'this' pointer in inline member functions in C++.
424
425** cl-lib
426
8d3c54a0 427*** New macro `cl-tagbody'.
70c8f5ca
CY
428
429+++
430*** letf is now just an alias for cl-letf.
431
432** CUA mode
433
642d7ae8
CY
434*** CUA mode now uses `delete-selection-mode' and `shift-select-mode'.
435Hence, you can now enable it independently from `transient-mark-mode',
436`delete-selection-mode', and `shift-select-mode'.
437
438*** `cua-highlight-region-shift-only' is now obsolete.
439You can disable `transient-mark-mode' to get the same result.
70c8f5ca
CY
440
441*** CUA's rectangles can now be used via `cua-rectangle-mark-mode'.
442
d8a2993d
TZ
443** CFEngine mode
444
445*** Support for completion, ElDoc, and Flycheck has been added.
446
447*** The current CFEngine syntax is parsed from "cf-promises -s json".
448There is a fallback syntax available if you don't have cf-promises or
449if it doesn't support that option.
450
70c8f5ca
CY
451** Delete Selection mode can now be used without `transient-mark-mode'.
452
5db9dace
JL
453** Desktop
454
6c8e0ae6
JL
455*** `desktop-auto-save-timeout' defines the number of seconds idle time
456before auto-save of the desktop.
5db9dace 457
b958c0ad 458*** `desktop-restore-frames', enabled by default, allows saving and
6585d561 459restoring the frame/window configuration (frameset). Additional options
36bec1b6 460`desktop-restore-in-current-display', `desktop-restore-reuses-frames'
6585d561 461and `desktop-restore-forces-onscreen' offer further customization.
39c0e36f 462
a2a538b1
CS
463** Dired
464
465*** New minor mode `dired-hide-details-mode' hides details.
466
70c8f5ca 467** Eldoc Mode works properly in the minibuffer.
21859ebc 468
3b8d5131
JT
469** Electric Pair mode
470*** New `electric-pair-preserve-balance' enabled by default.
471
472Pairing/skipping only kicks in when that help the balance of
473parentheses and quotes, i.e. the buffer should end up at least as
474balanced as before.
475
da5ecfa9 476You can further control this behavior by adjusting the predicates
3b8d5131
JT
477stored in `electric-pair-inhibit-predicate' and
478`electric-pair-skip-self'.
479
480*** New `electric-pair-delete-adjacent-pairs' enabled by default.
481
482In `electric-pair-mode', the commands `backward-delete-char' and
483`backward-delete-char-untabify' are now bound to electric variants
484that delete the closer when invoked between adjacent pairs.
485
486*** New `electric-pair-open-newline-between-pairs' enabled by default.
487
488In `electric-pair-mode', inserting a newline between adjacent pairs
489opens an extra newline after point, which is indented if
490`electric-indent-mode' is also set.
491
492*** New `electric-pair-skip-whitespace' enabled by default.
493
494Controls if skipping over closing delimiters should jump over any
495whitespace slack. Setting it to `chomp' makes it delete this
496whitespace. See also the variable
497`electric-pair-skip-whitespace-chars'.
498
499*** New variables control the pairing in strings and comments.
500
501You can customize `electric-pair-text-pairs' and
da5ecfa9 502`electric-pair-text-syntax-table' to tweak pairing behavior inside
3b8d5131
JT
503strings and comments.
504
ed02dcfa
RS
505** EPA
506
507*** New option `epa-mail-aliases'.
508
509You can set this to a list of alias expansions for keys to use
510in `epa-mail-encrypt'.
511
512If one element of the variable's value is ("foo@bar.com" "foo@hello.org"),
513that means: when one of the recipients of the message being encrypted
514is `foo@bar.com', encrypt the message for `foo@hello.org' instead.
515
516If one element of the variable's value is ("foo@bar.com"),
517that means: when one of the recipients of the message being encrypted
518is `foo@bar.com', ignore that name as regards encryption.
519This is useful to avoid a query when you have no key for that name.
520
70c8f5ca
CY
521** ERC
522
523*** New option `erc-accidental-paste-threshold-seconds'.
524If set to a number, this can be used to avoid accidentally paste large
525amounts of data into the ERC input.
526
527+++
528** ERT
529
530*** New macro `skip-unless' allows skipping ERT tests.
531See the ERT manual for details.
532
533** Eshell
534
535+++
536*** `eshell' now supports visual subcommands and options
537Eshell has been able to handle "visual" commands (interactive,
538non-line oriented commands such as top that require display
539capabilities not provided by eshell) by running them in an Emacs
540terminal emulator. See `eshell-visual-commands'.
541
542This feature has been extended to subcommands and options that make a
543usually line-oriented command a visual command. Typical examples are
544"git log" and "git <command> --help" which display their output in a
545pager by default. See `eshell-visual-subcommands' and
546`eshell-visual-options'.
547
548---
549*** Added Eshell-Tramp module
550External su and sudo commands are now the default; the internal,
551Tramp-using variants can still be used by enabling the eshell-tramp
552module.
553
554** F90 mode
555---
556*** New option `f90-smart-end-names'.
557
558** Icomplete is a bit more like Ido.
8d3c54a0 559
70c8f5ca 560*** key bindings to navigate through and select the completions.
8d3c54a0 561
70c8f5ca 562*** The icomplete-separator is customizable, and its default has changed.
8d3c54a0 563
70c8f5ca 564*** Removed icomplete-show-key-bindings.
8d3c54a0 565
70c8f5ca
CY
566*** Icomplete-mode by defaults applies to all forms of minibuffer completion.
567(setq icomplete-with-completion-tables '(internal-complete-buffer))
568will revert to the old behavior.
569
570** Ido
8d3c54a0 571
70c8f5ca 572*** Ido has a manual now.
8d3c54a0 573
70c8f5ca 574*** `ido-use-virtual-buffers' takes a new value 'auto.
8d3c54a0 575
70c8f5ca
CY
576*** `ido-decorations' has been slightly extended to give a bit more control.
577
578** Image mode
579
8d3c54a0 580+++
70c8f5ca
CY
581*** New commands `n' (`image-next-file') and `p' (`image-previous-file')
582visit the next image file and the previous image file in the same
583directory, respectively.
584
a7fecaa0 585+++
70c8f5ca
CY
586*** New commands to show specific frames of multi-frame images.
587`f' (`image-next-frame') and `b' (`image-previous-frame') visit the
588next or previous frame. `F' (`image-goto-frame') shows a specific frame.
589
a7fecaa0 590+++
70c8f5ca 591*** New commands to speed up, slow down, or reverse animation.
a7fecaa0
RS
592`a +' (`image-increase-speed') and `a -' (`image-decrease-speed') to
593speed up and slow down the animation. `a r' (`image-reverse-speed')
594to reverse it and `a 0' (`image-reset-speed') to reset it.
595
70c8f5ca
CY
596---
597*** The command `image-mode-fit-frame' deletes other windows.
598When toggling, it restores the frame's previous window configuration.
599It also has an optional frame argument, which can be used by Lisp
600callers to fit the image to a frame other than the selected frame.
601
602** Hi-Lock
603
604*** New option `hi-lock-auto-select-face'. When non-nil, hi-lock commands
605will cycle through faces in `hi-lock-face-defaults' without prompting.
606
607+++
608*** New global command `M-s h .' (`highlight-symbol-at-point')
609highlights the symbol found near point without prompting,
610using the next face automatically.
611
612** Imenu
613
614*** New option `imenu-generic-skip-comments-and-strings'.
615
616** Info
c9352587 617---
70c8f5ca
CY
618*** New face `info-index-match' is used to highlight matches in index
619entries displayed by `Info-index-next', `Info-virtual-index' and
620`info-apropos'.
621
622** JS Mode
623
624*** Better indentation of multiple-variable declarations.
625If declaration spans several lines, variables on the following lines
626are lined up to the first one.
627
628*** We now recognize and better indent continuations in array
629comprehensions.
630
631*** New option `js-switch-indent-offset`.
632
633** MH-E has been updated to MH-E version 8.5.
634See MH-E-NEWS for details.
635
636+++
637** Octave mode
638*** Font locking for texinfo comments and new keywords
639*** Completion in Octave file buffers
640*** Eldoc support
641*** Jump to definition
642*** Documentation lookup/search
643*** Code cleanup and various bug fixes
644
645** OPascal mode is the new name for Delphi mode.
646
647*** All delphi-* variables and functions have been renamed to opascal-*.
648*** `delphi-newline-always-indents' is not supported any more.
649Use `electric-indent-mode' instead.
650*** `delphi-tab' is gone, replaced by `indent-for-tab-command'.
651
652** Package
653
654*** The format of `archive-contents' files, generated by package
655repositories, has changed to allow a new (fifth) element in the data
656vectors, containing an associative list with extra properties.
657
658*** `describe-package' buffer uses the `:url' extra property to
659display a `Homepage' header, if it's present.
660
d8a2993d
TZ
661*** In the buffer produced by `describe-package', there are now buttons
662listing the keywords related to that package. You can click on them
663to see other packages related to any given keyword.
664
665*** In the *Packages* buffer, `f' or the Package->Filter menu filters
666the packages by a keyword.
667
70c8f5ca 668** Prolog mode
7cc8ae06 669
70c8f5ca
CY
670*** `prolog-use-smie' has been removed, along with the non-SMIE
671indentation code.
1db9ceee 672
70c8f5ca 673** Remember
f2cbfd44 674
70c8f5ca
CY
675*** The new command `remember-notes' creates a buffer which is saved
676on `kill-emacs'.
3f0faa45 677
70c8f5ca
CY
678You may think of it as a *scratch* buffer whose content is preserved.
679In fact, it was designed as a replacement for *scratch* buffer and can
680be used that way by setting `initial-buffer-choice' to
681`remember-notes' and `remember-notes-buffer-name' to "*scratch*".
682Without the second change, *scratch* buffer will still be there for
683notes that do not need to be preserved.
20de6ab6 684
70c8f5ca
CY
685*** The Remember package can now store notes in separates files.
686You can use the new function `remember-store-in-files' within the
687`remember-handler-functions' option.
20de6ab6 688
70c8f5ca
CY
689See `remember-data-directory' and `remember-directory-file-name-format'
690for new options related to this function.
c0211c4e 691
70c8f5ca
CY
692** Rmail
693
694*** Customize `rmail-mbox-format' to influence some minor aspects of
695how Rmail displays non-MIME messages.
3a2ddc2d 696
2a43515a 697---
70c8f5ca
CY
698*** The `unrmail' command now converts from BABYL to mboxrd format,
699rather than mboxo. Customize `unrmail-mbox-format' to change this.
2a43515a 700
70c8f5ca 701** Ruby mode
e38e6780 702
70c8f5ca 703*** New option `ruby-encoding-magic-comment-style'.
e38e6780 704
70c8f5ca 705*** New option `ruby-custom-encoding-magic-comment-template'.
e5e4a942 706
70c8f5ca 707*** New mode menu.
e5e4a942 708
70c8f5ca
CY
709*** Improved syntax highlighting and indentation.
710
711*** Add more Ruby file types to `auto-mode-alist'.
712
713*** New option `ruby-align-to-stmt-keywords'.
e5e4a942 714
6cddebc1
DG
715*** New `electric-indent-mode' integration.
716
d289938a 717** Search and Replace
279f9b06 718
07e9eaa2 719+++
e5e4a942
JL
720*** New global command `M-s .' (`isearch-forward-symbol-at-point')
721starts a symbol (identifier) incremental search forward with the
722symbol found near point added to the search string initially.
723
de7ce2d1 724+++
279f9b06
JL
725*** `C-x 8 RET' in Isearch mode reads a character by its Unicode name
726and adds it to the search string.
727
2db59b1d
XF
728*** `M-s i' in Isearch mode toggles the variable `isearch-invisible'
729between nil and the value of the option `search-invisible' (or `open'
730when it's nil).
01dea85f 731
d289938a
JL
732*** `query-replace' skips invisible text when `search-invisible' is nil,
733and opens overlays with hidden text when `search-invisible' is `open'.
734
57b837ab 735+++
3ee4cd64
JL
736*** A negative prefix arg of replacement commands replaces backward.
737`M-- M-%' replaces a string backward, `M-- C-M-%' replaces a regexp
738backward, `M-s w words M-- M-%' replaces a sequence of words backward.
739
80fa505f
AM
740+++
741*** By default, prefix arguments do not now terminate Isearch mode.
742Set `isearch-allow-prefix' to nil to restore old behavior.
743
de7ce2d1 744+++
6e8cfc81
JL
745*** More Isearch commands accept prefix arguments, namely
746`isearch-printing-char', `isearch-quote-char', `isearch-yank-word',
747`isearch-yank-line'.
748
de7ce2d1 749+++
a22289f7
JL
750*** Word search now matches whitespace at the beginning/end
751of the search string if it contains leading/trailing whitespace.
752In an incremental word search or when using a non-nil LAX argument
753of `word-search-regexp', the lax matching can also match part of
754the first word (in addition to the lax matching of the last word).
755The same rules are now applied to the symbol search with the difference
756that it matches symbols, and non-symbol characters between symbols.
757
70c8f5ca
CY
758+++
759** SES
6827cac1 760
70c8f5ca 761*** New command `ses-rename-cell' allows assigning names to SES cells.
13a40633 762
70c8f5ca 763** Shell
de7ce2d1 764---
70c8f5ca
CY
765*** `explicit-bash-args' now always defaults to use --noediting.
766During initialization, Emacs no longer expends a process to decide
767whether it is safe to use Bash's --noediting option. These days
768--noediting is ubiquitous; it was introduced in 1996 in Bash version 2.
4f0552c2 769
70c8f5ca 770** Shell Script mode
8b62d742 771
70c8f5ca
CY
772*** `sh-mode' now has the mode own `add-log-current-defun-function'.
773You can pick the name of the function and the variables with `C-x 4 a'.
c38a186c 774
b345c561
XF
775*** The SMIE indentation engine is now used by default.
776
70c8f5ca
CY
777** SMIE indentation can be customized via `smie-config'.
778The customization can be guessed by Emacs by providing a sample indented
779file and letting SMIE learn from it.
780
781** Term mode
782
783*** New option `term-suppress-hard-newline'.
ad4de702 784
d29bf51c
SB
785** Todo mode has been rewritten and enhanced.
786New features include:
787- support for multiple todo files and archive files of done items;
788- renaming, reordering, moving, merging, and deleting categories;
789- sortable tabular summaries of categories and the types of items they contain;
adc5dbce 790- cross-category lists of items filtered by specific criteria;
d29bf51c
SB
791- more fine-grained interaction with the Emacs diary, by being able to decide
792 for each todo item whether it appears in the Fancy Diary display;
793- highly flexible new item insertion and item editing;
794- moving items between categories, storing done items in their category or in
795 archive files, undoing or unarchiving done items;
796- reprioritizing items by inputting a numerical priority;
797- extensive customizability of operation and display, including numerous faces.
8bcced1f 798The Todo mode user manual describes all commands and most user options.
d29bf51c
SB
799To support some of these features, a new file format is used, which is
800incompatible with the old format; however, you can convert old todo and done
801item files to the new format on initializing the first new todo file, or at any
802later time with the provided conversion command. The old version of
803todo-mode.el has been made obsolete and renamed otodo-mode.el.
804
70c8f5ca
CY
805** trace-function was largely rewritten.
806New features include:
807- no prompting for the destination buffer, unless a prefix-arg was used.
808- additionally to prompting for a destination buffer, when a prefix-arg is
809 used, the user can enter a "context", i.e. Lisp expression whose value at the
810 time the function is entered/exited will be printed along with the function
811 name and arguments. Useful to trace the value of (current-buffer) or
812 (point) when the function is invoked.
813
aefa2ead 814** Tramp
26280467 815
179923f7
MA
816*** The experimental url syntax for remote file names is withdrawn.
817
aefa2ead
MA
818+++
819*** New connection method "adb", which allows to access Android
19dc8b9e
MA
820devices by the Android Debug Bridge. The variable `tramp-adb-program'
821can be used to adapt the path of the "adb" program, if needed.
26280467 822
19dc8b9e
MA
823*** The connection methods "plink1", "ssh1", "ssh2", "scp1", "scp2",
824"scpc" and "rsyncc" are discontinued. The ssh option
825"ControlMaster=auto" is set automatically in all ssh-based methods,
826when possible.
26280467 827
ed7367b1
MA
828+++
829*** Handlers for `file-acl' and `set-file-acl' for remote machines
830which support POSIX ACLs.
aefa2ead 831
f1c7dee9
MA
832+++
833*** Handlers for `file-notify-add-watch' and `file-notify-rm-watch'
834for remote machines which support filesystem notifications.
835
b29daf07
GM
836** New command `url-cookie-list' displays all the current cookies, and
837allows deleting selected cookies.
838
70c8f5ca 839** VC and related modes
bb102690 840
7899adea 841+++
70c8f5ca
CY
842*** In VC directory mode, `D' displays diffs between VC-controlled
843whole tree revisions.
fa5265fc 844
7899adea 845+++
70c8f5ca
CY
846*** In VC directory mode, `L' lists the change log for the current VC
847controlled tree in a window.
fa5265fc 848
7899adea 849+++
70c8f5ca
CY
850*** In VC directory mode, `I' shows a log of changes that will be
851received with a pull operation.
fa5265fc 852
7899adea 853+++
70c8f5ca
CY
854*** `C-x v G' (globally) and `G' (in VC directory mode) ignores a file
855under current version control system. When called with a prefix
856argument, you can remove a file from the ignored file list.
fa5265fc 857
b345c561 858---
70c8f5ca
CY
859*** `cvs-append-to-ignore' has been renamed to `vc-cvs-append-to-ignore'
860because it is moved to vc-cvs.el.
fa5265fc 861
70c8f5ca 862** VHDL mode
fa5265fc 863
70c8f5ca 864*** New options: `vhdl-actual-generic-name', `vhdl-beautify-options'.
fa5265fc 865
70c8f5ca 866*** New commands: `vhdl-fix-statement-region', `vhdl-fix-statement-buffer'.
fa5265fc 867
70c8f5ca 868** Woman
fa5265fc 869
70c8f5ca
CY
870*** The commands `woman-default-faces' and `woman-monochrome-faces'
871are obsolete. Customize the `woman-*' faces instead.
fa5265fc 872
770de7cf
CY
873** Obsolete packages:
874
122a7e46
SM
875*** Iswitchb is made obsolete by icomplete-mode.
876
770de7cf
CY
877*** longlines.el is obsolete; use visual-line-mode instead.
878
27c8b6eb
GM
879+++
880*** sup-mouse.el.
881
ce3e7725
CY
882*** terminal.el is obsolete; use term.el instead.
883
d29bf51c
SB
884*** The previous version of todo-mode.el is obsolete and renamed otodo-mode.el.
885
d5081c1e 886*** xesam.el is obsolete, because the XESAM project has been canceled.
30bce3f0 887
4e16ddf4
GM
888+++
889*** yow.el is obsolete; use fortune.el or cookie1.el instead.
890
5313bbc7
GM
891---
892*** The Info-edit command is obsolete. Editing Info nodes by hand
893has not been relevant for some time.
894
4f0552c2 895\f
95a32efb 896* New Modes and Packages in Emacs 24.4
02f473a4 897
70c8f5ca
CY
898** New package `eww' is a built-in web browser.
899It is only available if Emacs is compiled with libxml2 support.
900
901** New minor mode `superword-mode', defined in subword.el
002668e1
TZ
902`superword-mode' overrides the default word motion commands to treat
903symbol_words as a single word, similar to what `subword-mode' does and
904using the same internal functions.
905
70c8f5ca 906** New package nadvice.el offers lighter-weight advice facilities.
231d8498
SM
907It is layered as:
908- add-function/remove-function which can be used to add/remove code on any
909 function-carrying place, such as process-filters or `<foo>-function' hooks.
910- advice-add/advice-remove to add/remove a piece of advice on a named function,
911 much like `defadvice' does.
912
70c8f5ca 913** New package frameset.el.
8cd4636c
JB
914It provides a set of operations to save a frameset (the state of all
915or a subset of the existing frames and windows, somewhat similar to a
916frame configuration), both in-session and persistently, and restore it
917at some point in the future.
918
fb830820 919+++
70c8f5ca
CY
920** New package filenotify.el provides an interface for file system
921notifications. It requires that Emacs be compiled with one of the
f1c7dee9
MA
922low-level libraries gfilenotify.c, inotify.c or w32notify.c.
923
c57b2d76 924\f
95a32efb 925* Incompatible Lisp Changes in Emacs 24.4
da03ef8a 926
c9352587 927---
3472b6c6
SM
928** `kill-region' lost its `yank-handler' optional argument.
929
c9352587 930+++
ef566920
BR
931** `(input-pending-p)' no longer runs other timers which are ready to
932run. The new optional CHECK-TIMERS param allows for the prior behavior.
933
81c7d631 934+++
a104f656
SM
935** `defvar' and `defcustom' in a let-binding affect the "external" default.
936
c9352587 937---
db3b7db5
SM
938** The syntax of ?» and ?« is now punctuation instead of matched parens.
939Some languages match those as »...« and others as «...» so better stay neutral.
940
b345c561 941---
70c8f5ca
CY
942** In compiled Lisp files, the header no longer includes a timestamp.
943
c9352587 944+++
0b31660d 945** The default file coding for Emacs Lisp files is now utf-8.
70c8f5ca
CY
946(See `file-coding-system-alist'.) In most cases, this change is
947transparent, but files that contain unusual characters without
948specifying an explicit coding system may fail to load with obscure
949errors. You should either convert them to utf-8 or add an explicit
950`coding:' cookie.
0b31660d 951
c9352587 952+++
70c8f5ca 953** `overriding-terminal-local-map' no longer replaces the local keymaps.
bfa3acd6
SM
954It used to disable the minor mode, major mode, and text-property keymaps,
955whereas now it simply has higher precedence.
956
a0eb10b3 957** Default process filters and sentinels are not nil any more.
1aa8d505
SM
958Instead they default to a function which does what the nil value used to do.
959
0f1d2934 960+++
25c09217 961** `read-event' does not return decoded chars in ttys any more.
0f1d2934
CY
962As was the case in Emacs 22 and before, the decoding of terminal
963input, according to `keyboard-coding-system', is not performed in
964`read-event' any more. But unlike in Emacs 22, this decoding is still
965done before input-decode-map, function-key-map, etc.
25c09217 966
c9352587
CY
967---
968** Removed `inhibit-local-menu-bar-menus'.
99d0d6dc 969
c9352587
CY
970---
971** Frame-local variables that affect redisplay do not work any more.
e02230bf
SM
972More specifically, the redisplay does not bother to check for a frame-local
973value when looking up variables.
974
0f1d2934 975+++
642d7ae8 976** nil and "unbound" are indistinguishable in `symbol-function'.
0f1d2934
CY
977`symbol-function' does not signal a `void-function' error any more.
978To determine if a symbol's function definition is void, use `fboundp'.
eadf1faa 979
0f1d2934 980+++
3c442f8b
SM
981** `defadvice' does not honor the `freeze' flag and cannot advise
982special-forms any more.
7db1bda8 983
2200a8c9
CY
984---
985** `dolist' no longer binds VAR while evaluating the RESULT form,
986when lexical binding is enabled. Previously, VAR was bound to nil,
987which often led to spurious unused-variable warnings.
da03ef8a 988
81c7d631 989+++
7c3d167f
RF
990** The return value of `backup-buffer' has changed.
991The second argument is no longer an SELinux context, instead it is an
992alist of extended attributes as returned by the new function
993`file-extended-attributes'. The attributes can be applied to another
994file using `set-file-extended-attributes'.
995
de7ce2d1 996+++
a560b856
PE
997** By default `copy-file' no longer copies file permission bits to an
998existing destination; and it sets the file permission bits of a newly
999created destination to those of the source, masked by the default file
1000permissions. To copy the file permission bits, pass t as the
1001PRESERVE-PERMISSIONS argument of `copy-file'.
1002
4364185f 1003+++
954b166e
PE
1004** `visited-file-modtime' now returns -1 for nonexistent files.
1005Formerly it returned a list (-1 LOW USEC PSEC), but this was ambiguous
1006in the presence of files with negative time stamps.
1af4c220 1007
4364185f 1008+++
642d7ae8 1009** The cars of the elements in `interpreter-mode-alist' are now
4364185f 1010treated as regexps rather than literal strings.
1af4c220 1011
c57b2d76 1012\f
97a1cd9d 1013* Lisp Changes in Emacs 24.4
57618ecf 1014
362397ed 1015+++
642d7ae8
CY
1016** The second argument of `eval' can now specify a lexical environment.
1017
b345c561 1018+++
642d7ae8 1019** New functions `special-form-p' and `macrop'.
70c8f5ca
CY
1020
1021** New macro `define-alternatives' can be used to define generic commands.
1022Generic commands are interactive functions whose implementation can be
1023selected among several alternatives, as a matter of user preference.
1024
642d7ae8
CY
1025** The `defalias-fset-function' property lets you catch `defalias'
1026calls, and redirect them to your own function, instead of `fset'.
1027
05e8f1ae 1028+++
642d7ae8
CY
1029** New variable `enable-dir-local-variables'.
1030Directory-local variables are ignored if this is nil. This may be
1031useful for modes that want to ignore directory-locals while still
1032respecting file-local variables.
70c8f5ca 1033
642d7ae8
CY
1034+++
1035** New function `get-pos-property'.
70c8f5ca 1036
642d7ae8 1037** Completion changes
70c8f5ca 1038
642d7ae8
CY
1039*** The separator for `completing-read-multiple' can now be a regexp.
1040The default separator has been changed to allow surrounding spaces
1041around the comma.
70c8f5ca 1042
642d7ae8
CY
1043*** The `common-substring' arg of `display-completion-list' is obsolete.
1044Either use `completion-all-completions', which returns highlighted
1045strings (including for partial or substring completion), or call
1046`completion-hilit-commonality' to add the highlight.
1f41ee56 1047
b29daf07
GM
1048** New minor modes `prettify-symbols-mode' and `global-prettify-symbols-mode'
1049let you enable symbol prettification (replacing a string like "lambda" with
1050the Greek lambda character).
1051
642d7ae8 1052** Terminal changes
3472b6c6 1053
2b2d19f2 1054+++
642d7ae8
CY
1055*** Functions to pop up menus and dialogs now work on all terminals,
1056including TTYs. This includes `x-popup-menu', `x-popup-dialog',
1057`message-box', `yes-or-no-p', etc.
0a12fca0 1058
ffe759eb
EZ
1059The function `display-popup-menus-p' will now return non-nil for a
1060display or frame whenever a mouse is supported on that display or
1061frame.
1062
642d7ae8
CY
1063*** New hook `tty-setup-hook'.
1064
b29daf07
GM
1065** Window Handling
1066
1067*** New display action function `display-buffer-no-window' to not
1068display the buffer in a window.
1069
1070*** New display action alist entry `allow-no-window' to indicate the
1071caller of `display-buffer' is ready to handle the case of not
1072displaying the buffer in a window.
1073
642d7ae8
CY
1074** New hook `pre-redisplay-function'.
1075
8fc36a68 1076+++
3e0b94e7
DC
1077** New bool-vector set operation functions:
1078*** `bool-vector-exclusive-or'
1079*** `bool-vector-union'
1080*** `bool-vector-intersection'
1081*** `bool-vector-set-difference'
1082*** `bool-vector-not'
25201ef0 1083*** `bool-vector-subsetp'
ec2c4ee6
PE
1084*** `bool-vector-count-consecutive'
1085*** `bool-vector-count-population'
3e0b94e7 1086
3fbba716 1087+++
ebb99847
BR
1088** Comparison functions =, <, >, <=, >= now take many arguments.
1089
642d7ae8 1090** Error-handling changes
8c27f5ff 1091
54bd972f 1092+++
642d7ae8 1093*** New function `define-error'.
54bd972f 1094
642d7ae8 1095*** `with-demoted-errors' takes an additional argument `format'.
7fd72e2c 1096
de0503df
SM
1097+++
1098** New macro with-eval-after-load. Like eval-after-load, but better behaved.
1099
131e4695 1100** New library subr-x.el for misc helper functions
bb962da2 1101+++
7b530552 1102*** `hash-table-keys'
bb962da2 1103+++
7b530552 1104*** `hash-table-values'
bb962da2 1105
015b3b3e
BB
1106*** `string-blank-p`
1107*** `string-empty-p`
4301875e 1108*** `string-join`
447bdcb8 1109*** `string-reverse`
b55aea38
BB
1110*** `string-trim-left'
1111*** `string-trim-right'
1112*** `string-trim'
3cbfb935
BB
1113*** `string-remove-prefix'
1114*** `string-remove-suffix'
7b530552 1115
81c7d631 1116+++
dd8791e9 1117** Obsoleted functions:
89561f72 1118*** `log10'
dd8791e9
SM
1119*** `dont-compile'
1120*** `lisp-complete-symbol'
1121*** `field-complete'
1122*** `minibuffer-completion-contents'
66fc57e3
JL
1123*** `isearch-nonincremental-exit-minibuffer'
1124*** `isearch-filter-visible'
e3eb1bb7 1125*** `generic-make-keywords-list'
642d7ae8 1126*** `get-upcase-table' (use `case-table-get-table' instead).
d3e9f3a8 1127
d36ed1c8
SM
1128** `with-wrapper-hook' is obsoleted by `add-function'.
1129The few hooks that used with-wrapper-hook are replaced as follows:
1130*** `abbrev-expand-function' obsoletes `abbrev-expand-functions'.
1131*** `completion-in-region-function' obsoletes `completion-in-region-functions'.
1132*** `filter-buffer-substring-function' obsoletes `filter-buffer-substring-functions'.
1133
81c7d631 1134+++
2bb3a748 1135** `byte-compile-interactive-only-functions' is now obsolete.
81c7d631
CY
1136To specify that a command should only be called interactively, give it
1137a non-nil `interactive-only' property.
2bb3a748 1138
46291d11 1139+++
77c92cb9
RS
1140** `split-string' now takes an optional argument TRIM.
1141The value, if non-nil, is a regexp that specifies what to trim from
1142the start and end of each substring.
d36ed1c8 1143
fa49b469 1144+++
41ce6f70
BB
1145** New function `string-suffix-p'.
1146
70c8f5ca
CY
1147** File-handling changes
1148
882b0b86 1149+++
70c8f5ca 1150*** Support for filesystem notifications.
81606b10
RS
1151Emacs now supports notifications of filesystem changes, such as
1152creation, modification, and deletion of files. This requires the
2f23b3ab
MA
1153`glib' API, or the 'inotify' API (on GNU/Linux systems only). On
1154MS-Windows systems, this is supported for Windows XP and newer
1155versions.
81606b10 1156
882b0b86 1157+++
70c8f5ca
CY
1158*** The 9th element returned by `file-attributes' is now unspecified.
1159Formerly, it was t if the file's gid would change if file were deleted
1160and recreated. This value has been inaccurate for years on many
1161platforms, and nobody seems to have noticed or cared.
1162
882b0b86 1163+++
70c8f5ca 1164*** The 6th argument to `copy-file' has been renamed to
a560b856
PE
1165PRESERVE-PERMISSIONS as it now handles ACL entries and the traditional
1166Unix file permission bits as well as SELinux context.
70c8f5ca 1167
2d778742 1168+++
70c8f5ca
CY
1169*** The function `file-ownership-preserved-p' now has an optional
1170argument GROUP which causes it check for file group too. This can be
1171used in place of the 9th element of `file-attributes'.
1172
de7ce2d1 1173---
70c8f5ca
CY
1174*** The function `set-visited-file-modtime' now accepts a 0 or -1
1175argument, with the same interpretation as the returned value of
1176`visited-file-modtime'.
1177
add89f61
MA
1178** Changes in autorevert.el
1179
1180---
1181*** If Emacs is compiled with file notification support, notifications
1182are used instead of checking the time stamp of the files. You can
1183disable this by setting the user option `auto-revert-use-notify' to
1184nil. Alternatively, a regular expression of directories to be
1185excluded from file notifications can be specified by
1186`auto-revert-notify-exclude-dir-regexp'.
1187
1188---
1189*** The new user option `auto-revert-remote-files' enables reversion
1190of remote files when set to non-nil.
1191
1c4f115d
CY
1192** Face changes
1193
642d7ae8
CY
1194*** The function `face-spec-set' is now like `setq' for face specs.
1195Its third arg now accepts values specifying a face spec type (defface,
1196custom, or override spec), and the relevant spec is set accordingly.
1c4f115d 1197
2d778742 1198+++
70c8f5ca
CY
1199*** New function `add-face-text-property', which can be used to
1200conveniently prepend/append new face properties.
1201
1c4f115d
CY
1202*** Face specs set via Custom themes now replace the `defface' spec
1203rather than inheriting from it (as do face specs set via Customize).
1204
073ca75b
JL
1205*** New face characteristic (supports :underline (:style wave))
1206specifies whether or not the terminal can display a wavy line.
1207
2d778742 1208+++
3c334c14 1209*** New face spec attribute :distant-foreground
920d0654
XF
1210specifies foreground to use if background color is near the foreground
1211color that would otherwise have been used.
3c334c14 1212
f0c954fa
GM
1213** Image API
1214
1215+++
1216*** `image-animated-p' is now `image-multi-frame-p'.
1217It returns non-nil for any image that contains multiple frames,
1218whether or not it specifies a frame delay.
1219
1220+++
642d7ae8
CY
1221*** New variable `image-default-frame-delay' gives the frame delay for
1222animated images which do not specify a frame delay.
f0c954fa
GM
1223
1224+++
1225*** New functions `image-current-frame' and `image-show-frame' for getting
1226and setting the current frame of a multi-frame image.
1227
fa5265fc
DE
1228** EIEIO
1229
1230*** Namespace cleanup by obsolete-aliasing functions to use `eieio-' prefix.
1231**** object-name -> eieio-object-name
1232**** object-class -> eieio-object-class
1233**** object-class-fast -> eieio--object-class
1234**** object-name-string -> eieio-object-name-string
1235**** object-num-slots -> eieio--object-num-slots
1236**** object-set-name-string -> eieio-object-set-name-string
1237**** class-parent -> eieio-class-parent
1238**** class-parents -> eieio-class-parents
1239**** class-children -> eieio-class-children
1240**** class-num-slots -> eieio--class-num-slots
1241**** class-precedence-list -> eieio-class-precedence-list
1242**** All generated class-* and object-* field accessors are now
1243prefixed with `eieio-' as well.
1244
1245*** Obsoleted functions:
1246**** class-of
1247**** class-direct-subclasses
1248**** class-direct-superclasses
1249
1b796d6b
EZ
1250** Changes in encoding and decoding of text
1251
1252---
1253*** New coding-system `prefer-utf-8'.
1254This is like `undecided' but prefers UTF-8 on decoding if the text to
1255be decoded does not contain any invalid UTF-8 sequences. On encoding,
1256any non-ASCII characters are automatically encoded as UTF-8.
1257
1258---
1259*** New attributes of coding-systems whose type is `undecided'.
1260Two new attributes, `:inhibit-null-byte-detection' and
1261`:inhibit-iso-escape-detection', determine how to detect encoding of
1262text that includes null bytes and ISO-2022 escape sequences,
1263respectively. Each of these attributes can be either nil, zero, or
1264t. If it is t, decoding text ignores null bytes and, respectively,
1265ISO-2022 sequences. If it is nil, null bytes cause text to be decoded
1266with no-conversion and ISO-2022 sequences cause Emacs to assume the
1267text is encoded in one of the ISO-2022 encodings, such as
1268iso-2022-7bit. If the value is zero, Emacs consults the variables
1269inhibit-null-byte-detection and inhibit-iso-escape-detection, which
1270see.
1271The new attribute `:prefer-utf-8', if non-nil, causes Emacs to prefer
1272UTF-8 encoding and decoding, whenever possible.
1273
1274These attributes are only meaningful for coding-systems of type
1275`undecided'. (The type of a coding-system is determined by its
1276`:coding-type' attribute and can be accessed by calling the
1277`coding-system-type' function.)
1278
70c8f5ca
CY
1279** `time-to-seconds' is not obsolete any more.
1280
70743157 1281** The lock for 'DIR/FILE' is now 'DIR/.#FILE' and may be a regular file.
b5029e23
PE
1282When you edit DIR/FILE, Emacs normally creates a symbolic link
1283DIR/.#FILE as a lock that warns other instances of Emacs that DIR/FILE
1284is being edited. Formerly, if there was already a non-symlink file
1285named DIR/.#FILE, Emacs fell back on the lock names DIR/.#FILE.0
1286through DIR/.#FILE.9. These fallbacks have been removed, so that
1287Emacs now no longer locks DIR/FILE in that case.
1288
70743157
PE
1289On file systems that do not support symbolic links, the lock is now a
1290regular file with contents being what would have been in the symlink.
b5029e23 1291
44fdad1c 1292+++
97976f9f
PE
1293** New functions `group-gid' and `group-real-gid'.
1294
73dbf960
PE
1295** The spelling of the rx.el category `chinese-two-byte' has been
1296corrected (the first 'e' was missing).
1297
8fa2654e
CS
1298** Changes to the Emacs Lisp Coding Conventions in Emacs 24.4
1299
44fdad1c 1300+++
8fa2654e 1301*** The package descriptor and name of global variables, constants,
0a2da075 1302and functions should be separated by two hyphens if the symbol is not
8fa2654e
CS
1303meant to be used by other packages.
1304
c57b2d76 1305\f
97a1cd9d 1306* Changes in Emacs 24.4 on Non-Free Operating Systems
95a32efb 1307
7605d081
GM
1308** The procedure for building Emacs on MS-Windows has changed.
1309It is now built by running the same configure script as on all other
1310platforms. This requires the MSYS environment and MinGW development
1311tools. See the updated instructions in nt/INSTALL for details.
671d4bfc
GM
1312
1313Using the Posix configure script and Makefile's also means a change in
1314the directory structure of the Emacs installation on Windows. It is
1315now the same as on GNU and Unix systems. In particular, the auxiliary
1316programs, such as cmdproxy.exe and hexl.exe, are in
1317libexec/emacs/VERSION/i686-pc-mingw32 (where VERSION is the Emacs
1318version), version-independent site-lisp is in share/emacs/site-lisp,
1319version-specific Lisp files are in share/emacs/VERSION/lisp and in
1320share/emacs/VERSION/site-lisp, Info docs are in share/info, and data
1321files are in share/emacs/VERSION/etc. (Emacs knows about all these
1322directories and will find the files in there automatically; there's no
1323need to set any variables due to this change.)
1324
7df14908
EZ
1325+++
1326** Emacs on Windows 2000 and later can now access files and directories
1327whose names cannot be encoded in the current system codepage.
1328
1329The new variable `w32-unicode-filenames' controls this feature: if it
1330is t, Emacs uses Unicode APIs to pass file names to system calls,
1331which lifts the limitation of file names to the current locale.
1332
5248293f
GM
1333+++
1334** The "generate a backtrace on fatal error" feature now works on MS Windows.
1335The backtrace is written to the 'emacs_backtrace.txt' file in the
1336directory where Emacs was running.
1337
8549f9e8
EZ
1338+++
1339** The variable `buffer-file-type' is no longer supported.
1340Setting it has no effect, and %t in the mode-line format is ignored.
1341Likewise, `file-name-buffer-file-type-alist' is now obsolete, and
1342modifying it has no effect.
1343
343a2aef
EZ
1344---
1345** Lock files now work on MS-Windows.
1346This allows to avoid losing your edits if the same file is being
1347edited in another Emacs session or by another user. See the node
1348"Interlocking" in the Emacs User Manual for the details. To disable
1349file locking, customize `create-lockfiles' to nil.
1350
c57b2d76
GM
1351** Improved fullscreen support on Mac OS X.
1352Both native (>= OSX 10.7) and "old style" fullscreen are supported.
1353Customize `ns-use-native-fullscreen' to change style. For >= 10.7
1354native is the default.
1355
41cf3d11 1356** OSX >= 10.7 can use sRGB colorspace.
765fe182 1357Customize `ns-use-srgb-colorspace' to change style. t is the default.
41cf3d11
JD
1358Note: This does not apply to images.
1359
95a32efb 1360\f
2a1e2476 1361* Installation Changes in Emacs 24.3
b8df54ff 1362
6bc66c10 1363** The default X toolkit is now Gtk+ version 3.
823b2fb6
GM
1364If you don't pass `--with-x-toolkit' to configure, or if you use
1365`--with-x-toolkit=gtk' or `--with-x-toolkit=yes', configure will try
1366to build with Gtk+ version 3, and if that fails, try Gtk+ version 2.
d71a6517 1367You can explicitly require a specific version by passing
823b2fb6 1368`--with-x-toolkit=gtk2' or `--with-x-toolkit=gtk3' to configure.
da3d2105 1369
6bc66c10 1370** New configure option `--enable-link-time-optimization', to utilize
da3d2105
DA
1371an appropriate feature provided by GCC since version 4.5.0.
1372
33cb2043
GM
1373** New configure option `--without-all' to disable most of the optional
1374features (image support, etc.) that are normally enabled by default.
b8df54ff 1375
33cb2043
GM
1376** New configure option `--enable-gcc-warnings' (for developing/debugging
1377Emacs). If building with GCC, this enables compile-time checks that
64420fcd
GM
1378warn/give errors about possibly-questionable C code. On a recent GNU
1379system there should be no warnings; on older and on non-GNU systems
1380the results may be useful to developers.
b8df54ff 1381
823b2fb6 1382** The configure option `--enable-use-lisp-union-type' has been
6bc66c10 1383renamed to `--enable-check-lisp-object-type', as the resulting
d71a6517
GM
1384Lisp_Object type no longer uses a union to implement the compile time
1385check that this option enables.
1386
823b2fb6 1387** The configure option `--disable-maintainer-mode' has been removed,
501390c5
PE
1388as it was confusingly-named and rarely useful.
1389
f14a4380
GM
1390** The configure options `--program-prefix', `--program-suffix', and
1391`--program-transform-name' apply to more than just the installed
1392binaries. Now they also affect the man pages, icons, and the
1393etc/emacs.desktop file; but not the info pages, since this would break
1394links between the various manuals.
1a9c6830 1395
823b2fb6
GM
1396** You can use `NO_BIN_LINK=t make install' to prevent the installation
1397overwriting "emacs" in the installation bin/ directory with a link
6bc66c10 1398to "emacs-VERSION".
823b2fb6 1399
a4a18b8b
GM
1400** Emacs uses libtinfo in preference to libncurses, if available.
1401
187e9b90
GM
1402** On FreeBSD and NetBSD, configure no longer adds /usr/local/lib and
1403/usr/pkg/lib to the linker search path. You must add them yourself if
1404you want them.
1405
6bc66c10 1406** The standalone scripts `rcs-checkin' and `vcdiff' have been removed
276d5f5d
GM
1407(from the bin and libexec directories, respectively). The former is
1408no longer relevant, the latter is replaced by lisp (in vc-sccs.el).
1409
a1ed8b05 1410\f
2a1e2476 1411* Startup Changes in Emacs 24.3
e5fcdb5e
GM
1412
1413** Emacs no longer searches for `leim-list.el' files beneath the standard
1414lisp/ directory. There should not be any there anyway. If you have
823b2fb6 1415been adding them there, put them somewhere else; e.g., site-lisp.
e5fcdb5e 1416
4107c81e
GM
1417** The `--no-site-lisp' command line option now works for Nextstep builds.
1418
a1ed8b05 1419\f
2a1e2476 1420* Changes in Emacs 24.3
a1ed8b05 1421
6bc66c10 1422** Help
c89926a5 1423
6bc66c10 1424*** `C-h f' (`describe-function') can now perform autoloading.
c89926a5
CY
1425When this command is called for an autoloaded function whose docstring
1426contains a key substitution construct, that function's library is
1427automatically loaded, so that the documentation can be shown
1428correctly. To disable this, set `help-enable-auto-load' to nil.
1429
1430*** `C-h f' now reports previously-autoloaded functions as "autoloaded",
1431even after their associated libraries have been loaded (and the
1432autoloads have been redefined as functions).
1433
6bc66c10 1434** ImageMagick
cd996018 1435
6bc66c10
GM
1436*** Images displayed via ImageMagick now support transparency and the
1437:background image specification property.
cd996018 1438
6bc66c10 1439*** When available, ImageMagick support is automatically enabled.
c505aaeb
CY
1440It is no longer necessary to call `imagemagick-register-types'
1441explicitly to install ImageMagick image types; that function is called
7d806bfe 1442automatically at startup, or when customizing an imagemagick- option.
2f940384 1443
c505aaeb 1444*** Setting `imagemagick-types-inhibit' to t now disables the use of
823b2fb6
GM
1445ImageMagick to view images. (You must call `imagemagick-register-types'
1446afterwards if you do not use customize to change this.)
2f940384 1447
7afbaca4 1448*** The new variable `imagemagick-enabled-types' also affects which
60b5f187
GM
1449ImageMagick types are treated as images. The function
1450`imagemagick-filter-types' returns the list of types that will be
1451treated as images.
c505aaeb 1452
6bc66c10
GM
1453** Minibuffer
1454
1455*** In minibuffer filename prompts, `C-M-f' and `C-M-b' now move to the
1456next and previous path separator, respectively.
c505aaeb 1457
6bc66c10
GM
1458*** `minibuffer-electric-default-mode' can shorten "(default ...)" to "[...]"
1459in minibuffer prompts. Just set `minibuffer-eldef-shorten-default'
1460non-nil before enabling the mode.
1461
1462** Mode line
1463
1464*** New option `mode-line-default-help-echo' specifies the help text
1465(shown in a tooltip or in the echo area) for any part of the mode line
1466that does not have its own specialized help text.
1467
1468*** You can now click mouse-3 in the coding system indicator to invoke
1469`set-buffer-file-coding-system'.
1470
1471** Server and client
2f940384 1472
f938eda9
CY
1473*** emacsclient now obeys string values for `initial-buffer-choice',
1474if it is told to open a new frame without specifying any file to visit
1475or expression to evaluate.
db80bdc8 1476
f938eda9 1477*** New option `server-auth-key' specifies a shared server key.
f938eda9
CY
1478
1479** Emacs now generates backtraces on fatal errors.
1480On encountering a fatal error, Emacs now outputs a textual description
1481of the fatal signal, and a short backtrace on platforms like glibc
5248293f 1482that support backtraces.
2e2d2a13 1483
6bc66c10
GM
1484** `C-x C-q' is now bound to the new minor mode `read-only-mode'.
1485This minor mode replaces `toggle-read-only', which is now obsolete.
1486
1487** Most `y-or-n' prompts now allow you to scroll the selected window.
1488Typing `C-v' or `M-v' at a y-or-n prompt scrolls forward or backward
1489respectively, without exiting from the prompt.
1490
1491** In the Package Menu, newly-available packages are listed as "new",
1492and sorted above the other "available" packages by default.
1493
9475054f 1494** If your Emacs was built from a repository checkout, the new variable
0bfbd67c 1495`emacs-bzr-version' contains information about the bzr revision used.
de6ff46d 1496
6bc66c10 1497** New option `create-lockfiles' specifies usage of lockfiles.
f938eda9
CY
1498It defaults to t. Changing it to nil inhibits the creation of lock
1499files (use this with caution).
dc0f75c8 1500
6bc66c10
GM
1501** New option `enable-remote-dir-locals', if non-nil, allows directory-local
1502variables on remote hosts.
21ffb35a 1503
f85f636a
CY
1504** The entry for PCL-CVS has been removed from the Tools menu.
1505The PCL-CVS commands are still available via the keyboard.
1506
6bc66c10
GM
1507** Using "unibyte: t" in Lisp source files is obsolete.
1508Use "coding: raw-text" instead.
1509
e78e7e48
CY
1510** In the buffer made by `M-x report-emacs-bug', the `C-c m' binding
1511has been changed to `C-c M-i' (`report-emacs-bug-insert-to-mailer').
1512The previous binding, introduced in Emacs 24.1, was a mistake, because
1513`C-c LETTER' bindings are reserved for user customizations.
1514
6bc66c10 1515** Internationalization
2f940384 1516
f938eda9 1517*** New language environment: Persian.
2f940384 1518
f938eda9
CY
1519*** New input method `vietnamese-vni'.
1520
6bc66c10 1521** Nextstep (GNUstep / Mac OS X) port
2f940384 1522
823b2fb6 1523*** Support for fullscreen and the frame parameter fullscreen.
2f940384 1524
1a9c6830
GM
1525*** A file dialog is used for open/save operations initiated from the
1526menu/toolbar.
1527
a1ed8b05 1528\f
2a1e2476 1529* Editing Changes in Emacs 24.3
c25df26e 1530
6bc66c10 1531** Search and Replace
d39d3c8e 1532
f938eda9
CY
1533*** Non-regexp Isearch now performs "lax" space matching.
1534Each sequence of spaces in the supplied search string may match any
1535sequence of one or more whitespace characters, as specified by the
1536variable `search-whitespace-regexp'. (This variable is also used by a
823b2fb6 1537similar existing feature for regexp Isearch.)
2f940384 1538
f938eda9
CY
1539*** New Isearch command `M-s SPC' toggles lax space matching.
1540This applies to both ordinary and regexp Isearch.
2f940384 1541
f938eda9
CY
1542*** New option `replace-lax-whitespace'.
1543If non-nil, `query-replace' uses flexible whitespace matching too.
1544The default is nil.
2f940384 1545
b9cb2387
JL
1546*** Global `M-s _' starts a symbol (identifier) incremental search,
1547and `M-s _' in Isearch toggles symbol search mode.
1548`M-s c' in Isearch toggles search case-sensitivity.
1549
6bc66c10 1550** Navigation commands
48de8b12 1551
6bc66c10
GM
1552*** New binding `M-g c' for `goto-char'.
1553
1554*** New binding `M-g TAB' for `move-to-column'.
1555
1556*** `M-g TAB' (`move-to-column') prompts for a column number if called
1557interactively with no prefix arg. Previously, it moved to column 1.
1558
1559** New option `yank-handled-properties' allows processing of text
1560properties on yanked text, in ways that are more general than just
1561removing them (as is done by `yank-excluded-properties').
48de8b12 1562
48de8b12
CY
1563** New option `delete-trailing-lines' specifies whether
1564M-x delete-trailing-whitespace should delete trailing lines at the end
1565of the buffer. It defaults to t.
1566
f938eda9 1567** `C-u M-=' now counts lines/words/characters in the entire buffer.
826b3235 1568
48de8b12
CY
1569** `C-x 8 RET' is now bound to `insert-char', which is now a command.
1570`ucs-insert' is now an obsolete alias for `insert-char'.
b2459884 1571
48de8b12
CY
1572** The `z' key no longer has a binding in most special modes.
1573It used to be bound to `kill-this-buffer', but `z' is too easy to
1574accidentally type.
f938eda9 1575
6bc66c10
GM
1576** New command `C-x r M-w' (`copy-rectangle-as-kill').
1577It copies the region-rectangle as the last rectangle kill.
f938eda9 1578
6bc66c10 1579** Registers
f938eda9 1580
823b2fb6 1581*** `C-x r +' is now overloaded to invoke `append-to-register'.
f938eda9 1582
f938eda9 1583*** New option `register-separator' specifies the register containing
823b2fb6
GM
1584the text to put between collected texts for use with
1585M-x append-to-register and M-x prepend-to-register.
f1f4dba0 1586
a1ed8b05 1587\f
2a1e2476 1588* Changes in Specialized Modes and Packages in Emacs 24.3
ae4969c2 1589
6bc66c10 1590** Common Lisp emulation (CL)
f938eda9 1591
89660017 1592*** CL's main entry is now (require 'cl-lib).
823b2fb6
GM
1593`cl-lib' is like the old `cl' except that it uses the namespace cleanly;
1594i.e., all its definitions have the "cl-" prefix (and internal definitions
1595use the "cl--" prefix).
7c1898a7 1596
823b2fb6
GM
1597If `cl' provided a feature under the name `foo', then `cl-lib'
1598provides it under the name `cl-foo' instead; with the exceptions of the
1599few `cl' definitions that had to use `foo*' to avoid conflicts with
1600pre-existing Elisp entities. These have been renamed to `cl-foo'
1601rather than `cl-foo*'.
7c1898a7 1602
92246540 1603The old `cl' is now deprecated and is mainly just a bunch of aliases that
823b2fb6 1604provide the old, non-prefixed names. Some exceptions are listed below:
7c1898a7 1605
89660017
SM
1606*** `cl-flet' is not like `flet' (which is deprecated).
1607Instead it obeys the behavior of Common-Lisp's `flet'.
e8693c96
GM
1608In particular, in cl-flet function definitions are lexically scoped,
1609whereas in flet the scoping is dynamic.
89660017
SM
1610
1611*** `cl-labels' is slightly different from `labels'.
823b2fb6
GM
1612The difference is that it relies on the `lexical-binding' machinery
1613(as opposed to the `lexical-let' machinery used previously) to capture
1614definitions in closures, so such closures will only work if `lexical-binding'
1615is in use.
89660017 1616
f94b04fc 1617*** `cl-letf' is not exactly like `letf'.
4ddedf94
GM
1618The only difference is in details that relate to some deprecated usage
1619of `symbol-function' in place forms.
f94b04fc 1620
89660017 1621*** `progv' was rewritten to use the `let' machinery.
823b2fb6
GM
1622A side effect is that variables without corresponding values are bound
1623to nil rather than being made unbound.
89660017 1624
9512f820
GM
1625*** The following methods of extending `setf' are obsolete
1626(use features from gv.el instead):
1627`define-modify-macro' (use `gv-letplace')
031b2ea7
GM
1628`defsetf' (use `gv-define-simple-setter' or `gv-define-setter')
1629`define-setf-expander' (use `gv-define-setter' or `gv-define-expander')
2b4da3ff 1630`get-setf-method' no longer exists (see "Incompatible Lisp Changes")
f94b04fc 1631
6bc66c10 1632** Diff mode
f938eda9 1633
6bc66c10
GM
1634*** Changes are now highlighted using the same color scheme as in
1635modern VCSes. Deletions are displayed in red (new faces
1636`diff-refine-removed' and `smerge-refined-removed', and new definition
1637of `diff-removed'), insertions in green (new faces `diff-refine-added'
1638and `smerge-refined-added', and new definition of `diff-added').
f938eda9 1639
6bc66c10
GM
1640*** The variable `diff-use-changed-face' defines whether to use the
1641face `diff-changed', or `diff-removed' and `diff-added' to highlight
1642changes in context diffs.
2f940384 1643
6bc66c10
GM
1644*** The new command `diff-delete-trailing-whitespace' removes trailing
1645whitespace introduced by a diff.
f938eda9 1646
6bc66c10
GM
1647** Ediff now uses the same color scheme as Diff mode.
1648
1649** Python mode
1650
1651A new version of python.el, which provides several new features, including:
1652per-buffer shells, better indentation, Python 3 support, and improved
1653shell-interaction compatible with iPython (and virtually any other
1654text based shell).
1655
1656*** Some user options have been replaced/renamed, including (old -> new):
1657**** python-indent -> python-indent-offset
1658**** python-guess-indent -> python-indent-guess-indent-offset
1659**** python-pdbtrack-do-tracking-p -> python-pdbtrack-activate
1660**** python-use-skeletons -> python-skeleton-autoinsert
1661
1662*** Some user options have been removed, including:
1663
1664**** `python-indent-string-contents': Strings are never indented.
1665
1666**** `python-honour-comment-indentation':
d5b1b1aa 1667Comments are always considered as indentation markers.
6bc66c10
GM
1668
1669**** `python-continuation-offset': Indentation is automatically
1670calculated in a pep8 compliant way depending on the context.
1671
1672**** `python-shell-prompt-alist', `python-shell-continuation-prompt-alist':
1673Have no direct mapping as the shell interaction is completely different.
1674
1675**** `python-python-command', `python-jython-command':
1676Replaced by `python-shell-interpreter'.
1677
1678**** `inferior-python-filter-regexp', `python-remove-cwd-from-path',
1679`python-pdbtrack-minor-mode-string', `python-source-modes':
1680No longer relevant.
1681
1682*** Some commands have been replaced (old -> new):
1683**** python-insert-class -> python-skeleton-class
1684**** python-insert-def -> python-skeleton-def
1685**** python-insert-for -> python-skeleton-for
1686**** python-insert-if -> python-skeleton-if
1687**** python-insert-try/except -> python-skeleton-try
1688**** python-insert-try/finally -> python-skeleton-try
1689**** python-insert-while -> python-skeleton-while
1690**** python-find-function -> python-nav-jump-to-defun
1691**** python-next-statement -> python-nav-forward-sentence
1692**** python-previous-statement -> python-nav-backward-sentence
1693**** python-beginning-of-defun-function -> python-nav-beginning-of-defun
1694**** python-end-of-defun-function -> python-nav-end-of-defun
1695**** python-send-buffer -> python-shell-send-buffer
1696**** python-send-defun -> python-shell-send-defun
1697**** python-send-region -> python-shell-send-region
1698**** python-send-region-and-go -> emulate with python-shell-send-region
1699and python-shell-switch-to-shell
1700**** python-send-string -> python-shell-send-string
1701**** python-switch-to-python -> python-shell-switch-to-shell
1702**** python-describe-symbol -> python-eldoc-at-point
e76f0800 1703
f938eda9
CY
1704** D-Bus
1705
f938eda9
CY
1706*** New variables `dbus-compiled-version' and `dbus-runtime-version'.
1707
f938eda9
CY
1708*** The D-Bus object manager interface is implemented.
1709
f938eda9
CY
1710*** Variables of type :(u)int32 and :(u)int64 accept floating points,
1711if their value does not fit into Emacs's integer range.
1712
823b2fb6
GM
1713*** The function `dbus-call-method' is now non-blocking.
1714It can be interrupted by `C-g'. `dbus-call-method-non-blocking' is obsolete.
f938eda9 1715
823b2fb6 1716*** Signals can also be sent as unicast messages.
f938eda9 1717
f938eda9 1718*** The argument list of `dbus-register-signal' has been extended,
6bc66c10 1719according to the new match rule types of D-Bus.
f938eda9 1720
f938eda9
CY
1721*** `dbus-init-bus' supports private connections.
1722
f938eda9
CY
1723*** There is a new function `dbus-setenv'.
1724
6bc66c10
GM
1725** `desktop-path' no longer includes the "." directory.
1726Desktop files are now located in ~/.emacs.d by default.
f938eda9
CY
1727
1728** Dired
2f940384 1729
f938eda9
CY
1730*** `dired-do-async-shell-command' executes each file sequentially
1731if the command ends in `;' (when operating on multiple files).
1732Otherwise, it executes the command on each file in parallel.
2f940384 1733
823b2fb6
GM
1734*** Typing `M-n' in the minibuffer of `dired-do-chmod', `dired-do-chgrp',
1735`dired-do-chown', and `dired-do-touch' yanks the attributes of the
f938eda9 1736file at point.
2f940384 1737
f938eda9 1738*** When the region is active, `m' (`dired-mark'), `u' (`dired-unmark'),
823b2fb6 1739`DEL' (`dired-unmark-backward'), and `d' (`dired-flag-file-deletion')
f938eda9 1740mark/unmark/flag all files in the active region.
2f940384 1741
88c45e34 1742*** The minibuffer default for `=' (`dired-diff') has changed.
f938eda9
CY
1743It is now the backup file for the file at point, if one exists.
1744In Transient Mark mode the default is the file at the active mark.
2f940384 1745
f938eda9
CY
1746*** `M-=' is no longer bound to `dired-backup-diff' in Dired buffers.
1747The global binding for `M-=', `count-words-region' is in effect.
1748
02969baf
GM
1749** ERC
1750
6e5e9b70
GM
1751*** New module "notifications", which can send a notification when you
1752receive a private message or your nickname is mentioned.
02969baf
GM
1753
1754*** ERC will look up server/channel names via auth-source and use any
1755channel keys found.
f938eda9 1756
274f5de6
GM
1757*** New option `erc-lurker-hide-list', similar to `erc-hide-list', but
1758only applies to messages sent by lurkers.
f925b109 1759
6bc66c10 1760** reStructuredText mode
f938eda9 1761
6bc66c10
GM
1762*** Keybindings (see `C-c C-h'), TAB indentation, filling and auto-filling,
1763fontification, comment handling, and customization have all been revised
1764and improved.
f938eda9 1765
6bc66c10 1766*** Support for `imenu' and `which-function-mode'.
f938eda9 1767
6bc66c10
GM
1768*** The reStructuredText syntax is more closely covered.
1769Sphinx support has been improved.
f938eda9 1770
6bc66c10 1771*** `rst-insert-list' inserts new list or continues existing lists.
f938eda9 1772
6bc66c10 1773*** A negative prefix argument always works for `rst-adjust'.
f938eda9 1774
6bc66c10 1775*** The window configuration is reset after displaying a TOC.
bc7be45d 1776
6bc66c10 1777*** The constant `rst-version' describes the rst.el package version.
358c19d9 1778
dba3cda3
GM
1779** Ruby mode
1780
1781*** Support for percent literals and recognition of regular expressions
1782in method calls without parentheses with more methods, including Cucumber
1783steps definitions.
1784
1785*** Improved syntax highlighting and indentation.
1786
1787*** New command `ruby-toggle-block', bound to `C-c {'.
1788
1789*** Some non-standard keybindings/commands have been removed:
1790
1791**** `ruby-electric-brace'; use `electric-indent-mode' instead.
1792
1793**** `ruby-mark-defun'; use `mark-defun'.
1794
1795**** `ruby-beginning-of-defun' and `ruby-end-of-defun' are replaced by
1796appropriate settings for the variables `beginning-of-defun-function'
1797and `end-of-defun-function'.
1798
1799**** Non-standard keybindings for `backward-kill-word', `comment-region',
1800`reindent-then-newline-and-indent' and `newline' have been removed.
1801
6bc66c10 1802** Shell Script mode
40d8bcb8 1803
6bc66c10 1804*** Pairing of parens/quotes uses `electric-pair-mode' instead of skeleton-pair.
40d8bcb8 1805
6bc66c10 1806*** `sh-electric-here-document-mode' now controls auto-insertion of here-docs.
40d8bcb8 1807
6bc66c10 1808*** `sh-use-smie' lets you choose a new indentation and navigation code.
40d8bcb8 1809
6bc66c10 1810** VHDL mode
40d8bcb8 1811
6bc66c10 1812*** The free software compiler GHDL is supported (and now the default).
40d8bcb8 1813
6bc66c10 1814*** Support for the VHDL-AMS packages has been added/updated.
40d8bcb8 1815
6bc66c10 1816*** Updated to the 2002 revision of the VHDL standard.
40d8bcb8 1817
6bc66c10 1818*** Accepts \r and \f as whitespace.
40d8bcb8 1819
6bc66c10 1820** Apropos
40d8bcb8 1821
6bc66c10
GM
1822*** The faces used by Apropos are now directly customizable.
1823These faces are named `apropos-symbol', `apropos-keybinding', and so on;
1824see the `apropos' Custom group for details.
d13c8be6 1825
6bc66c10
GM
1826*** The old options whose values specified faces to use have been removed
1827(i.e. `apropos-symbol-face', `apropos-keybinding-face', etc.).
d13c8be6 1828
6bc66c10 1829** Buffer Menu
d13c8be6 1830
6bc66c10 1831*** This package has been rewritten to use Tabulated List mode.
d13c8be6 1832
6bc66c10
GM
1833*** Option `Buffer-menu-buffer+size-width' is now obsolete.
1834Use `Buffer-menu-name-width' and `Buffer-menu-size-width' instead.
d13c8be6 1835
86e100a6
GM
1836** Calc
1837
1838*** Algebraic simplification mode is now the default.
1839To restrict to the limited simplifications given by the former
1840default simplification mode, use `m I'.
1841
6bc66c10 1842** Calendar
d13c8be6 1843
6bc66c10
GM
1844*** You can customize the header text that appears above each calendar month.
1845See the variable `calendar-month-header'.
d13c8be6 1846
6bc66c10 1847*** New LaTeX calendar style, produced by `cal-tex-cursor-week2-summary'.
ee97deee 1848
6bc66c10
GM
1849*** The calendars produced by cal-html include holidays.
1850Customize `cal-html-holidays' to change this.
8b0823d6 1851
0058cae2
GM
1852** CEDET
1853
1854*** The major modes from the parser generators "Bovine" and "Wisent"
1855are now properly integrated in Emacs. The file suffixes ".by" and ".wy"
1856are in `auto-mode-alist', and the corresponding manuals are included.
1857
1858*** EDE
1859
1860**** Menu support for the "Configuration" feature. This allows users to
1861choose the active configuration (such as debug or install) from the menu.
1862
1863**** New command `ede-set' to interactively set project-local variables.
1864
1865**** Support for compiling, debugging, and running in "generic" projects.
1866
1867**** Autoconf editing support for M4 macros with complex arguments.
1868
1869**** Compilation support for the "linux" project type.
1870
1871**** "simple" projects have been removed; use "generic" projects instead.
1872
1873*** Semantic
1874
1875**** Support for parsing #include statements inside a namespace in C/C++.
1876
1877**** Improved support for 'extern "C"' declarations in C/C++.
1878
1879**** The ability to ignore more common special C/C++ preprocessor symbols,
1880such as '__nonnull' and '__asm'. Add '__cplusplus' macro when parsing C++.
1881If available, include cdefs.h as an additional source of preprocessor symbols.
1882
1883**** Improved C/C++ function pointer parsing.
1884
1885**** In Python, support for converting imports to include file names.
1886
1887**** Ability to dynamically determine the Python load path.
1888
1889**** Support for the Python 'WITH' and 'AT' keywords.
1890
1891**** Improved tooltip completion.
1892
1893*** SRecode
1894
1895**** The SRecode manual is now included.
1896
1897**** Tag generation supports constructor/destructor settings and system
1898include differentiation.
1899
1900**** Addition of 'Framework' support: Frameworks are specified when a
1901particular kind of library (such as Android) is needed in a common language
1902mode (like Java).
1903
1904**** Support for nested templates and let variables override based on priority.
1905
1906**** Support for merging tables from multiple related modes, such as
1907default -> c++ -> arduino.
1908
6bc66c10 1909** Compile has a new option `compilation-always-kill'.
42917e79 1910
6bc66c10 1911** Customize
35d98877 1912
6bc66c10 1913*** `custom-reset-button-menu' now defaults to t.
35d98877 1914
6bc66c10
GM
1915*** Non-option variables are never matched in `customize-apropos' and
1916`customize-apropos-options' (i.e., the prefix argument does nothing for
1917these commands now).
782fbf2a 1918
f938eda9 1919** Term
782fbf2a 1920
823b2fb6
GM
1921*** The variables `term-default-fg-color' and `term-default-bg-color'
1922are now deprecated in favor of the customizable face `term'.
fc72b15c 1923
02969baf
GM
1924*** You can customize how to display ANSI terminal colors and styles
1925by customizing the corresponding `term-color-<COLOR>',
1926`term-color-underline' and `term-color-bold' faces.
cf20dee0 1927
05ecb497 1928** Tramp
2f940384 1929
02969baf 1930*** The syntax has been extended in order to allow ad-hoc proxy definitions.
05ecb497 1931
823b2fb6 1932*** Remote processes are now also supported on remote MS-Windows hosts.
05ecb497 1933
ce7b18ec 1934** URL
2f940384 1935
ce7b18ec
CY
1936*** Structs made by `url-generic-parse-url' have nil `attributes' slot.
1937Previously, this slot stored semicolon-separated attribute-value pairs
1938appended to some imap URLs, but this is not compatible with RFC 3986.
823b2fb6 1939So now the `filename' slot stores the entire path and query components,
ce7b18ec 1940and the `attributes' slot is always nil.
2f940384 1941
ce7b18ec
CY
1942*** New function `url-encode-url' for encoding a URI string.
1943The `url-retrieve' function now uses this to encode its URL argument,
1944in case that is not properly encoded.
1945
6bc66c10
GM
1946** notifications.el supports now version 1.2 of the Notifications API.
1947The function `notifications-get-capabilities' returns the supported
1948server properties.
f938eda9 1949
6bc66c10
GM
1950** Flymake uses fringe bitmaps to indicate errors and warnings.
1951See `flymake-fringe-indicator-position', `flymake-error-bitmap' and
1952`flymake-warning-bitmap'.
f938eda9 1953
6bc66c10
GM
1954** The FFAP option `ffap-url-unwrap-remote' can now be a list of strings,
1955specifying URL types that should be converted to remote file names at
1956the FFAP prompt. The default is now '("ftp").
f938eda9 1957
6bc66c10
GM
1958** New Ibuffer `derived-mode' filter, bound to `/ M'.
1959The old binding for `/ M' (filter by used-mode) is now bound to `/ m'.
f938eda9 1960
6bc66c10
GM
1961** New option `mouse-avoidance-banish-position' specifies where the
1962`banish' mouse avoidance setting moves the mouse.
ce7b18ec 1963
6bc66c10
GM
1964** In Perl mode, new option `perl-indent-parens-as-block' causes non-block
1965closing brackets to be aligned with the line of the opening bracket.
f938eda9 1966
6bc66c10 1967** In Proced mode, new command `proced-renice' renices marked processes.
f938eda9 1968
6bc66c10
GM
1969** New option `async-shell-command-buffer' specifies the buffer to use
1970for a new asynchronous `shell-command' when the default output buffer
1971`*Async Shell Command*' is already in use.
f938eda9 1972
6bc66c10
GM
1973** SQL mode has a new option `sql-db2-escape-newlines'.
1974If non-nil, newlines sent to the command interpreter will be escaped
1975by a backslash. The default does not escape the newlines and assumes
1976that the sql statement will be terminated by a semicolon.
f938eda9 1977
6bc66c10
GM
1978** New command `tabulated-list-sort', bound to `S' in Tabulated List mode
1979(and modes that derive from it), sorts the column at point, or the Nth
1980column if a numeric prefix argument is given.
f938eda9 1981
02969baf 1982** `which-func-modes' now defaults to t, so Which Function mode, when
05b621a6 1983enabled, applies to all applicable major modes.
f938eda9 1984
6bc66c10 1985** `winner-mode-hook' now runs when the mode is disabled, as well as when
823b2fb6 1986it is enabled.
f938eda9 1987
6bc66c10
GM
1988** Follow mode no longer works by using advice.
1989The option `follow-intercept-processes' has been removed.
1990
1991** `javascript-generic-mode' is now an obsolete alias for `js-mode'.
f938eda9 1992
d1069532
SM
1993** Hooks renamed to avoid obsolete "-hooks" suffix:
1994*** semantic-lex-reset-hooks -> semantic-lex-reset-functions
1995*** semantic-change-hooks -> semantic-change-functions
1996*** semantic-edits-new-change-hooks -> semantic-edits-new-change-functions
1997*** semantic-edits-delete-change-hooks -> semantic-edits-delete-change-functions
1998*** semantic-edits-reparse-change-hooks -> semantic-edits-reparse-change-functions
1999*** semanticdb-save-database-hooks -> semanticdb-save-database-functions
2000*** c-prepare-bug-report-hooks -> c-prepare-bug-report-hook
2001*** rcirc-sentinel-hooks -> rcirc-sentinel-functions
2002*** rcirc-receive-message-hooks -> rcirc-receive-message-functions
2003*** rcirc-activity-hooks -> rcirc-activity-functions
2004*** rcirc-print-hooks -> rcirc-print-functions
2005*** dbus-event-error-hooks -> dbus-event-error-functions
2006*** eieio-pre-method-execution-hooks -> eieio-pre-method-execution-functions
2007*** checkdoc-style-hooks -> checkdoc-style-functions
2008*** checkdoc-comment-style-hooks -> checkdoc-comment-style-functions
2009*** archive-extract-hooks -> archive-extract-hook
2010*** filesets-cache-fill-content-hooks -> filesets-cache-fill-content-hook
2011*** hfy-post-html-hooks -> hfy-post-html-hook
2012*** nndiary-request-create-group-hooks -> nndiary-request-create-group-functions
2013*** nndiary-request-update-info-hooks -> nndiary-request-update-info-functions
2014*** nndiary-request-accept-article-hooks -> nndiary-request-accept-article-functions
2015*** gnus-subscribe-newsgroup-hooks -> gnus-subscribe-newsgroup-functions
f938eda9 2016
6bc66c10 2017** Obsolete packages
2f940384 2018
797e6e88
SM
2019*** assoc.el
2020In most cases, assoc+member+push+delq work just as well.
2021And in any case it's just a terrible package: ugly semantics, terrible
2022inefficiency, and not namespace-clean.
3c74813a 2023*** bruce.el
b4617547 2024*** cust-print.el
daed4003 2025*** ledit.el
82f289a4 2026*** mailpost.el
d57de7fe 2027*** mouse-sel.el
3c74813a 2028*** patcomp.el
1a9c6830 2029
a1ed8b05 2030\f
2a1e2476 2031* Incompatible Lisp Changes in Emacs 24.3
b4d3bc10 2032
6bc66c10
GM
2033** Docstrings starting with `*' no longer indicate user options.
2034Only variables defined using `defcustom' are considered user options.
2035The function `user-variable-p' is now an obsolete alias for
2036`custom-variable-p'.
090cf9db 2037
6bc66c10
GM
2038** The return values of `defalias', `defun' and `defmacro' have changed,
2039and are now undefined. For backwards compatibility, `defun' and
2040`defmacro' currently return the name of the newly defined
2041function/macro, but this should not be relied upon.
090cf9db 2042
823b2fb6
GM
2043** `random' by default now returns a different random sequence in
2044every Emacs run. Use `(random S)', where S is a string, to set the
0e23ef9d
PE
2045random seed to a value based on S, in order to get a repeatable
2046sequence in later calls.
2047
d32e47af
LM
2048** If the NEWTEXT arg to `replace-match' contains a substring "\?",
2049that substring is inserted literally even if the LITERAL arg is
2050non-nil, instead of causing an error to be signaled.
2051
2cec368c
MR
2052** `select-window' now always makes the window's buffer current.
2053It does so even if the window was selected before.
2054
6bc66c10
GM
2055** The function `x-select-font' can return a font spec, instead of a
2056font name as a string. Whether it returns a font spec or a font name
2057depends on the graphical library.
bbf908bc 2058
eeddc531
CY
2059** `face-spec-set' no longer sets frame-specific attributes when the
2060third argument is a frame (that usage was obsolete since Emacs 22.2).
2061
6bc66c10 2062** `set-buffer-multibyte' now signals an error in narrowed buffers.
a59d531e 2063
ab7f1c43
GM
2064** The CL package's `get-setf-method' function no longer exists.
2065Generalized variables are now part of core Emacs Lisp, and implemented
2066differently to the way cl.el used to do it. It is not possible to
2067define a compatible replacement for `get-setf-method'. See the file
2068gv.el for internal details of the new implementation.
2069
6bc66c10
GM
2070** The arguments of `dbus-register-signal' are no longer just strings,
2071but keywords or keyword-string pairs. The old argument list will
2072still be supported for Emacs 24.x.
72b255c7 2073
6bc66c10 2074** Miscellaneous name changes
823b2fb6
GM
2075Some Lisp symbols have been renamed to correct their spelling,
2076or to be more consistent with standard Emacs terminology.
72b255c7 2077
72b255c7 2078*** Renamed functions
72b255c7
PE
2079**** hangul-input-method-inactivate -> hangul-input-method-deactivate
2080**** inactivate-input-method -> deactivate-input-method
2081**** quail-inactivate -> quail-deactivate
2082**** robin-inactivate -> robin-deactivate
2083**** viper-inactivate-input-method -> viper-deactivate-input-method
2084**** viper-inactivate-input-method-action ->
2085 viper-deactivate-input-method-action
2086**** ucs-input-inactivate -> ucs-input-deactivate
2087
2088*** Renamed hooks
2089The old hooks are still supported for backward compatibility, but they
2090are deprecated and will be removed eventually.
72b255c7
PE
2091**** input-method-inactivate-hook -> input-method-deactivate-hook
2092**** robin-inactivate-hook -> robin-deactivate-hook
2093**** quail-inactivate-hook -> quail-deactivate-hook
2094
6bc66c10 2095*** Renamed variables
72b255c7
PE
2096**** follow-deactive-menu -> follow-inactive-menu
2097**** inactivate-current-input-method-function ->
2098 deactivate-current-input-method-function
2099
02969baf
GM
2100** Some obsolete functions, variables, and faces have been removed:
2101*** `last-input-char', `last-command-char', `unread-command-char'
78f3273a
CY
2102*** `facemenu-unlisted-faces'
2103*** `rmail-decode-mime-charset'
a5f2b6ec
CY
2104*** `iswitchb-read-buffer'
2105*** `sc-version', `sc-submit-bug-report'
2106*** `set-char-table-default'
02969baf 2107*** `string-to-sequence' (use `string-to-list' or `string-to-vector')
a5f2b6ec 2108*** `compile-internal'
02969baf 2109*** `modeline'
59f7af81 2110*** `mode-line-inverse-video'
02969baf 2111*** `follow-mode-off-hook'
a5f2b6ec 2112*** `cvs-commit-buffer-require-final-newline'
63820c5c 2113(use `log-edit-require-final-newline' instead)
a5f2b6ec
CY
2114*** `cvs-changelog-full-paragraphs'
2115(use `log-edit-changelog-full-paragraphs' instead)
2116*** `cvs-diff-ignore-marks', `cvs-diff-buffer-name'
2117*** `vc-ignore-vc-files' (use `vc-handled-backends' instead)
2118*** `vc-master-templates' (use `vc-handled-backends' instead)
2119*** `vc-checkout-carefully'
78f3273a 2120
a1ed8b05 2121\f
93e0bed6 2122* Lisp Changes in Emacs 24.3
ef24141c 2123
2ee3d7f0 2124** CL-style generalized variables are now in core Elisp.
f938eda9 2125`setf' is autoloaded; `push' and `pop' accept generalized variables.
ebdbfb95
GM
2126You can define your own generalized variables using `gv-define-simple-setter',
2127`gv-define-setter', etc.
2ee3d7f0 2128
6bc66c10
GM
2129** Emacs tries to macroexpand interpreted (non-compiled) files during load.
2130This can significantly speed up execution of non-byte-compiled code,
2131but can also bump into previously unnoticed cyclic dependencies.
2132These are generally harmless: they will simply cause the macro calls
2133to be left for later expansion (as before), but will result in a
2134warning ("Eager macro-expansion skipped due to cycle") describing the cycle.
2135You may wish to restructure your code so this does not happen.
2136
2137** New sampling-based Elisp profiler.
2138Try M-x profiler-start, do some work, and then call M-x profiler-report.
2139When finished, use M-x profiler-stop. The sampling rate can be based on
2140CPU time or memory allocations.
2141
500fcedc
SM
2142** `defun' also accepts a (declare DECLS) form, like `defmacro'.
2143The interpretation of the DECLS is determined by `defun-declarations-alist'.
2144
6bc66c10
GM
2145** New macros `setq-local' and `defvar-local'.
2146
2147** Face underlining can now use a wave.
2f940384 2148
6bc66c10 2149** `read-regexp' has a new argument HISTORY; the first argument PROMPT
cd996018 2150of `read-regexp' accepts a string ending with a colon and space, and its
823b2fb6 2151second argument DEFAULTS can be a list of strings accessible via `M-n'
cd996018
CY
2152in the minibuffer ahead of other hard-coded useful regexp-related values.
2153More commands use `read-regexp' now to read their regexp arguments.
2154
f938eda9 2155** Completion
500fcedc 2156
f938eda9
CY
2157*** New function `completion-table-with-quoting' to handle completion
2158in the presence of quoting, such as file completion in shell buffers.
f95e9344 2159
f938eda9
CY
2160*** New function `completion-table-subvert' to use an existing completion
2161table, but with a different prefix.
2162
6bc66c10 2163** Debugger
f95e9344 2164
f938eda9
CY
2165*** New error type and new function `user-error'.
2166These do not trigger the debugger.
f95e9344 2167
57fc0fee
GM
2168*** New option `debugger-bury-or-kill', saying what to do with the
2169debugger buffer when exiting debug.
45b82ad0
SM
2170
2171*** Set `debug-on-message' to enter the debugger when a certain
2172message is displayed in the echo area. This can be useful when trying
2173to work out which code is doing something.
2f940384 2174
45b82ad0
SM
2175*** New var `inhibit-debugger', automatically set to prevent accidental
2176recursive invocations.
fa2bcf43 2177
6bc66c10 2178** Window handling
2f940384 2179
6bc66c10
GM
2180*** New command `fit-frame-to-buffer' adjusts the frame height to
2181fit the contents.
2f940384 2182
6bc66c10
GM
2183*** The command `fit-window-to-buffer' can adjust the frame height
2184if the new option `fit-frame-to-buffer' is non-nil.
8e17c9ba 2185
7fe37cfc
GM
2186*** New macro `with-temp-buffer-window', similar to
2187`with-output-to-temp-buffer'.
fa2bcf43 2188
8e17c9ba
MR
2189*** `temp-buffer-resize-mode' no longer resizes windows that have been
2190reused.
c5e28e39 2191
823b2fb6 2192*** New option `switch-to-buffer-preserve-window-point' to restore a
43bcfda6 2193window's point when switching buffers.
7c82753d 2194
6bc66c10
GM
2195*** New display action alist entries `window-height' and `window-width'
2196specify the size of new windows created by `display-buffer'.
2197
2198*** New display action alist entry `pop-up-frame-parameters', if
2199non-nil, specifies frame parameters to give any newly-created frame.
7c82753d 2200
fa2bcf43
MR
2201*** New display action alist entry `inhibit-switch-frame', if non-nil,
2202tells display action functions to avoid changing which frame is
2203selected.
2f940384 2204
fa2bcf43
MR
2205*** New display action alist entry `previous-window', if non-nil,
2206specifies window to reuse in `display-buffer-in-previous-window'.
2f940384 2207
6bc66c10
GM
2208*** New display action functions `display-buffer-below-selected',
2209and `display-buffer-in-previous-window'.
2210
2211*** The functions `get-lru-window', `get-mru-window' and `get-largest-window'
2212now accept a third argument to avoid choosing the selected window.
2213
2214*** Additional values recognized for option `window-combination-limit'.
5938d519 2215
77f1f99c
CY
2216*** The following variables are obsolete, as they can be replaced by
2217appropriate entries in the `display-buffer-alist' function introduced
2218in Emacs 24.1:
823b2fb6 2219**** `dired-shrink-to-fit'
77f1f99c 2220**** `display-buffer-reuse-frames'
823b2fb6 2221**** `display-buffer-function'
77f1f99c 2222**** `special-display-buffer-names'
823b2fb6 2223**** `special-display-frame-alist'
77f1f99c 2224**** `special-display-function'
823b2fb6 2225**** `special-display-regexps'
77f1f99c 2226
ab0fa4e4 2227** Time
2f940384 2228
ab0fa4e4
PE
2229*** `current-time-string' no longer requires that its argument's year
2230must be in the range 1000..9999. It now works with any year supported
2231by the underlying C implementation.
2f940384 2232
f938eda9
CY
2233*** `current-time' now returns extended-format time stamps
2234(HIGH LOW USEC PSEC), where the new PSEC slot specifies picoseconds.
2235PSEC is typically a multiple of 1000 on current machines. Other
823b2fb6
GM
2236functions that use this format, such as `file-attributes' and
2237`format-time-string', have been changed accordingly. Old-format time
f938eda9 2238stamps are still accepted.
2f940384 2239
823b2fb6 2240*** The format of timers in `timer-list' and `timer-idle-list' is now
f938eda9
CY
2241[TRIGGERED-P HI-SECS LO-SECS USECS REPEAT-DELAY FUNCTION ARGS IDLE-DELAY PSECS].
2242The PSECS slot is new, and uses picosecond resolution. It can be
823b2fb6 2243accessed via the new `timer--psecs' accessor.
2f940384 2244
c4132fd4
PE
2245*** Last-modified time stamps in undo lists now are of the form
2246(t HI-SECS LO-SECS USECS PSECS) instead of (t HI-SECS . LO-SECS).
2247
0058cae2
GM
2248** EIEIO
2249
2250*** Improved security when handling persistent objects:
2251
2252**** `eieio-persistent-read' now features optional arguments for specifying
2253the class to load, as well as a flag stating whether subclasses are allowed;
2254if provided, other classes will be rejected by the reader. For
2255compatibility with existing code, if the class is omitted only a
2256warning is issued.
2257
2258**** New specialized reader for pulling in classes and signaling errors
2259without evaluation of suspicious code.
2260
2261**** All slots that contain objects must have a :type. Slots with lists
2262of objects must use a new type predicate for a list of an object type.
2263
2264*** Support for `find-function' and similar utilities, through the addition
2265of filename support to generated symbols.
2266
f938eda9 2267** Floating point functions now always return special values like NaN,
823b2fb6 2268instead of signaling errors, if given invalid args; e.g., (log -1.0).
f938eda9
CY
2269Previously, they returned NaNs on some platforms but signaled errors
2270on others. The affected functions are acos, asin, tan, exp, expt,
2271log, log10, sqrt, and mod.
2272
6bc66c10 2273** New fringe bitmap `exclamation-mark'.
f938eda9 2274
6bc66c10
GM
2275** Miscellaneous changes to special forms and macros
2276
2277*** `defun' and `defmacro' are now macros rather than special forms.
2278
2279*** `kbd' is now a function rather than a macro.
2280
2281** Miscellaneous new functions
2282
b29daf07
GM
2283*** `set-temporary-overlay-map' sets up a temporary keymap that
2284takes precedence over most other maps for a short while (normally one key).
f938eda9 2285
847a0561 2286*** `autoloadp' tests if its argument is an autoloaded object.
2f940384 2287
847a0561 2288*** `autoload-do-load' performs the autoloading operation.
2f940384 2289
f938eda9 2290*** `buffer-narrowed-p' tests if the buffer is narrowed.
2f940384 2291
f938eda9 2292*** `file-name-base' returns a file name sans directory and extension.
2f940384 2293
f938eda9 2294*** `function-get' fetches a function property, following aliases.
c990426a 2295
f938eda9 2296*** `posnp' tests if an object is a `posn'.
f938eda9 2297
f938eda9 2298*** `system-users' returns the user names on the system.
547d6865 2299
f938eda9 2300*** `system-groups' returns the group names on the system.
f938eda9 2301
f938eda9 2302*** `tty-top-frame' returns the topmost frame of a text terminal.
c990426a 2303
f938eda9 2304** The following functions and variables are obsolete:
847a0561 2305*** `automount-dir-prefix' (use `directory-abbrev-alist')
f938eda9 2306*** `buffer-has-markers-at'
1a9c6830 2307*** `macro-declaration-function' (use `macro-declarations-alist')
847a0561 2308*** `window-system-version' (provides no useful information)
93cacb6d 2309*** `dired-pop-to-buffer' (use `dired-mark-pop-up')
0e2ae83d 2310*** `query-replace-interactive'
49238e7f 2311*** `font-list-limit' (has had no effect since Emacs < 23)
86aa551c 2312
adce950d 2313\f
93e0bed6 2314* Changes in Emacs 24.3 on Non-Free Operating Systems
9078ead6 2315
4e98ad15 2316** Cygwin builds can use the native MS Windows user interface.
823b2fb6 2317Pass `--with-w32' to configure. The default remains the X11 interface.
53a63be6 2318
1a9c6830 2319** Two new functions are available in Cygwin builds:
6e9f7997
DC
2320`cygwin-convert-file-name-from-windows' and
2321`cygwin-convert-file-name-to-windows'. These functions allow Lisp
2322code to access the Cygwin file-name mapping machinery to convert
2323between Cygwin and Windows-native file and directory names.
de6e3a60 2324
4e98ad15 2325** When invoked with the -nw switch to run on the Windows text-mode terminal,
1ab0c851 2326Emacs now supports `mouse-highlight', help-echo (in the echo area), and
4e98ad15
GM
2327`mouse-autoselect-window'.
2328
1a9c6830 2329** On MS Windows Vista and later Emacs now supports symbolic links.
4e98ad15 2330
823b2fb6 2331** On MS Windows, you can pass `--without-libxml2' to configure.bat to omit
4e98ad15
GM
2332support for libxml2, even if its presence is detected.
2333
4e98ad15
GM
2334** On Mac OS X, the Nextstep port requires OS X 10.4 or later.
2335
823b2fb6 2336** On Mac OS X, configure no longer automatically adds the Fink "/sw"
4e98ad15
GM
2337directories to the search path. You must add them yourself if you want them.
2338
2a1e2476
GM
2339\f
2340* Changes in Emacs 24.2
2341
5190da91 2342** This is mainly a bug-fix release.
6dad7178 2343
9078ead6 2344\f
eb199145 2345* Installation Changes in Emacs 24.1
09e18d03 2346
31fd3586
GM
2347** Emacs can be compiled with Gtk+ 3.0 if you pass --with-x-toolkit=gtk3
2348to configure. Note that other libraries used by Emacs, RSVG and GConf,
2349also depend on Gtk+. You can disable them with --without-rsvg and
2350--without-gconf.
338648ad 2351
31fd3586
GM
2352** Emacs can be compiled with GnuTLS support.
2353This happens by default if a suitably recent version of the library is
2354found at build time. To prevent this, use the configure option
2355`--without-gnutls'. See below for GnuTLS features.
338648ad 2356
31fd3586
GM
2357** Emacs can be compiled with SELinux support.
2358This happens by default if a suitably recent version of the library is
2359found at build time. To prevent this, use the configure option
2360`--without-selinux'. See below for SELinux features.
aded53ff 2361
31fd3586
GM
2362** Emacs can be compiled with ImageMagick support.
2363This happens by default if a suitably recent version of the library is
2364found at build time. To prevent this, use the configure option
2365`--without-imagemagick'. See below for ImageMagick features.
c1f10868 2366This feature is not available for the Nextstep or MS ports.
d9170db5 2367
043efd56
GM
2368** Emacs can be compiled with libxml2 support.
2369This happens by default if a suitably recent version of the library is
2370found at build time. To prevent this, use the configure option
2371`--without-xml2'. See below for libxml2 features.
2372
7d301ae6
CY
2373** By default, the installed Info and man pages are compressed.
2374You can disable this by configuring --without-compress-info.
2375
7d301ae6 2376** New configure option --with-wide-int.
81eafe29 2377With it, Emacs integers typically have 62 bits, even on 32-bit machines.
0a768890
PE
2378On 32-bit hosts, this raises the limit on buffer sizes from about 512 MiB
2379to about 2 GiB.
81eafe29 2380
7d301ae6 2381** New configure options: --with-mmdf, --with-mail-unlink, --with-mailhost.
31fd3586
GM
2382These provide no new functionality, they just remove the need to edit
2383lib-src/Makefile by hand in order to use the associated features.
2384
7d301ae6 2385** New configure option --enable-use-lisp-union-type.
31fd3586
GM
2386This is only useful for Emacs developers to debug certain types of bugs.
2387This is not a new feature; only the configure flag is new.
041d709f
CY
2388
2389** The standalone programs digest-doc and sorted-doc are removed.
2390Emacs now uses Lisp commands `doc-file-to-man' and `doc-file-to-info'.
2391
041d709f
CY
2392** The standalone program `fakemail' is removed.
2393If you need it, feedmail.el provides a superset of the functionality.
2394
0bfd685e 2395\f
eb199145 2396* Startup Changes in Emacs 24.1
4a263588 2397
198a7a97 2398** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
adbf62ff
GM
2399command line arguments, and the EMACS_UNIBYTE environment variable, no
2400longer have any effect. (They were declared obsolete in Emacs 23.)
198a7a97 2401
66b7b0fe 2402** New command line option `--no-site-lisp' removes site-lisp directories
1b5e5b0c
GM
2403from load-path. -Q now implies this. This option does not affect the
2404EMACSLOADPATH environment variable (and hence has no effect for
c8d59ba3 2405Nextstep builds).
66b7b0fe 2406
0bfd685e 2407\f
eb199145 2408* Changes in Emacs 24.1
7841339b 2409
a2a25d24 2410** Completion
fdeb32ec 2411
dfdb4cad
CY
2412*** Many packages now use the `completion-at-point' command,
2413rather than implementing separate completion commands.
2414
de0bde62 2415*** `completion-at-point' now handles tags and semantic completion.
dfdb4cad 2416
a2a25d24
SM
2417*** Completion in a non-minibuffer now tries to detect the end of completion
2418and pops down the *Completions* buffer accordingly.
dfdb4cad
CY
2419
2420*** New option `completion-cycle-threshold' allows completion cycling.
2421
2422*** New option `completion-category-overrides' for overriding the
2c719188 2423default completion style in certain circumstances.
dfdb4cad 2424
a2a25d24 2425*** New completion style `substring'.
dfdb4cad
CY
2426
2427*** Completion of buffer names uses `substring' completion by default.
2428
2429*** The option `widget-complete-field' has been removed.
620c53a6 2430
6870aaef 2431** Mail changes
dfdb4cad 2432
7d301ae6
CY
2433*** The first time you try sending mail, Emacs asks for a mail method.
2434This is implemented by a new default for `send-mail-function', which
2435is `sendmail-query-once'. This offers to use the smtpmail package, or
2436to use the old defaults relying on external mail facilities
2437(`sendmail-send-it' on GNU/Linux and other Unix-like systems, and
2438`mailclient-send-it' on Windows).
dfdb4cad 2439
e78e7e48
CY
2440*** Typing `C-c m' in the buffer made by `M-x report-emacs-bug'
2441transfers the report to your desktop's preferred mail client, if there
2442is one. This uses either the "xdg-email" utility, or Mac OS's "open"
2443command.
dfdb4cad 2444
7d301ae6
CY
2445*** See Changes in Specialized Modes and Packages for SMTPmail changes
2446and Mail mode changes
3f88cd72 2447
041d709f 2448** Emacs server and client changes
dfdb4cad 2449
7d301ae6 2450*** New option `server-port' specifies the port for TCP Emacs servers.
dfdb4cad 2451
041d709f 2452*** New emacsclient argument -q/--quiet suppresses some status messages.
dfdb4cad 2453
7d301ae6
CY
2454*** New emacsclient argument --frame-parameters specifies the frame
2455parameters of any newly-created graphical frame.
dfdb4cad
CY
2456
2457*** If emacsclient shuts down due to Emacs signaling an error,
2458its exit status is 1.
2459
041d709f
CY
2460*** New emacsclient argument --parent-id ID.
2461This opens a client frame in parent X window ID, via XEmbed, similar
2462to the --parent-id argument to Emacs.
2463
d0ce9f8c
MB
2464** Internationalization changes
2465
d0ce9f8c 2466*** Emacs now supports display and editing of bidirectional text.
7d301ae6
CY
2467Right-to-left (RTL) scripts, such as Arabic, Farsi, and Hebrew, are
2468displayed in the correct visual order as expected by users of those
dfdb4cad
CY
2469scripts. The display reordering is a "full bidirectionality" class
2470implementation of the Unicode Bidirectional Algorithm (UBA). Buffers
2471with no RTL text should look exactly the same as before.
f4b6ba46 2472
041d709f 2473**** New buffer-local variable `bidi-display-reordering'.
7d301ae6 2474To disable display reordering in a buffer, change this to nil.
d20e1419 2475
041d709f
CY
2476**** New buffer-local variable `bidi-paragraph-direction'.
2477If nil (the default), Emacs determines the base direction of each
dfdb4cad
CY
2478paragraph from its text, as specified by the UBA. Setting the value
2479to `right-to-left' or `left-to-right' forces a base direction on each
2480paragraph.
f4b6ba46 2481
7d301ae6
CY
2482Paragraphs with right-to-left base direction are displayed starting at
2483the right window edge.
f1816485 2484
dfdb4cad
CY
2485*** Enhanced support for characters with no glyphs in available fonts,
2486or, on text terminals, characters that cannot be encoded by the
2487terminal coding system. The new option `glyphless-char-display-control'
2488specifies how to display them: as a hexadecimal code in a box, a thin
24891-pixel space, an empty box, etc.
d0ce9f8c 2490
9702b7a1
GM
2491*** New input methods for Farsi and Bulgarian
2492(farsi-isiri-9147, farsi-transliterate-banan, bulgarian-alt-phonetic).
041d709f 2493
939db9ac
CY
2494*** `nobreak-char-display' now also highlights Unicode hyphen chars
2495(U+2010 and U+2011).
2496
7d301ae6 2497*** New Hebrew translation of the Emacs Tutorial.
31fd3586
GM
2498Type `C-u C-h t' to choose it in case your language setup doesn't
2499automatically select it.
2500
7d301ae6
CY
2501** An Emacs Lisp package manager is now included.
2502This is a convenient way to download and install additional packages,
2503from a package repository at http://elpa.gnu.org.
dfdb4cad 2504
7d301ae6
CY
2505*** M-x list-packages shows a list of packages, which can be
2506selected for installation.
dfdb4cad 2507
7d301ae6 2508*** New command `describe-package', bound to `C-h P'.
dfdb4cad 2509
7d301ae6
CY
2510*** By default, all installed packages are loaded automatically when
2511Emacs starts up. To disable this, set `package-enable-at-startup' to
2512nil. To specify the packages to load, customize `package-load-list'.
16a91140 2513
dfdb4cad
CY
2514** Custom theme changes
2515
7d301ae6
CY
2516*** New command `M-x customize-themes', which provides a convenient
2517interface for enabling and disabling Custom themes.
dfdb4cad 2518
7d301ae6 2519*** New option `custom-theme-load-path' is the load path for themes.
dfdb4cad
CY
2520Emacs no longer looks for Custom themes in `load-path'. The default
2521value of `custom-theme-load-path' says to look for themes in
2522`custom-theme-directory', followed by a subdirectory of
2523`data-directory' named "themes/", which contains a small selection of
2524built-in Custom themes.
2525
7d301ae6
CY
2526*** New option `custom-safe-themes' records known-safe theme files.
2527If a theme is not in this list, Emacs queries before loading it, and
2528offers to save the theme to `custom-safe-themes' automatically. By
2529default, all themes included in Emacs are treated as safe.
b7d65a5f 2530
7d301ae6 2531** Improved GTK integration
dfdb4cad 2532
7d301ae6 2533*** GTK scroll-bars are now placed on the right by default.
dfdb4cad
CY
2534The function `set-scroll-bar-mode' can change this.
2535
7d301ae6 2536*** GTK tool bars can have just text, just images or images and text.
dfdb4cad
CY
2537Customize `tool-bar-style' to choose the style. On a Gnome desktop,
2538the default is taken from desktop settings.
2539
2540*** GTK tool bars can be placed on any edge of the frame.
7d301ae6
CY
2541The frame-parameter tool-bar-position controls this. It takes the
2542values top, left, right or bottom. The Options => Show/Hide menu has
2543entries for this.
dfdb4cad 2544
7d301ae6
CY
2545*** The default colors for selected text (the `region' face) are taken
2546from the GTK theme when Emacs is built with GTK.
dfdb4cad 2547
7d301ae6
CY
2548*** Emacs uses GTK tooltips by default if built with GTK.
2549You can disable this by changing `x-gtk-use-system-tooltips' to nil.
a5bee597 2550
dfdb4cad
CY
2551** Graphical interface changes
2552
2553*** On graphical displays, the mode-line no longer ends in dashes.
2554Also, the first dash (which does not indicate anything) is just
2555displayed as a space.
2556
2557*** `menu-bar-select-buffer-function' lets you choose another operation
2558instead of `switch-to-buffer' when selecting an item in the Buffers menu.
2559
2560*** Lucid menus and dialogs can display antialiased fonts if Emacs is
2561built with Xft. These fonts can be set via X resources, for example:
2562Emacs.pane.menubar.font: Courier-12
2563
7d301ae6 2564** Exiting changes
dfdb4cad 2565
7d301ae6 2566*** Emacs now calls `kill-emacs' if it receives SIGTERM or SIGHUP,
dfdb4cad
CY
2567or if it receives a SIGINT signal in batch mode.
2568
7d301ae6
CY
2569*** `kill-emacs-hook' is now also run in batch mode.
2570Third-party code which adds to `kill-emacs-hook' should check if they
2571do the right thing in batch mode.
9c524fcb 2572
041d709f 2573** Scrolling changes
dfdb4cad 2574
041d709f 2575*** New scrolling commands `scroll-up-command' and `scroll-down-command'
0a19a6f8 2576(bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
7d301ae6 2577of buffer at first key-press (instead they move to top/bottom of buffer)
550f41cd 2578when `scroll-error-top-bottom' is non-nil.
dfdb4cad
CY
2579
2580*** New option `scroll-error-top-bottom' (see above).
2581
041d709f 2582*** New scrolling commands `scroll-up-line' and `scroll-down-line'
5a97d2da 2583scroll a line instead of full screen.
dfdb4cad 2584
041d709f 2585*** New property `scroll-command' should be set on a command's symbol to
b2957ea8 2586define it as a scroll command affected by `scroll-preserve-screen-position'.
dfdb4cad 2587
041d709f 2588*** If you customize `scroll-conservatively' to a value greater than 100,
d0f69533
EZ
2589Emacs will never recenter point in the window when it scrolls due to
2590cursor motion commands or commands that move point (e.f., `M-g M-g').
2591Previously, you needed to use `most-positive-fixnum' as the value of
2592`scroll-conservatively' to achieve the same effect.
dfdb4cad 2593
7d301ae6 2594*** "Aggressive" scrolling now honors the scroll margins.
d0f69533
EZ
2595If you customize `scroll-up-aggressively' or
2596`scroll-down-aggressively' and move point off the window, Emacs now
2597scrolls the window so as to avoid positioning point inside the scroll
2598margin.
2599
7d301ae6
CY
2600** Basic SELinux support has been added.
2601This requires Emacs to be linked with libselinux at build time.
f1a5d776 2602
dfdb4cad
CY
2603*** Emacs preserves the SELinux file context when backing up.
2604Also, the function `copy-file' has an extra optional argument for
2605preserving SELinux context, and the return value of `backup-buffer'
2606now includes the SELinux context.
f0bf7c8e 2607
dfdb4cad 2608*** New functions `file-selinux-context' and `set-file-selinux-context'
7d301ae6 2609get and set the SELinux context of a file.
44198b6e 2610
7d301ae6 2611** Trash changes
dfdb4cad 2612
7d301ae6
CY
2613*** `delete-by-moving-to-trash' now only affects commands that specify
2614trashing. This avoids inadvertently trashing temporary files.
dfdb4cad 2615
7d301ae6
CY
2616*** Calling `delete-file' or `delete-directory' with a prefix argument
2617now forces true deletion, regardless of `delete-by-moving-to-trash'.
278f6845 2618
041d709f 2619** File- and directory-local variable changes
dfdb4cad 2620
041d709f
CY
2621*** You can stop directory local vars from applying to subdirectories.
2622Add an element (subdirs . nil) to the alist portion of any variables
2623settings to indicate that the section should not apply to
2624subdirectories.
dfdb4cad 2625
041d709f
CY
2626*** Directory local variables can apply to some file-less buffers.
2627Affected modes include dired, vc-dir, and log-edit. For example,
2628adding "(diff-mode . ((mode . whitespace)))" to .dir-locals.el will
2629turn on `whitespace-mode' for *vc-diff* buffers. Modes should call
2630`hack-dir-local-variables-non-file-buffer' to support this.
dfdb4cad 2631
041d709f
CY
2632*** Using "mode: MINOR-MODE" to enable a minor mode is deprecated.
2633Instead, use "eval: (minor-mode 1)".
c136e5cd 2634
7b447e9b
GM
2635*** The variable `inhibit-first-line-modes-regexps' has been renamed
2636to `inhibit-local-variables-regexps'. As the name suggests, it now
dfdb4cad
CY
2637applies to ALL file local variables, not just -*- lines. The
2638associated `inhibit-first-line-modes-suffixes' has been renamed in the
2639corresponding way.
5d907d6c 2640
0a2132ba
CY
2641** Window changes
2642
91b65361
CY
2643*** The `quit-window' command now restores the last buffer displayed
2644in the quitted window.
2645
0a2132ba
CY
2646*** Resizing an Emacs frame now preserves proportional window sizes,
2647modulo restrictions like window minimum sizes and fixed-size windows.
2648
2649*** The behavior of `display-buffer' is now customizable in detail.
dfdb4cad 2650
0a2132ba
CY
2651**** New option `display-buffer-base-action' specifies a list of
2652user-determined display "actions" (functions and optional arguments
2653for choosing the displaying window).
2654
2655This takes precedence over the default display action, which is
2656specified by `display-buffer-fallback-action'.
2657
2658**** New option `display-buffer-alist' maps buffer name regexps to
2659display actions, taking precedence over `display-buffer-base-action'.
2660
a0c2d0ae
MR
2661*** New option `window-combination-limit'.
2662The new option `window-combination-limit' allows to return the space
2663obtained for resizing or creating a window more reliably to the window
2664from which such space was obtained.
0a2132ba 2665
a0c2d0ae
MR
2666*** New option `window-combination-resize'.
2667The new option `window-combination-resize' allows to split a window that
2668otherwise cannot be split because it's too small by stealing space from
2669other windows in the same combination. Subsequent resizing or deletion
2670of the window will resize all windows in the same combination as well.
0a2132ba 2671
91b65361
CY
2672*** New option `frame-auto-hide-function' lets you choose between
2673iconifying or deleting a frame when burying a buffer in a dedicated
2674frame, or quitting a window showing a buffer in a frame of its own.
2675
0a2132ba 2676*** New commands `maximize-window' and `minimize-window'.
53964682 2677These maximize and minimize the size of a window within its frame.
0a2132ba 2678
0a2132ba
CY
2679*** New commands `switch-to-prev-buffer' and `switch-to-next-buffer'.
2680These functions allow to navigate through the live buffers that have
2681been shown in a specific window.
2682
7d301ae6 2683** Minibuffer changes
dfdb4cad 2684
7d301ae6 2685*** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'.
104dc9c6
GM
2686This is handy for minibuffer-only frames, and is also used for the feature
2687where mouse-1 pops up *Messages*"', which can now easily be changed.
041d709f 2688
7d301ae6 2689*** Minibuffers set `truncate-lines' to nil.
f66eca26 2690If you want to change the value to something else, you could use
7d301ae6
CY
2691for example `minibuffer-setup-hook'.
2692
7d301ae6
CY
2693** `auto-mode-case-fold' is now enabled by default.
2694
7d301ae6 2695** `backup-by-copying-when-mismatch' now defaults to t.
f66eca26 2696
dfdb4cad
CY
2697** New basic faces `error', `warning', `success'.
2698These are used to highlight text indicating failure, caution or
2699successful operation.
2700
2701** New option `list-colors-sort' defines the color sort order
2702for `list-colors-display'.
2703
2704** The variable `focus-follows-mouse' now always defaults to nil.
2705
0bfd685e 2706\f
eb199145 2707* Editing Changes in Emacs 24.1
b350bdf2 2708
892777ba 2709** Search changes
dfdb4cad
CY
2710
2711*** C-y in Isearch is now bound to `isearch-yank-kill', instead of
2712`isearch-yank-line'.
2713
2714*** M-y in Isearch is now bound to `isearch-yank-pop', instead of
2715`isearch-yank-kill'.
2716
2717*** M-s C-e in Isearch is now bound to `isearch-yank-line'.
2718
b2b0776e 2719** New commands `count-words-region' and `count-words'.
dfdb4cad 2720
10607bea
CY
2721*** M-= is bound to `count-words-region', not `count-lines-region'.
2722The `count-words-region' command, when called interactively, reports
2723the number of lines, words, and characters in the region. It is a
2724superset of the old `count-lines-region', which is now an obsolete
2725alias for it.
ea4f7750 2726
ec9da840 2727** The command `just-one-space' (M-SPC), if given a negative argument,
1c708c1a
CY
2728also deletes newlines around point.
2729
b9229673 2730** Deletion changes
dfdb4cad 2731
b9229673 2732*** New option `delete-active-region'.
ddb54206 2733If non-nil, [delete] and DEL delete the region if it is active and no
dfdb4cad 2734prefix argument is given. If set to `kill', those commands kill
ddb54206 2735instead.
dfdb4cad 2736
59ee0542 2737*** New command `delete-forward-char', bound to [delete].
42d9cffa
CY
2738This is meant for interactive use, and obeys `delete-active-region'.
2739The command `delete-char' does not obey `delete-active-region'.
dfdb4cad 2740
b9229673
CY
2741*** `delete-backward-char' is now a Lisp function.
2742Apart from obeying `delete-active-region', its behavior is unchanged.
7d301ae6
CY
2743However, the byte compiler now warns if it is called from Lisp; Lisp
2744callers should use delete-char with a negative argument instead.
dfdb4cad 2745
b9229673
CY
2746*** The option `mouse-region-delete-keys' has been deleted.
2747
f9d71b42
CY
2748** Selection changes.
2749
7d301ae6
CY
2750The default handling of clipboard and primary selections has been
2751changed to conform with modern X applications. In short, most
2752commands for killing and yanking text now use the clipboard, while
2753mouse commands use the primary selection.
b1ab31ae
CY
2754
2755In the following, we provide a list of these changes, followed by a
2756list of steps to get the old behavior back if you prefer that.
2757
b1ab31ae
CY
2758*** `select-active-regions' now defaults to t.
2759Merely selecting text (e.g. with drag-mouse-1) no longer puts it in
963578d3 2760the kill ring. The selected text is put in the primary selection, if
b1ab31ae
CY
2761the system possesses a separate primary selection facility (e.g. X).
2762
2763**** `select-active-regions' also accepts a new value, `only'.
2764This means to only set the primary selection for temporarily active
2765regions (usually made by mouse-dragging or shift-selection);
2766"ordinary" active regions, such as those made with C-SPC followed by
2767point motion, do not alter the primary selection.
2768
963578d3
CY
2769**** `mouse-drag-copy-region' now defaults to nil.
2770
b1ab31ae
CY
2771*** mouse-2 is now bound to `mouse-yank-primary'.
2772This pastes from the primary selection, ignoring the kill-ring.
2773Previously, mouse-2 was bound to `mouse-yank-at-click'.
dfdb4cad 2774
b1ab31ae 2775*** `x-select-enable-clipboard' now defaults to t on all platforms.
dfdb4cad 2776
b1ab31ae
CY
2777*** `x-select-enable-primary' now defaults to nil.
2778Thus, commands that kill text or copy it to the kill-ring (such as
2779M-w, C-w, and C-k) also use the clipboard---not the primary selection.
2780
2781**** The "Copy", "Cut", and "Paste" items in the "Edit" menu are now
dfdb4cad 2782exactly equivalent to M-w, C-w, and C-y respectively.
b1ab31ae
CY
2783
2784**** Note that on MS-Windows, `x-select-enable-clipboard' was already
2785non-nil by default, as Windows does not support the primary selection
2786between applications.
2787
2788*** To return to the previous behavior, do the following:
dfdb4cad 2789
104c2fe9 2790**** Change `select-active-regions' to nil.
b1ab31ae
CY
2791**** Change `mouse-drag-copy-region' to t.
2792**** Change `x-select-enable-primary' to t (on X only).
2793**** Change `x-select-enable-clipboard' to nil.
2794**** Bind `mouse-yank-at-click' to mouse-2.
f9d71b42 2795
084e6df3 2796*** Support for X cut buffers has been removed.
dfdb4cad 2797
3fd50d5c
CY
2798*** X clipboard managers are now supported.
2799To inhibit this, change `x-select-enable-clipboard-manager' to nil.
4b80f674 2800
dfdb4cad
CY
2801** New command `C-x r N' (`rectangle-number-lines') numbers the lines
2802in the current rectangle. With a prefix argument, this prompts for a
2803number to count from and for a format string.
99f053cf 2804
7d301ae6 2805** `redisplay-dont-pause' now defaults to t.
6bf7006f
EZ
2806This makes Emacs feel more responsive to editing commands that arrive
2807at high rate, e.g. if you lean on some key, because stopping redisplay
2808in the middle (when this variable is nil) forces more expensive
2809updates later on, and Emacs appears to be unable to keep up.
2810
e70b5064
CY
2811** The behavior of <TAB> for active regions in Text mode has changed.
2812In Text and related modes, typing <TAB> (`indent-for-tab-command')
2813when the region is active causes Emacs to indent all the lines in the
2814region, aligning them with the line previous to the first line in the
2815region (or with the left margin if there is no previous line).
2816
dfdb4cad
CY
2817** When `occur' is called with a prefix argument, matching strings are
2818collected into the `*Occur*' buffer without line numbers. If there
2819are parenthesized subexpressions in the specified regexp, `occur'
2820reads replacement text that may contain \\& and \\N whose convention
2821follows `replace-match'.
2822
9bae34bf 2823\f
eb199145 2824* Changes in Specialized Modes and Packages in Emacs 24.1
efeb796b 2825
041d709f 2826** Archive Mode has basic support for browsing and updating 7z archives.
d76674bb 2827
b7c3692a 2828** BibTeX mode
dfdb4cad 2829
2de69e00 2830*** BibTeX mode now supports biblatex.
7d301ae6
CY
2831Use the variable `bibtex-dialect' to select different BibTeX dialects.
2832`bibtex-entry-field-alist' is now an obsolete alias for
2833`bibtex-BibTeX-entry-alist'.
2834
dfdb4cad
CY
2835*** New command `bibtex-search-entries', bound to C-c C-a.
2836
b7c3692a 2837*** New `bibtex-entry-format' option `sort-fields', disabled by default.
dfdb4cad 2838
022fe7ce
RW
2839*** New variable `bibtex-search-entry-globally'.
2840
7d301ae6 2841** Browse-url
dfdb4cad 2842
7d301ae6 2843*** New option `browse-url-mailto-function' specifies how to handle "mailto:"s.
dfdb4cad 2844
7d301ae6
CY
2845*** The default browser used by the package is now the "xdg-open" program,
2846on platforms that support it. This calls your desktop's preferred browser.
2847
86e100a6
GM
2848** Calc
2849
2850*** Support for musical notes.
2851
2852*** Support for logarithmic units.
2853
2854*** No longer uses the tex prefix for TeX specific unit names when
2855using TeX or LaTeX mode.
2856
2857*** New option to highlight selections using faces.
2858
2859*** `calc-histogram' has the option of using a vector to determine the bins.
2860
2861*** New "O" option prefix.
2862
2863*** Use the "O" prefix to "d r" (`calc-radix') to turn on twos-complement mode.
2864
cf16af42
GM
2865** Calendar, Diary, and Appt
2866
7d301ae6 2867*** Diary entries can contain non-printing "comments".
548d0a63
GM
2868See the variable `diary-comment-start'.
2869
5006e634
GM
2870*** Appointments can specify their individual warning times.
2871See the variable `appt-warning-time-regexp'.
2872
0a2bb1a9
GM
2873*** The function specified by `appt-disp-window-function' may be passed
2874lists of arguments if multiple appointments are due at similar times.
2875If you are using a custom function for this, you should update it.
2876
7454f200
GM
2877*** New function `diary-hebrew-birthday'.
2878
e565dd37
GM
2879*** Elements of `calendar-day-abbrev-array' and `calendar-month-abbrev-array'
2880may no longer be nil, but must all be strings.
2881
7d301ae6
CY
2882*** The obsolete (since Emacs 22.1) method of enabling the appt
2883package by adding `appt-make-list' to `diary-hook' has been removed.
2884Use `appt-activate' instead.
cf16af42 2885
cf16af42
GM
2886*** Some appt variables (obsolete since Emacs 22.1) have been removed:
2887appt-issue-message (use the function appt-activate)
2888appt-visible/appt-msg-window (use the variable appt-display-format)
2889
cf16af42
GM
2890*** Some diary function aliases (obsolete since Emacs 22.1) have been removed:
2891view-diary-entries, list-diary-entries, show-all-diary-entries
2892
551b046f 2893** CC Mode
dfdb4cad 2894
551b046f 2895*** New feature to "guess" the style in an existing buffer.
7d301ae6 2896The main entry point is M-x c-guess.
041d709f 2897
551b046f
AM
2898*** Java Mode now supports Java 5.0 (Tiger) and 6 (Mustang).
2899
dfdb4cad 2900*** `c-beginning-of-defun' and `c-end-of-defun' now respect nested scopes.
551b046f
AM
2901Thus C-M-a will, by default, go to the beginning of the immediate function,
2902not the top level.
2903
dfdb4cad 2904*** "Macros with semicolons" can be registered for correct indentation.
551b046f
AM
2905Where such a macro ends a line (no semicolon) the next statement is no longer
2906parsed as a statement continuation.
2907
dfdb4cad 2908** Comint and modes derived from it use the standard completion code.
041d709f
CY
2909
2910** Compilation mode
dfdb4cad 2911
7d301ae6 2912*** Compilation mode can be used without Font Lock mode.
041d709f
CY
2913`compilation-parse-errors-function' is now obsolete.
2914
dfdb4cad 2915*** New variable `compilation-filter-start', which is bound while
7d301ae6
CY
2916`compilation-filter-hook' runs. It records the start position of the
2917text inserted by `compilation-filter'.
041d709f 2918
47a6a35f
GM
2919*** `compilation-error-screen-columns' and `compilation-first-column'
2920are obeyed in the editing buffer. So programming language modes can
7d301ae6
CY
2921set them, whereas previously only the value in the *Compilation*
2922buffer was used.
1dce7193 2923
52834b6b
CY
2924** Customize
2925
2926*** Customize buffers now contain a search field.
2927The search is performed using `customize-apropos'.
7d301ae6 2928To turn off the search field, set `custom-search-field' to nil.
52834b6b 2929
8d5dd370 2930*** Options in customize group buffers start out hidden if not customized.
52834b6b
CY
2931Use the arrow to the left of the option name to toggle visibility.
2932
2933*** custom-buffer-sort-alphabetically now defaults to t.
2934
2935*** The color widget now has a "Choose" button, which allows you to
7d301ae6 2936choose a color via `list-colors-display'.
52834b6b 2937
041d709f
CY
2938** D-Bus
2939
5da3be7f
GM
2940*** It is now possible to access buses other than the default system
2941or session bus.
041d709f 2942
7d301ae6 2943*** The `dbus-register-method' and `dbus-register-property' functions
5da3be7f 2944optionally do not register names.
041d709f 2945
7d301ae6 2946*** The new function `dbus-register-service' registers a known service
dfdb4cad 2947name on a D-Bus without also registering a property or a method.
041d709f 2948
f5d6548a 2949** Dired-x
425a25f1 2950
7d301ae6
CY
2951*** C-x C-j (`dired-jump') and C-x 4 C-j (`dired-jump-other-window'),
2952if called with a prefix argument, read a file name from the minibuffer
2953instead of using the current buffer.
f5d6548a 2954
7d301ae6 2955*** The "dired local variables" feature of Dired-x is obsolete.
817b48a7 2956The standard directory local variables feature replaces it.
8117868f 2957
041d709f 2958** ERC changes
7492acc9 2959
c4077254
GM
2960*** New options `erc-autojoin-timing' and `erc-autojoin-delay',
2961controlling attempts to autojoin a channel.
041d709f
CY
2962
2963*** New variable `erc-coding-system-precedence': If we use `undecided'
2964as the server coding system, this variable will then be consulted.
2965The default is to decode strings that can be decoded as utf-8 as
2966utf-8, and do the normal `undecided' decoding for the rest.
7492acc9 2967
041d709f 2968** Eshell changes
7492acc9 2969
05f77e38
GM
2970*** The default value of `eshell-directory-name' has changed
2971to be an "eshell" directory in `user-emacs-directory'.
2972The old "~/.eshell/" directory is still used if it exists, though.
041d709f
CY
2973
2974** gdb-mi
dfdb4cad
CY
2975
2976*** The M-x gdb command now uses the GDB Machine Interface protocol.
05f77e38
GM
2977It now supports multithread non-stop debugging and simultaneous
2978debugging of several threads.
7492acc9 2979
18af70d0
CY
2980** Image mode
2981
05f77e38
GM
2982*** RET (`image-toggle-animation') toggles animation, if applicable.
2983Animation plays once, unless the option `image-animate-loop' is non-nil.
18af70d0 2984
041d709f 2985** Info
723ee192 2986
7d301ae6 2987*** New command M-x info-display-manual displays a named Info manual.
2ebc3b94
GM
2988If that manual is already visited in some Info buffer, it displays
2989that buffer. (This is handy if you have many manuals in many *info*
2990buffers, and don't remember the name of the buffer visiting the manual
2991you want to consult.) Otherwise, it loads and displays the manual.
691cf4a0 2992
24ea72d3
EZ
2993*** `e' is now bound to `end-of-buffer' rather than to `Info-edit'.
2994This is for compatibility with the stand-alone Info reader program,
2995and also because `Info-edit' is a rarely used command that is disabled
2996by default.
2997
7d301ae6 2998** Mail mode changes (not Message mode)
dfdb4cad 2999
7d301ae6 3000*** New command M-x mail-add-attachment for adding MIME attachments
7d301ae6 3001
dfdb4cad
CY
3002*** The command M-x mail-attach-file was renamed to M-x mail-insert-file.
3003(Its name is misleading, since it has nothing to do with MIME
3004attachments.) The old name is now an obsolete alias to the new name.
3005
f2c3a9eb 3006** MH-E has been updated to MH-E version 8.3.1.
041d709f 3007See MH-E-NEWS for details.
37221432 3008
041d709f 3009** Modula-2 mode provides auto-indentation.
37221432 3010
041d709f 3011** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
3c3d4f5b 3012
5d1ac394 3013** nXML mode no longer binds C-RET to `nxml-complete'.
dfdb4cad
CY
3014Completion is now performed via `completion-at-point', bound to C-M-i
3015or M-TAB. If `nxml-bind-meta-tab-to-complete-flag' is non-nil (the
3016default), this performs tag completion.
5d1ac394 3017
f2c3a9eb
CY
3018** Org mode has been updated to version 7.8.09.
3019See ORG-NEWS for details.
3020
041d709f 3021** Prolog mode has been completely revamped, with lots of additional
7d301ae6
CY
3022functionality such as more intelligent indentation, electricity,
3023support for more variants, including Mercury, and a lot more.
041d709f
CY
3024
3025** Rmail
3026
3027*** The command `rmail-epa-decrypt' decrypts OpenPGP data
3028in the Rmail incoming message.
3029
50419064
GM
3030*** The variable `rmail-message-filter' no longer has any effect.
3031This change was made in Emacs 23.1 but was not advertised at the time.
3032Try using `rmail-show-message-hook' instead.
3033
717a1362 3034** Shell mode
dfdb4cad
CY
3035
3036*** M-x shell prompts for the shell path name if the default directory
3037is a remote file name and neither the environment variable $ESHELL nor
3038the variable `explicit-shell-file-name' is set.
3039
3040*** TAB is now bound to the standard `completion-at-point' command,
3041which now implements the pcomplete rules for shell command completion.
717a1362 3042
7d301ae6
CY
3043** SMTPmail
3044
dfdb4cad 3045*** SMTPmail now uses encrypted connections (via STARTTLS) by default
7d301ae6
CY
3046if the mail server supports them. This uses either built-in GnuTLS
3047support, or the starttls.el library. Customize `smtpmail-stream-type'
3048to change this.
3049
7d301ae6
CY
3050*** The variable `smtpmail-auth-credentials' has been removed.
3051By default, the information is now stored in the file ~/.authinfo.
dfdb4cad
CY
3052This was the default value of smtpmail-auth-credentials. If you had
3053customized smtpmail-auth-credentials to a list of user names and
3054passwords, those settings are not used. During your first connection
3055to the smtp server, Emacs will prompt for the user name and password,
3056and offer to save them to ~/.authinfo. Or you can manually copy the
3057credentials to ~/.authinfo. For example, if you had
7d301ae6
CY
3058
3059 (setq smtpmail-auth-credentials
3060 '(("mail.example.org" 25 "jim" "s!cret")))
3061
3062then the equivalent line in ~/.authinfo would be
3063
3064 machine mail.example.org port 25 login jim password s!cret
3065
3066See the auth-source manual for more information, e.g. on encrypting
3067the credentials file.
3068
7d301ae6 3069*** The variable `smtpmail-starttls-credentials' has been removed.
dfdb4cad 3070If you had that set, you need to put
7d301ae6
CY
3071
3072 machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
3073
3074in your ~/.authinfo file instead.
3075
8ce192e3
LI
3076*** SMTPmail defaults to using the address in the From: header as the
3077SMTP MAIL FROM envelope. To override this, set `mail-envelope-from'
3078to the address you wish to use instead.
3079
34e8a2da 3080** SQL mode
041d709f 3081
34e8a2da
GM
3082*** New options `sql-port', `sql-connection-alist', `sql-send-terminator',
3083and `sql-oracle-scan-on'.
041d709f 3084
dfdb4cad 3085*** New options controlling prompting for login parameters.
34e8a2da
GM
3086Each supported product has a custom variable `sql-*-login-params',
3087which is a list of the parameters to be prompted for before a
3088connection is established.
041d709f
CY
3089
3090*** The command `sql-product-interactive' now takes a prefix argument,
34e8a2da 3091which causes it to prompt for an SQL product.
041d709f 3092
34e8a2da 3093*** Product-specific SQL interactive commands now take prefix arguments.
041d709f
CY
3094These commands (`sql-sqlite', `sql-postgres', `sql-mysql', etc.),
3095given a prefix argument, prompt for a name for the SQL interactive
3096buffer. This reduces the need for calling `sql-rename-buffer'.
3097
3098*** SQL interactive modes suppress command continuation prompts, and
3099replace tabs with spaces. The first change impacts multiple line SQL
3100statements entered with C-j between each line, statements yanked into
3101the buffer and statements sent with `sql-send-*' functions. The
34e8a2da
GM
3102second prevents the MySQL and Postgres interpreters from listing
3103object name completions when sent text via `sql-send-*' functions.
041d709f
CY
3104
3105*** New command `sql-connect' starts a predefined SQLi session,
3106using the login parameters from `sql-connection-alist'.
3107
3108*** New "Save Connection" menu item in SQLi buffers.
3109This gathers the login params specified for the SQLi session, if it
3110was not started by a connection, and saves them as a new connection.
3111
34e8a2da
GM
3112*** New commands for listing database objects and details:
3113sql-list-all and sql-list-table.
041d709f
CY
3114
3115*** An API for manipulating SQL product definitions has been added.
3116
3117** TeX modes
3118
3119*** latex-electric-env-pair-mode keeps \begin..\end matched on the fly.
412b9ee5 3120
459bba37 3121** Tramp
dfdb4cad 3122
7d301ae6 3123*** New inline access method "ksu" (kerberized su).
dfdb4cad 3124
459bba37 3125*** The following access methods are discontinued: "ssh1_old",
ea843702 3126"ssh2_old", "scp1_old", "scp2_old", "imap", "imaps" and "fish".
dfdb4cad 3127
b011fbfe
GM
3128*** The user option `remote-file-name-inhibit-cache' controls whether
3129remote file attributes are cached for better performance.
dfdb4cad 3130
58f74fe4
MA
3131*** The option `ange-ftp-binary-file-name-regexp' has changed its
3132default value to "".
dfdb4cad 3133
7d301ae6
CY
3134*** Handlers for `file-selinux-context' and `set-file-selinux-context'
3135for remote machines which support SELinux.
58f74fe4 3136
dfdb4cad 3137** New function `url-queue-retrieve', which behaves like url-retrieve,
a48ec60c
GM
3138but with limits (`url-queue-parallel-processes', `url-queue-timeout') on
3139the degree of parallelism.
177549d0 3140
0c32ce32
CY
3141** VC and related modes
3142
3143*** Support for pulling on distributed version control systems.
7d301ae6
CY
3144The command C-x v + (`vc-pull') runs a "pull" operation, if it is
3145supported (currently with Bzr, Git, and Mercurial), to update the
3146current branch and working tree. A prefix argument means to prompt
3147the user for specifics, e.g. a pull location.
0c32ce32 3148
dab3703d 3149*** `vc-update' is now an alias for `vc-pull'.
0c32ce32
CY
3150
3151*** Support for merging on distributed version control systems.
7d301ae6
CY
3152The command C-x v m (`vc-merge') now runs a "merge" operation, if it
3153is supported (currently with Bzr, Git, and Mercurial), to merge
3154changes from another branch into the current one. It prompts for
3155specifics, e.g. a merge source.
0c32ce32 3156
2afef60a 3157*** New option `vc-revert-show-diff' controls whether `vc-revert'
bbe43420 3158shows a diff while querying the user. It defaults to t.
2afef60a 3159
d4eb88c7
CY
3160*** Log entries in some Log View buffers can be toggled to display a
3161longer description by typing RET (log-view-toggle-entry-display).
dab3703d
GM
3162This is currently supported for Bzr, Git, and Mercurial (to support
3163another backend, define a `log-view-expanded-log-entry-function').
7d301ae6 3164In the Log View buffers made by C-x v L (`vc-print-root-log'), you can
d4eb88c7
CY
3165use this to display the full log entry for the revision at point.
3166
1c6c854e
CS
3167*** New command `vc-ediff' allows visual comparison of two revisions
3168of a file similar to `vc-diff', but using ediff backend.
3169
86c60681
CY
3170*** The option `vc-initial-comment' was removed in Emacs 23.2, but
3171this was not advertised at the time.
3172
86c60681
CY
3173*** `vc-toggle-read-only' is an obsolete alias for `toggle-read-only'.
3174Since Emacs 23, it has done the same thing as `toggle-read-only', but
80c6d77f
GM
3175this was not advertised at the time.
3176
041d709f
CY
3177** Obsolete modes
3178
23d70505
GM
3179*** abbrevlist.el
3180
f8ca9162 3181*** erc-hecomplete.el (use erc-pcomplete.el instead)
23d70505
GM
3182
3183*** partial-completion-mode (complete.el) is obsolete.
041d709f
CY
3184You can get a comparable behavior with:
3185(setq completion-styles '(partial-completion initials))
3186(setq completion-pcm-complete-word-inserts-delimiters t)
3187
23d70505
GM
3188*** pc-mode.el is obsolete (CUA mode is much more comprehensive).
3189
2c719188 3190*** pgg is obsolete (use EasyPG instead).
041d709f
CY
3191
3192*** sregex.el is obsolete, since rx.el is a strict superset.
3193
23d70505
GM
3194*** s-region.el and pc-select.el are obsolete.
3195They are superseded by shift-select-mode, enabled by default since 23.1.
3196
2c719188 3197*** vc-mcvs.el is obsolete (for lack of a maintainer).
ca5eed61 3198
0fe719e6
GM
3199** Miscellaneous
3200
05f77e38 3201*** The Landmark game is now invoked with `landmark', not `lm'.
c6ad2a4e 3202Its functions and variables have been similarly renamed.
05f77e38 3203
dfdb4cad 3204*** In `ido-file-completion-map', C-v is no longer bound to `ido-toggle-vc'.
05f77e38
GM
3205(This interfered with cua-mode.)
3206
9f678528
GM
3207*** f90.el has some support for Fortran 2008 syntax.
3208
0fe719e6
GM
3209*** `copyright-fix-years' can optionally convert consecutive years to ranges.
3210
5b3e6db8
GM
3211*** New command `nato-region' converts text to NATO phonetic alphabet.
3212
eb199145
GM
3213\f
3214* New Modes and Packages in Emacs 24.1
d445b3f8 3215
60e56523 3216** Occur Edit mode applies edits made in *Occur* buffers to the
8c0f49f0 3217original buffers. It is bound to "e" in Occur mode.
60e56523 3218
a075a2c5
GM
3219** New global minor mode electric-pair-mode.
3220When enabled, typing an open parenthesis automatically inserts the
3221matching closing one.
3222
3223** New global minor mode electric-indent-mode.
3224When enabled, typing certain characters triggers reindentation.
cd3308f3
GM
3225Major modes wishing to use this can set electric-indent-chars or
3226electric-indent-functions.
a075a2c5
GM
3227
3228** New global minor mode electric-layout-mode.
3229When enabled, typing certain characters automatically inserts newlines.
cd3308f3 3230Major modes wishing to use this can set electric-layout-rules.
3b843809 3231
a83ec3c9
CY
3232** tabulated-list.el provides a generic major mode for tabulated data,
3233from which other modes can be derived.
3234
d02c9bcd
SM
3235** pcase.el provides the ML-style pattern matching macro `pcase'.
3236
7725ebb7
MA
3237** secrets.el is an implementation of the Secret Service API, an
3238interface to password managers like GNOME Keyring or KDE Wallet. The
065f2743
MA
3239Secret Service API requires D-Bus for communication. The command
3240`secrets-show-secrets' offers a buffer with a visualization of the
3241secrets.
7725ebb7 3242
f9e78150
MA
3243** notifications.el provides an implementation of the Desktop
3244Notifications API. It requires D-Bus for communication.
3245
12fe5bcc
MA
3246** soap-client.el supports access to SOAP web services from Emacs.
3247soap-inspect.el is an interactive inspector for SOAP WSDL structures.
3248
ff1796f3 3249** New generic mode, xmodmap-generic-mode, for xmodmap files.
ad7d6ecb 3250
53bbe3ad 3251** New emacs-lock.el package.
7d301ae6
CY
3252The previous version has been moved to obsolete/old-emacs-lock.el.
3253Now, there is a proper minor mode `emacs-lock-mode'. Protection
3254against exiting Emacs and killing the buffer can be set separately.
3255The mechanism for automatically turning off protection for buffers
3256with dead inferior processes has been generalized.
53bbe3ad 3257
eb199145
GM
3258\f
3259* Incompatible Lisp Changes in Emacs 24.1
6dfcbe31 3260
7d301ae6
CY
3261** Passing a nil argument to a minor mode function call now ENABLES
3262the minor mode unconditionally. This is so that you can write e.g.
3263
dfdb4cad 3264 (add-hook 'text-mode-hook 'foo-mode)
7d301ae6 3265
dfdb4cad
CY
3266to enable foo-mode in Text mode buffers, removing the need for
3267`turn-on-foo-mode' style functions. This affects all mode commands
3268defined by `define-minor-mode'. If called interactively, the mode
3269command still toggles the minor mode.
7d301ae6 3270
d268b4fe
CY
3271** The return value of `backup-buffer' has changed.
3272It is now a list of three elements, where the second element is a list
3273describing the original file's SELinux context. If Emacs or the
f003f294 3274system lacks SELinux support, the context list is (nil nil nil nil).
7d301ae6 3275See "Basic SELinux support" above, under "Changes in Emacs 24.1".
d268b4fe 3276
dfdb4cad
CY
3277** `char-direction-table' and the `char-direction' function were deleted.
3278They were buggy and inferior to the new support of bidirectional
3279editing introduced in Emacs 24. If you need the bidirectional
3280properties of a character, use `get-char-code-property' with the last
3281argument `bidi-class'.
fa6996bc 3282
470d996d
TV
3283** `copy-directory' now copies the source directory as a subdirectory
3284of the target directory, if the latter is an existing directory. The
3285new optional arg COPY-CONTENTS, if non-nil, makes the function copy
3286the contents directly into a pre-existing target directory.
3287
9173a8fb
CY
3288** For mouse click input events in the text area, the Y pixel
3289coordinate in the POSITION list now counts from the top of the text
3290area, excluding any header line. Previously, it counted from the top
3291of the header line.
3292
7d301ae6
CY
3293** Support for "old-style" backquotes, obsolete for 10+ years, has
3294been further reduced. Now a backquote not followed by a space is
3295always treated as a "new-style" backquote. Please remove all
3296"old-style" backquotes from your code. If your code uses backquotes
3297as documented in the Elisp manual, and compiles without warning, then
3298you have nothing to do in this regard. Code not following the
3299appropriate conventions may fail to compile.
50ab02c5
CY
3300
3301The most common cause of trouble seems to be an old-style backquote
3302followed by a newline. Another cause of trouble is vector notation
3303for key sequence notation: instead of [(control ,)] and [(control ')],
3304you should write [(control ?,)] and [(control ?')], which will work in
7d301ae6 3305older Emacsen too.
288cf4e9 3306
520f2425
GM
3307** The macro `eval-at-startup' was removed in Emacs 23.2, but this
3308was not advertised at the time. The function `custom-initialize-delay'
3309replaced all known uses.
3310
7d301ae6
CY
3311** `view-buffer' now treats special mode-class in the same way that
3312`view-file' has since Emacs 22 (i.e. it won't enable View mode if the
3313major mode is special).
fd5c9dfa 3314
7d301ae6 3315** Menu and tool bar changes
6431f2e6 3316
7d301ae6 3317*** During startup, Emacs no longer adds entries for `menu-bar-lines'
0a19a6f8
JB
3318and `tool-bar-lines' to `default-frame-alist' and `initial-frame-alist'.
3319With these alist entries omitted, `make-frame' checks the value of the
3320variable `menu-bar-mode'/`tool-bar-mode' to determine whether to create
3321a menu-bar or tool-bar, respectively. If the alist entries are added,
3322they override the value of `menu-bar-mode'/`tool-bar-mode'.
6431f2e6 3323
7d301ae6
CY
3324*** The menu bar bindings's caches are not used any more.
3325Use (where-is-internal <def> nil t) instead.
3326
fe0aa820 3327** Regions created by mouse dragging are now normal active regions,
dfdb4cad 3328similar to those created by shift-selection (see Selection changes
7d301ae6
CY
3329above). In previous Emacs versions, these regions were delineated by
3330`mouse-drag-overlay'; that variable has been removed.
d6d8ee7a 3331
7d301ae6
CY
3332** The fourth argument of `filter-buffer-substring' has been removed.
3333If you want to remove text properties from the final result, simply
3334pass the result through substring-no-properties.
34c99998 3335
4583e796
GM
3336** cl.el no longer provides `cl-19'.
3337
7d301ae6
CY
3338** The following obsolete functions and aliases have been removed
3339(the appropriate new function is given in parentheses; "not needed"
3340means you can just remove all calls to the function in question):
3341
3342*** `comint-kill-output' (`comint-delete-output')
3343*** `decompose-composite-char' (`char-to-string')
3344*** `outline-visible' (`outline-invisible-p')
3345*** `internal-find-face' (`facep')
3346*** `internal-get-face' (`facep and check-face')
3347*** `frame-update-faces' (not needed)
3348*** `frame-update-face-colors' (`frame-set-background-mode')
3349*** `x-frob-font-weight' and `x-frob-font-slant' (`make-face-*' functions)
2c719188 3350*** `x-make-font-bold and x-make-font-demibold (`make-face-bold')
7d301ae6
CY
3351*** `x-make-font-italic' and `x-make-font-oblique' (`make-face-italic')
3352*** `x-make-font-bold-italic' (`make-face-bold-italic')
3353*** `x-make-font-unbold' (`make-face-unbold')
3354*** `x-make-font-unitalic' (`make-face-unitalic')
3355*** `mldrag-drag-mode-line' (`mouse-drag-mode-line')
3356*** `mldrag-drag-vertical-line' (`mouse-drag-vertical-line')
3357*** `iswitchb-default-keybindings' (`iswitchb-mode')
3358*** `char-bytes' (== 1)
3359*** `isearch-return-char' (`isearch-printing-char')
3360*** `make-local-hook' (not needed)
3361*** `set-screen-height' (`set-frame-height')
3362*** `set-screen-width' (`set-frame-width')
3363
7d301ae6
CY
3364** The following obsolete variables and varaliases have been removed
3365(the appropriate new variable is given in parentheses):
3366
3367*** `checkdoc-minor-keymap' (`checkdoc-minor-mode-map')
3368*** `vc-header-alist' (`vc-BACKEND-header')
3369*** `directory-sep-char' (== ?/)
3370*** `font-lock-defaults-alist' (`font-lock-defaults')
3371*** `e' (`float-e').
3226d6ca 3372
041d709f 3373** The following obsolete files were removed:
7b0e3048
GM
3374sc.el, x-menu.el, rnews.el, rnewspost.el
3375
7d301ae6
CY
3376** The format of the finder-inf.el file has changed, since the Finder
3377mechanism is now based on the package system. The variable
3378`finder-package-info' is replaced by `package--builtins' and
3379`finder-keywords-hash'.
33658d4e 3380
c2c79260
DE
3381** When generating autoloads, `update-directory-autoloads' no longer
3382assumes every inspected file is in your `load-path'. It instead
3383generates relative names according to the current `load-path'.
3384
eb199145 3385\f
93e0bed6 3386* Lisp Changes in Emacs 24.1
9097e8af 3387
041d709f 3388** Code can now use lexical scoping by default instead of dynamic scoping.
dfdb4cad 3389The `lexical-binding' variable enables lexical scoping for local
48da7392 3390variables. It is typically set via a file-local variable in the first
dfdb4cad
CY
3391line of the file, in which case it applies to all the code in that
3392file.
3393
041d709f
CY
3394*** `eval' takes a new optional argument `lexical' to choose the new lexical
3395binding instead of the old dynamic binding mode.
dfdb4cad 3396
041d709f
CY
3397*** Lexically scoped interpreted functions are represented with a new form
3398of function value which looks like (closure ENV ARGS &rest BODY).
3399
3400*** New macro `letrec' to define recursive local functions.
dfdb4cad
CY
3401
3402*** `defvar' and `defconst' now mark the variable as special (dynamic).
3403So do `defcustom' and other forms that call `defvar' as a subroutine.
3404
041d709f
CY
3405*** New function `special-variable-p' to check whether a variable is
3406declared as dynamically bound.
3407
88ed9e87
SM
3408*** The form ((lambda ...) ...) is deprecated.
3409
041d709f
CY
3410** An Emacs Lisp testing tool is now included.
3411Emacs Lisp developers can use this tool to write automated tests for
3412their code. See the ERT info manual for details.
3413
3414** Changes for bidirectional display and editing
f1816485 3415
041d709f 3416*** New function `current-bidi-paragraph-direction'.
7d301ae6 3417This returns the base direction of the paragraph at point.
041d709f 3418
041d709f 3419*** New function `bidi-string-mark-left-to-right'.
dfdb4cad
CY
3420Given a string containing characters from right-to-left scripts, this
3421function returns another string which can be safely inserted into a
3422buffer, such that any following text will be always displayed to the
7d301ae6
CY
3423right of that string. (This works by appending an invisible Unicode
3424"LEFT-TO-RIGHT MARK" character if the argument string might need it.)
041d709f 3425
7d301ae6 3426This is useful when the buffer has overall left-to-right paragraph
dfdb4cad
CY
3427direction and you need to insert a string whose contents are not known
3428in advance, without disrupting the layout of the line.
041d709f 3429
bee0fcef 3430** Window changes
dfdb4cad 3431
c4682d18
MR
3432*** Window tree functions are accessible in Elisp.
3433Functions are provided to return the parent, siblings or child windows
3434of any window including internal windows (windows not associated with a
3435buffer) in the window tree.
dfdb4cad 3436
24300f5f
CY
3437**** New function `window-valid-p' gives non-nil for live and internal
3438windows.
dfdb4cad 3439
24300f5f 3440**** Window manipulation can deal with internal windows.
c4682d18
MR
3441Many window handling functions like `split-window', `delete-window', or
3442`delete-other-windows' as well as the window resizing functions can now
3443act on any window including internal ones.
dfdb4cad 3444
c4682d18
MR
3445*** window-total-height/-width vs window-body-height/-width.
3446The function `window-height' has been renamed to `window-total-height'
3447and `window-width' has been renamed to `window-body-width'. The old
3448names are provided as aliases. Two new functions `window-total-width'
3449and `window-body-height' are provided.
dfdb4cad 3450
c4682d18
MR
3451*** Window parameters specific to window handling functions.
3452For each window you can specify a parameter to override the default
3453behavior of a number of functions like `split-window', `delete-window'
ed6235ea
MR
3454and `delete-other-windows'. The variable `ignore-window-parameters'
3455allows to ignore processing such parameters.
dfdb4cad 3456
c4682d18 3457*** New semantics of third argument of `split-window'.
c4682d18
MR
3458The third argument of `split-window' has been renamed to SIDE and can be
3459set to any of the values 'below, 'right, 'above, or 'left to make the
3460new window appear on the corresponding side of the window that shall be
3461split. Any other value of SIDE will cause `split-window' to split the
3462window into two side-by-side windows as before.
dfdb4cad 3463
c4682d18 3464*** Window resizing functions.
487ffd7a 3465A new standard function for resizing windows called `window-resize' has
c4682d18
MR
3466been introduced. This and all other functions for resizing windows no
3467longer delete any windows when they become too small.
dfdb4cad 3468
b3c0dbfd
MR
3469*** Deleting the selected window now selects the most recently selected
3470live window on that frame instead.
dfdb4cad 3471
c4682d18
MR
3472*** `adjust-window-trailing-edge' adjustments.
3473`adjust-window-trailing-edge' can now deal with fixed-size windows and
3474is able to resize other windows if a window adjacent to the trailing
3475edge cannot be shrunk any more. This makes its behavior more similar to
3476that of Emacs 21 without compromising, however, its inability to delete
3477windows which was introduced in Emacs 22.
dfdb4cad 3478
c4682d18
MR
3479*** Window-local buffer lists.
3480Windows now have local buffer lists. This means that removing a buffer
3481from display in a window will preferably show the buffer previously
3482shown in that window with its previous window-start and window-point
3483positions. This also means that the same buffer may be automatically
3484shown twice even if it already appears in another window.
dfdb4cad 3485
bee0fcef
CY
3486*** `switch-to-buffer' has a new optional argument FORCE-SAME-WINDOW,
3487which if non-nil requires the buffer to be displayed in the currently
3488selected window, signaling an error otherwise. If nil, another window
3489can be used, e.g. if the selected one is strongly dedicated.
dfdb4cad 3490
0a2132ba 3491*** `split-window-vertically' and `split-window-horizontally' renamed
2d197ffb
CY
3492to `split-window-below' and `split-window-right' respectively.
3493The old names are kept as aliases.
dfdb4cad 3494
0a2132ba
CY
3495*** Display actions
3496
3497**** The second arg to `display-buffer' and `pop-to-buffer' is now
3498named ACTION, and takes a display action of the same form as
3499`display-buffer-base-action' (see Changes, above). A non-nil,
3500non-list value is treated specially, as the old meaning.
3501
3502**** New variable `display-buffer-overriding-action'.
3503
3504**** The procedure of `display-buffer' etc. to choose a window is
3505determined by combining `display-buffer-overriding-action',
3506`display-buffer-alist', the ACTION arg, `display-buffer-base-action',
3507and `display-buffer-fallback-action'. The second and fourth of these
3508are user-customizable variables.
3509
3510See the docstring of `display-buffer' for details.
bee0fcef 3511
20d2304d
CY
3512*** New functions `window-state-get' and `window-state-put'.
3513These functions allow to save and restore the state of an arbitrary
3514frame or window as an Elisp object.
3515
a2a25d24 3516** Completion
041d709f 3517
7d301ae6
CY
3518*** New variable `completion-extra-properties' used to specify extra
3519properties of the current completion:
a2a25d24
SM
3520- :annotate-function, same as the old completion-annotate-function.
3521- :exit-function, function to call after completion took place.
3522
7d301ae6
CY
3523*** Functions on `completion-at-point-functions' can return any of the
3524properties valid for `completion-extra-properties'.
a2a25d24 3525
7d301ae6 3526*** `completion-annotate-function' is obsolete.
a2a25d24 3527
620c53a6
SM
3528*** New `metadata' method for completion tables. The metadata thus returned
3529can specify various details of the data returned by `all-completions':
3530- `category' is the kind of objects returned (e.g., `buffer', `file', ...),
3531 used to select a style in completion-category-overrides.
3532- `annotation-function' to add annotations in *Completions*.
3533- `display-sort-function' to specify how to sort entries in *Completions*.
3534- `cycle-sort-function' to specify how to sort entries when cycling.
3535
7d301ae6
CY
3536*** `minibuffer-local-filename-must-match-map' is not used any more.
3537Instead, the bindings in `minibuffer-local-filename-completion-map'
3538are combined with `minibuffer-local-must-match-map'.
de09aa52
CY
3539
3540*** New variable `completing-read-function' allows overriding the
3541behavior of `completing-read'.
3542
f042970d 3543** `glyphless-char-display' can now distinguish between graphical and
16a43933
CY
3544text terminal display, via a char-table entry that is a cons cell.
3545
7d301ae6 3546** `pre-command-hook'/`post-command-hook' are not reset to nil on error.
f6d62986
SM
3547Instead, the offending function is removed.
3548
b1f6fa26
CY
3549** New hook types
3550
3551*** New function `run-hook-wrapped' for running an abnormal hook by
3552passing the hook functions as arguments to a "wrapping" function.
e7bc51d0 3553Like `run-hook-with-args-until-success', it stops at the first
5385447f 3554non-nil return value.
e7bc51d0 3555
b1f6fa26
CY
3556*** New macro `with-wrapper-hook' for running an abnormal hook as a
3557set of "wrapping" filters, similar to around advice.
54521c99
GM
3558(A version of this macro was actually added in Emacs 23.2 but was not
3559advertised at the time.)
f6d62986 3560
0b19b281 3561** Debugger changes
dfdb4cad 3562
0b19b281 3563*** New macro `condition-case-unless-debug' (this was actually added in
1be3ca5a 3564Emacs 23.1 as condition-case-no-debug, but not advertised)
dfdb4cad 3565
0b19b281 3566*** The macro `with-demoted-errors' was added in Emacs 23.1, but not advertised.
dfdb4cad 3567
0b19b281 3568*** Variable `stack-trace-on-error' removed.
dfdb4cad 3569
0b19b281
CY
3570*** The debugger can now "continue" from an error, which means it will
3571jump to the error handler as if the debugger had not been invoked
3572instead of jumping all the way to the top-level.
dfdb4cad 3573
0b19b281
CY
3574*** Set `debug-on-event' to enter the debugger on events like SIGUSR1.
3575This can be useful when `inhibit-quit' is set.
d6b1d521 3576
953cebf5 3577** The new function `server-eval-at' allows evaluation of Lisp forms on
37576acd 3578named Emacs server instances.
7deebf1b 3579
1b9f60cc
GM
3580** `call-process' and `call-process-region' allow a `(:file "file")' spec
3581to redirect STDOUT to a file.
7deebf1b 3582
7d301ae6
CY
3583** The function `format-time-string' now supports the %N directive,
3584for higher-resolution time stamps.
da97a9e6 3585
0b19b281 3586** New input reading functions
dfdb4cad 3587
0b19b281
CY
3588*** New function `read-char-choice' reads a restricted set of
3589characters, discarding any inputs not inside the set.
dfdb4cad 3590
0b19b281
CY
3591*** The command `read-color' now requires a match for a color name
3592or RGB triplet, instead of signaling an error if the user provides
3593invalid input.
dfdb4cad 3594
0b19b281 3595**** `facemenu-read-color' is now an alias for `read-color'.
3ef01959 3596
2e288d54
JB
3597** `image-library-alist' is renamed to `dynamic-library-alist'.
3598The variable is now used to load all kind of supported dynamic libraries,
3599not just image libraries. The previous name is still available as an
3600obsolete alias.
3601
0b19b281 3602** Syntax parsing changes
dfdb4cad 3603
0b19b281 3604*** New variable `syntax-propertize-function'.
04e2ce72 3605This replaces `font-lock-syntactic-keywords' which is now obsolete.
cf38dd42
SM
3606This allows syntax-table properties to be set independently from font-lock:
3607just call syntax-propertize to make sure the text is propertized.
3608Together with this new variable come a new hook
3609syntax-propertize-extend-region-functions, as well as two helper functions:
3610syntax-propertize-via-font-lock to reuse old font-lock-syntactic-keywords
3611as-is; and syntax-propertize-rules which provides a new way to specify
3612syntactic rules.
dfdb4cad 3613
0b19b281 3614*** Syntax tables support a new "comment style c" additionally to style b.
a2e5caf7 3615
7d301ae6 3616** New hook `post-self-insert-hook', run after `self-insert-command'.
041d709f 3617
4e2db1fe 3618** frame-local variables cannot be let-bound any more.
041d709f 3619
15de15c6 3620** Major and minor mode changes
dfdb4cad 3621
0b19b281
CY
3622*** `set-auto-mode' now respects mode: local variables at the end of files,
3623as well as those in the -*- line.
dfdb4cad 3624
15de15c6
CY
3625*** `prog-mode' is a new major mode from which programming modes
3626should be derived.
dfdb4cad 3627
15de15c6
CY
3628**** `prog-mode-hook' can be used to enable features for programming
3629modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable
3630on-the-fly spell checking for comments and strings.
dfdb4cad 3631
15de15c6
CY
3632*** New hook `change-major-mode-after-body-hook', run by
3633`run-mode-hooks' just before any other mode hooks.
dfdb4cad 3634
7a9a2fc6
GM
3635*** Enabled globalized minor modes can be disabled in specific major modes.
3636If the global mode is global-FOO-mode, then run (FOO-mode -1) in the
3637major mode's hook, where FOO-mode toggles the mode on a per-buffer basis.
dfdb4cad 3638
feb8a83a 3639*** `define-minor-mode' accepts new keywords :variable, :after-hook.
f44379e7 3640
7d301ae6
CY
3641** File-handling changes
3642
7d301ae6 3643*** `delete-file' and `delete-directory' now accept optional arg TRASH.
f1a5d776
CY
3644Trashing is performed if TRASH and `delete-by-moving-to-trash' are
3645both non-nil. Interactively, TRASH defaults to t, unless a prefix
3646argument is supplied (see Trash changes, above).
53967e09 3647
7d301ae6 3648*** New file predicates: `file-equal-p', `file-in-directory-p'.
ec70a47d 3649
4039c786
CY
3650** Tool-bars can display separators.
3651Tool-bar separators are handled like menu separators in menu-bar maps,
94975270 3652i.e. via menu entries of the form `(menu-item "--")'.
9317e499 3653
00fe2df1
JL
3654** Image API
3655
18af70d0
CY
3656*** Animated images support (currently animated gifs only).
3657
3658**** `image-animated-p' returns non-nil if an image can be animated.
3659
3660**** `image-animate' animates a supplied image spec.
3661
3662**** `image-animate-timer' returns the timer object for an image that
3663is being animated.
00fe2df1 3664
7cb76fe0
GM
3665*** `image-extension-data' has been renamed to `image-metadata'.
3666The old name is an obsolete alias to the new one.
1546c559 3667
b4ac6e8c
GM
3668*** Image mode can view any image type that ImageMagick supports.
3669This requires Emacs to be built with ImageMagick support.
7d301ae6
CY
3670
3671**** New function `imagemagick-types', defined if ImageMagick support
3672is enabled, returns a list of image file extensions that your
3673ImageMagick installation supports.
3674
3675**** New function `imagemagick-register-types' enables ImageMagick
3676image types in Image mode and in `create-image' and other helper
3677functions.
3678
3679**** New option `imagemagick-types-inhibit' excludes certain
3680ImageMagick image types from `imagemagick-register-types'.
3681
7d301ae6
CY
3682**** With ImageMagick support, there are extra Image mode commands to
3683resize and rotate images: `image-transform-fit-to-height',
3684`image-transform-fit-to-width', `image-transform-set-rotation', and
3685`image-transform-set-scale'.
041d709f 3686
7d301ae6
CY
3687** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
3688passes it to the mail user agent function. This argument specifies an
3689action for returning to the caller after finishing with the mail. For
3690example, this is used by Rmail to optionally delete a mail window.
b4ac6e8c 3691
71c17aec 3692** XML and HTML parsing
483ab230
CY
3693If Emacs is compiled with libxml2 support, there are two new
3694functions: `libxml-parse-html-region' (which parses "real world" HTML)
3695and `libxml-parse-xml-region' (which parses XML). Both return an
3696Emacs Lisp parse tree.
4b9832a6 3697
7d301ae6 3698** Networking and encryption changes
e2574f2c 3699
7d301ae6
CY
3700*** `open-network-stream' can now be used to open an encrypted stream.
3701It now accepts an optional `:type' parameter for initiating a TLS
3702connection, directly or via STARTTLS. To do STARTTLS, additional
3703parameters (`:end-of-command', `:success', `:capabilities-command')
3704must also be supplied.
3705
3706*** New library gnutls.el.
dfdb4cad
CY
3707The new function `gnutls-available-p' returns non-nil if Emacs is
3708built with GnuTLS support. The main entry points are
3709`open-gnutls-stream' and `gnutls-negotiate'. It's easiest to use
3710these functions through `open-network-stream', because that can
7d301ae6
CY
3711upgrade connections through STARTTLS opportunistically or use plain
3712SSL, depending on your needs. For debugging, set `gnutls-log-level'
3713greater than 0.
3714
7d301ae6
CY
3715*** New primitive `secure-hash' that supports many secure hash algorithms:
3716md5, sha1, sha2, sha224, sha256, sha384, and sha512. The lisp library
3717sha1.el has been removed. The `sha1' feature is provided by default.
71c17aec 3718
a6020335
MH
3719** Isearch
3720
3721*** New hook `isearch-update-post-hook' that runs in `isearch-update'.
3722
9326ba26
CY
3723** Progress reporters can now "spin".
3724The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
3725now be nil, or omitted. This makes a "non-numeric" reporter. Each
3726time you call `progress-reporter-update' on that progress reporter,
3727with a nil or omitted VALUE argument, the reporter message is
3728displayed with a "spinning bar".
3729
3e214b50
JB
3730** New variable `revert-buffer-in-progress-p' is true while a buffer is
3731being reverted, even if the buffer has a local `revert-buffer-function'.
3732
001bf877
GM
3733** New variables `delayed-warnings-list' and `delayed-warnings-hook'.
3734If delayed-warnings-list is non-nil, the command loop calls
7d301ae6
CY
3735`delayed-warnings-hook' after `post-command-hook'. At present, this
3736is only used by Emacs on some platforms to display warnings during
3737startup, which might otherwise not be noticed. This uses the
3738functions `display-delayed-warnings' and `collapse-delayed-warnings'.
001bf877 3739
6420d28b
CY
3740** rx.el has a new `group-n' construct for explicitly numbered groups.
3741
dac86404
GM
3742** New function `make-composed-keymap' that constructs a new keymap
3743from multiple input maps. You can use this to make a keymap that
3744inherits from multiple maps, eg:
3745 (set-keymap-parent newmap (make-composed-keymap othermap parent))
43dc9f5b 3746
c8f6ec5c
GM
3747** New function `string-prefix-p'.
3748(This was actually added in Emacs 23.2 but was not advertised at the time.)
3749
27f7ef2f 3750** New reader macro ## that stands for the empty symbol.
43dc9f5b
AS
3751This means that the empty symbol can now be read back. Also, #: by itself
3752(when not immediately followed by a possible symbol character) stands for
3753an empty uninterned symbol.
041d709f 3754
fead402d
CY
3755** New math functions `isnan', `copysign', `frexp', `ldexp'.
3756
7d301ae6 3757** The following functions and variables are obsolete:
041d709f 3758
05f77e38
GM
3759*** `tooltip-use-echo-area' is obsolete.
3760Rather than setting this to t, disable Tooltip mode instead.
3761
041d709f
CY
3762*** buffer-substring-filters is obsolete.
3763Use `filter-buffer-substring-functions' instead.
3764
3765*** `byte-compile-disable-print-circle' is obsolete.
3766
3767*** `deferred-action-list' and `deferred-action-function' are obsolete.
f160676e
GM
3768Use `post-command-hook' instead.
3769
67e729a5
CY
3770*** `font-lock-maximum-size' is obsolete.
3771
eb199145 3772\f
93e0bed6 3773* Changes in Emacs 24.1 on Non-Free Operating Systems
d53a60a6 3774
7a22e700 3775** On MS Windows, Emacs warns when using the obsolete init file _emacs,
a2f0118c
GM
3776and also when HOME is set to C:\ by default.
3777
7a22e700 3778** New configure.bat options
04779484 3779
7a22e700 3780*** --enable-checking builds Emacs with extra runtime checks.
e3aef5c6 3781
7a22e700 3782*** --distfiles specifies files to be included in binary distribution.
e2574f2c 3783
7a22e700
OK
3784*** --without-gnutls disables automatic GnuTLS detection.
3785
a0d363f4 3786*** --lib for general library linkage, works with the USER_LIBS build variable.
e2574f2c 3787
0a19a6f8 3788** New make target `dist' to create binary distribution for MS Windows.
e3aef5c6 3789
1f5e1a16
GM
3790** The Lisp function `w32-default-color-map' is now obsolete.
3791(It is only used internally in the Emacs C code.)
5430d399 3792
1f5e1a16
GM
3793** Customize ns-auto-hide-menu-bar to have the menu-bar hidden, but
3794reappear on mouse-over. (Requires OS X 10.6 or later.)
04e2ce72 3795
ad7c802c
CY
3796** On Mac OS X, dragging a file into Emacs visits the file, like on
3797other platforms, rather than inserting its contents into the buffer.
3798
05197f40 3799\f
a933dad1 3800----------------------------------------------------------------------
5b87ad55 3801This file is part of GNU Emacs.
a933dad1 3802
ab73e885 3803GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 3804it under the terms of the GNU General Public License as published by
ab73e885
GM
3805the Free Software Foundation, either version 3 of the License, or
3806(at your option) any later version.
5b87ad55
GM
3807
3808GNU Emacs is distributed in the hope that it will be useful,
3809but WITHOUT ANY WARRANTY; without even the implied warranty of
3810MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3811GNU General Public License for more details.
a933dad1 3812
5b87ad55 3813You should have received a copy of the GNU General Public License
ab73e885 3814along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a933dad1 3815
05197f40 3816\f
a933dad1
DL
3817Local variables:
3818mode: outline
3819paragraph-separate: "[ \f]*$"
3820end: