aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-08-08 12:59:56 +0000
committerKenichi Handa2000-08-08 12:59:56 +0000
commit4245f3d2ec7db04ac8b0bb7b749a818d182ca917 (patch)
treed6d54c564ca9832cabd48697474040327d3020fb
parent46dc9912073ea45784bb225fa81a0157a56d32e0 (diff)
downloademacs-4245f3d2ec7db04ac8b0bb7b749a818d182ca917.tar.gz
emacs-4245f3d2ec7db04ac8b0bb7b749a818d182ca917.zip
(Fchar_width): Doc fix.
-rw-r--r--src/charset.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c
index ffe0cd9485b..bc0b5ff7ee3 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1197,7 +1197,8 @@ char_bytes (c)
1197 1197
1198DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0, 1198DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0,
1199 "Return width of CHAR when displayed in the current buffer.\n\ 1199 "Return width of CHAR when displayed in the current buffer.\n\
1200The width is measured by how many columns it occupies on the screen.") 1200The width is measured by how many columns it occupies on the screen.\n\
1201Tab is taken to occupy `tab-width' columns.")
1201 (ch) 1202 (ch)
1202 Lisp_Object ch; 1203 Lisp_Object ch;
1203{ 1204{