comparison src/font.c @ 110987:cda2045a5ee8

Fix typos in docstrings, comments and ChangeLogs. * etc/tutorials/TUTORIAL.es: Fix typos. * lisp/cedet/semantic/symref/list.el (semantic-symref-list-rename-open-hits): Fix typo in message. (semantic-symref-list-map-open-hits): Fix typo in docstring. * lisp/erc/erc-xdcc.el (erc-xdcc-help-text): Fix typo in docstring. * lisp/gnus/nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring. * lisp/international/mule.el (define-coding-system): * lisp/international/titdic-cnv.el (quail-cxterm-package-ext-info): * composite.el (compose-region): Fix typo in docstring. * lisp/org/org-agenda.el (org-prefix-category-length) (org-prefix-category-max-length): Fix typos in docstrings. * src/font.c (Ffont_variation_glyphs): * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 13 Oct 2010 01:25:19 +0200
parents 26b234a2e901
children 36726f009542
comparison
equal deleted inserted replaced
110986:e0f89e89ed02 110987:cda2045a5ee8
4632 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs, Sfont_variation_glyphs, 4632 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs, Sfont_variation_glyphs,
4633 2, 2, 0, 4633 2, 2, 0,
4634 doc: /* Return a list of variation glyphs for CHAR in FONT-OBJECT. 4634 doc: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4635 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID), 4635 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4636 where 4636 where
4637 VARIATION-SELECTOR is a chracter code of variation selection 4637 VARIATION-SELECTOR is a character code of variation selection
4638 (#xFE00..#xFE0F or #xE0100..#xE01EF) 4638 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4639 GLYPH-ID is a glyph code of the corresponding variation glyph. */) 4639 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4640 (font_object, character) 4640 (font_object, character)
4641 Lisp_Object font_object, character; 4641 Lisp_Object font_object, character;
4642 { 4642 {