comparison lisp/international/mule.el @ 110618:7019133063c8

international/mule-diag.el (describe-character-set): Use princ with proper print-length and print-level instead of insert.
author Kenichi Handa <handa@m17n.org>
date Mon, 27 Sep 2010 13:52:56 +0900
parents 62d9702eb261
children 6a7fb61524be cda2045a5ee8
comparison
equal deleted inserted replaced
110617:4e2238ed599f 110618:7019133063c8
640 640
641 `:post-read-conversion' 641 `:post-read-conversion'
642 642
643 VALUE must be a function to call after some text is inserted and 643 VALUE must be a function to call after some text is inserted and
644 decoded by the coding system itself and before any functions in 644 decoded by the coding system itself and before any functions in
645 `after-insert-functions' are called. The arguments to this function 645 `after-insert-functions' are called. This function is passed one
646 are the same as those of a function in `after-insert-file-functions', 646 argument; the number of characters in the text to convert, with
647 i.e. LENGTH of the text to be decoded with point at the head of it, 647 point at the start of the text. The function should leave point
648 and the function should leave point unchanged. 648 the same, and return the new character count.
649 649
650 `:pre-write-conversion' 650 `:pre-write-conversion'
651 651
652 VALUE must be a function to call after all functions in 652 VALUE must be a function to call after all functions in
653 `write-region-annotate-functions' and `buffer-file-format' are called, 653 `write-region-annotate-functions' and `buffer-file-format' are
654 and before the text is encoded by the coding system itself. The 654 called, and before the text is encoded by the coding system
655 arguments to this function are the same as those of a function in 655 itself. This function should convert the whole text in the
656 `write-region-annotate-functions'. 656 current buffer. For backward compatibility, this funciton is
657 passed two arguments which can be ignored.
657 658
658 `:default-char' 659 `:default-char'
659 660
660 VALUE must be a character. On encoding, a character not supported by 661 VALUE must be a character. On encoding, a character not supported by
661 the coding system is replaced with VALUE. 662 the coding system is replaced with VALUE.