comparison etc/NEWS @ 51608:05ddf95bcbff

*** empty log message ***
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 17 Jun 2003 21:11:31 +0000
parents 5dccfdd80acb
children c9a97d52236b
comparison
equal deleted inserted replaced
51607:ead411a37669 51608:05ddf95bcbff
85 --- 85 ---
86 ** A French translation of the Emacs Tutorial is available. 86 ** A French translation of the Emacs Tutorial is available.
87 87
88 88
89 * Changes in Emacs 21.4 89 * Changes in Emacs 21.4
90
91 ** Support for the SQLite interpreter has been added to sql.el by calling
92 'sql-sqlite'.
90 93
91 ** BibTeX mode: 94 ** BibTeX mode:
92 *** New `bibtex-entry-format' option `required-fields', enabled by default. 95 *** New `bibtex-entry-format' option `required-fields', enabled by default.
93 *** bibtex-maintain-sorted-entries can take values `plain', 96 *** bibtex-maintain-sorted-entries can take values `plain',
94 `crossref', and `entry-class' which control the sorting scheme used 97 `crossref', and `entry-class' which control the sorting scheme used
1325 ** The function `number-sequence' returns a list of equally-separated 1328 ** The function `number-sequence' returns a list of equally-separated
1326 numbers. For instance, (number-sequence 4 9) returns (4 5 6 7 8 9). 1329 numbers. For instance, (number-sequence 4 9) returns (4 5 6 7 8 9).
1327 By default, the separation is 1, but you can specify a different separation 1330 By default, the separation is 1, but you can specify a different separation
1328 as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5). 1331 as the third argument. (number-sequence 1.5 6 2) returns (1.5 3.5 5.5).
1329 1332
1330 ** `file-chase-links' now takes an optional second argument LIMIT which 1333 ** `file-chase-links' now takes an optional second argument LIMIT which
1331 specifies the maximum number of links to chase through. If after that 1334 specifies the maximum number of links to chase through. If after that
1332 many iterations the file name obtained is still a symbolic link, 1335 many iterations the file name obtained is still a symbolic link,
1333 `file-chase-links' returns it anyway. 1336 `file-chase-links' returns it anyway.
1334 1337
1335 ** `set-fontset-font', `fontset-info', `fontset-font' now operate on 1338 ** `set-fontset-font', `fontset-info', `fontset-font' now operate on
2031 This makes it generally unnecessary to mark invisible text as intangible. 2034 This makes it generally unnecessary to mark invisible text as intangible.
2032 This is particularly good because the intangible property often has 2035 This is particularly good because the intangible property often has
2033 unexpected side-effects since the property applies to everything 2036 unexpected side-effects since the property applies to everything
2034 (including `goto-char', ...) whereas this new code is only run after 2037 (including `goto-char', ...) whereas this new code is only run after
2035 post-command-hook and thus does not care about intermediate states. 2038 post-command-hook and thus does not care about intermediate states.
2036 2039
2037 ** Only one of the beginning or end of an invisible, intangible region is 2040 ** Only one of the beginning or end of an invisible, intangible region is
2038 considered an acceptable value for point; which one is determined by 2041 considered an acceptable value for point; which one is determined by
2039 examining how the invisible/intangible properties are inherited when new 2042 examining how the invisible/intangible properties are inherited when new
2040 text is inserted adjacent to them. (The `front-sticky' and `rear-sticky' 2043 text is inserted adjacent to them. (The `front-sticky' and `rear-sticky'
2041 properties control this.) 2044 properties control this.)