aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-08 12:38:01 +0000
committerGerd Moellmann2000-08-08 12:38:01 +0000
commit5af47d5f73ef07ea9a4cc8b1822a8b50f771b693 (patch)
tree76cdb70df1d77d7710b301e55eb445ac7722799e /src
parente36caa783e08ffa6686bf81c70b13e6f9c93cd42 (diff)
downloademacs-5af47d5f73ef07ea9a4cc8b1822a8b50f771b693.tar.gz
emacs-5af47d5f73ef07ea9a4cc8b1822a8b50f771b693.zip
(Fstring_width): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index 2ddb1b407dd..ffe0cd9485b 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1265,7 +1265,8 @@ DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0,
1265Width is measured by how many columns it occupies on the screen.\n\ 1265Width is measured by how many columns it occupies on the screen.\n\
1266When calculating width of a multibyte character in STRING,\n\ 1266When calculating width of a multibyte character in STRING,\n\
1267only the base leading-code is considered; the validity of\n\ 1267only the base leading-code is considered; the validity of\n\
1268the following bytes is not checked.") 1268the following bytes is not checked. Tabs in STRING are always\n\
1269taken to occupy `tab-width' columns.")
1269 (str) 1270 (str)
1270 Lisp_Object str; 1271 Lisp_Object str;
1271{ 1272{