]> git.eshelyaron.com Git - emacs.git/commitdiff
(decompose-composite-char): Fix docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jan 2003 08:59:43 +0000 (08:59 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 29 Jan 2003 08:59:43 +0000 (08:59 +0000)
lisp/ChangeLog
lisp/composite.el

index 4d7328280ae4194e208a8391d93c3d56ef2fedd1..08977d7ffb582d91020d851a58a0e8cf908afc7a 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-29  Juanma Barranquero  <lektu@terra.es>
+
+       * composite.el (decompose-composite-char): Fix docstring.
+
 2003-01-27  Juanma Barranquero  <lektu@terra.es>
 
        * progmodes/cc-vars.el (c-offsets-alist): Fix typo.
index 610ec227a60fc39642cb7d7b5a990fadf30b746b..58963c25ea3c74b868fb77df7b0fb69132c4affb 100644 (file)
@@ -95,7 +95,7 @@ follows (the point `*' corresponds to both reference points):
       (or (integerp nref)
          (setq nref (cdr (assq nref reference-point-alist))))
       (or (and (>= gref 0) (< gref 12) (>= nref 0) (< nref 12))
-         (error "Invalid composition rule: %S" rule))  
+         (error "Invalid composition rule: %S" rule))
       (+ (* gref 12) nref))))
 
 ;; Decode encoded composition rule RULE-CODE.  The value is a cons of
@@ -327,7 +327,7 @@ This function is the default value of `compose-chars-after-function'."
     (when tail
       (save-match-data
        (save-excursion
-         (while (and tail (not func))            
+         (while (and tail (not func))
            (setq pattern (car (car tail))
                  func (cdr (car tail)))
            (goto-char pos)
@@ -364,16 +364,17 @@ after a sequence character events."
 
 \f
 ;;; The following codes are only for backward compatibility with Emacs
-;;; 20.4 and the earlier.
+;;; 20.4 and earlier.
 
 ;;;###autoload
 (defun decompose-composite-char (char &optional type with-composition-rule)
   "Convert CHAR to string.
-This is only for backward compatibility with Emacs 20.4 and the earlier.
+This is only for backward compatibility with Emacs 20.4 and earlier.
 
 If optional 2nd arg TYPE is non-nil, it is `string', `list', or
-`vector'.  In this case, CHAR is converted string, list of CHAR, or
-vector of CHAR respectively."
+`vector'.  In this case, CHAR is converted to string, list of CHAR, or
+vector of CHAR respectively.
+Optional 3rd arg WITH-COMPOSITION-RULE is ignored."
   (cond ((or (null type) (eq type 'string)) (char-to-string char))
        ((eq type 'list) (list char))
        (t (vector char))))