comparison etc/NEWS @ 92081:334b9982376e

*** empty log message ***
author Glenn Morris <rgm@gnu.org>
date Fri, 22 Feb 2008 03:49:19 +0000
parents cfdc718703dc
children 726506ba3572
comparison
equal deleted inserted replaced
92080:ee833d8c4520 92081:334b9982376e
572 `byte-compile-enable-warning.' 572 `byte-compile-enable-warning.'
573 573
574 ** `mode-name' is no longer guaranteed to be a string. 574 ** `mode-name' is no longer guaranteed to be a string.
575 Use `(format-mode-line mode-name)' to ensure a string value. 575 Use `(format-mode-line mode-name)' to ensure a string value.
576 576
577 ** The feature `devanagari' and `devan-util' were removed, and all 577 ** The features `devanagari' and `devan-util' were removed, and all
578 devanagari-* and dev-* functions and variables were removed too. They 578 devanagari-* and dev-* functions and variables were removed too. They
579 were for displaying Devanagari script with a specific kind of font in 579 were for displaying Devanagari script with a specific kind of font in
580 Emacs 22, and not necessary anymore because of OpenType font support. 580 Emacs 22, and are not necessary anymore because of OpenType font support.
581 581
582 ** The feature `kannada' and `knd-util' were removed, and all 582 ** The feature `kannada' and `knd-util' were removed, and all
583 kannada-* and knd-* functions and variables are removed too. They 583 kannada-* and knd-* functions and variables are removed too. They
584 were for displaying Kannada script with a specific kind of font in 584 were for displaying Kannada script with a specific kind of font in
585 Emacs 22, and not necessary anymore because of OpenType font support. 585 Emacs 22, and not necessary anymore because of OpenType font support.
668 The concept of a charset has changed. A single character may belong to 668 The concept of a charset has changed. A single character may belong to
669 multiple charsets (e.g. a-grave, U+00E0, belongs to charsets unicode, 669 multiple charsets (e.g. a-grave, U+00E0, belongs to charsets unicode,
670 iso-8859-1, iso-8859-3, etc). 670 iso-8859-1, iso-8859-3, etc).
671 671
672 *** The new function `characterp' returns t if and only if the argument 672 *** The new function `characterp' returns t if and only if the argument
673 is a character. 673 is a character. This replaces `char-valid-p', which is now obsolete.
674 674
675 *** The new function `max-char' returns the maximum character code 675 *** The new function `max-char' returns the maximum character code
676 (currently it is #x3FFFFF). 676 (currently it is #x3FFFFF).
677 677
678 *** The functions `encode-char' and `decode-char' now accept any character sets. 678 *** The functions `encode-char' and `decode-char' now accept any character sets.
726 726
727 *** The functions `modify-syntax-entry' and `modify-category-entry' now 727 *** The functions `modify-syntax-entry' and `modify-category-entry' now
728 accepts a cons of characters as the first argument, and modify all 728 accepts a cons of characters as the first argument, and modify all
729 entries in that range of characters. 729 entries in that range of characters.
730 730
731 *** The functions `char-bytes', `chars-in-region', and `char-valid-p' are
732 obsolete.
733
734 ** Code conversion changes. 731 ** Code conversion changes.
735 732
736 *** The new function `define-coding-system' should be used to define a 733 *** The new function `define-coding-system' should be used to define a
737 coding system instead of `make-coding-system' (which is now obsolete). 734 coding system instead of `make-coding-system' (which is now obsolete).
738 735