comparison lisp/format.el @ 42470:fd37f9aafadc

Doc fix.
author Pavel Janík <Pavel@Janik.cz>
date Tue, 01 Jan 2002 19:16:54 +0000
parents b174db545cfd
children a5795efa232a
comparison
equal deleted inserted replaced
42469:64341c22fb4c 42470:fd37f9aafadc
791 (goto-char (- (car (car l)) offset)) 791 (goto-char (- (car (car l)) offset))
792 (insert (cdr (car l))) 792 (insert (cdr (car l)))
793 (setq l (cdr l))))) 793 (setq l (cdr l)))))
794 794
795 (defun format-annotate-value (old new) 795 (defun format-annotate-value (old new)
796 "Return OLD and NEW as a \(close . open) annotation pair. 796 "Return OLD and NEW as a \(CLOSE . OPEN) annotation pair.
797 Useful as a default function for TRANSLATIONS alist when the value of the text 797 Useful as a default function for TRANSLATIONS alist when the value of the text
798 property is the name of the annotation that you want to use, as it is for the 798 property is the name of the annotation that you want to use, as it is for the
799 `unknown' text property." 799 `unknown' text property."
800 (cons (if old (list old)) 800 (cons (if old (list old))
801 (if new (list new)))) 801 (if new (list new))))