]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fchar_bytes, Fchar_width, Fstring_width, Fchar_direction):
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 16 Apr 2008 11:37:21 +0000 (11:37 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 16 Apr 2008 11:37:21 +0000 (11:37 +0000)
Add usage in the docstring.

src/ChangeLog
src/character.c

index 30920d68e5e86b65dac3185e5b8667a856b40cac..b814ed3e57f916bd8855a7f31821ec3db9b04614 100644 (file)
@@ -1,3 +1,8 @@
+2008-04-16  Juanma Barranquero  <lekktu@gmail.com>
+
+       * character.c (Fchar_bytes, Fchar_width, Fstring_width)
+       (Fchar_direction): Add usage in the docstring.
+
 2008-04-15  Chong Yidong  <cyd@stupidchicken.com>
 
        * keyboard.c (read_key_sequence): Remove always-true checks.
index 457d57f9251ce53320b5193daf7f0919cd869c5f..a4e142e371cdafb2bbee6b363eb0cac3b3d93587 100644 (file)
@@ -364,7 +364,8 @@ the current primary charset (value of `charset-primary').  */)
 
 DEFUN ("char-bytes", Fchar_bytes, Schar_bytes, 1, 1, 0,
        doc: /* Return 1 regardless of the argument CHAR.
-This is now an obsolete function.  We keep it just for backward compatibility.  */)
+This is now an obsolete function.  We keep it just for backward compatibility.
+usage: (char-bytes CHAR)  */)
      (ch)
      Lisp_Object ch;
 {
@@ -375,7 +376,8 @@ This is now an obsolete function.  We keep it just for backward compatibility.
 DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0,
        doc: /* Return width of CHAR when displayed in the current buffer.
 The width is measured by how many columns it occupies on the screen.
-Tab is taken to occupy `tab-width' columns.  */)
+Tab is taken to occupy `tab-width' columns.
+usage: (char-width CHAR)  */)
      (ch)
        Lisp_Object ch;
 {
@@ -552,7 +554,8 @@ Width is measured by how many columns it occupies on the screen.
 When calculating width of a multibyte character in STRING,
 only the base leading-code is considered; the validity of
 the following bytes is not checked.  Tabs in STRING are always
-taken to occupy `tab-width' columns.  */)
+taken to occupy `tab-width' columns.
+usage: (string-width STRING)  */)
      (str)
      Lisp_Object str;
 {
@@ -565,7 +568,8 @@ taken to occupy `tab-width' columns.  */)
 
 DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0,
        doc: /* Return the direction of CHAR.
-The returned value is 0 for left-to-right and 1 for right-to-left.  */)
+The returned value is 0 for left-to-right and 1 for right-to-left.
+usage: (char-direction CHAR)  */)
      (ch)
      Lisp_Object ch;
 {