about summary refs log tree commit diff
path: root/manual/ctype.texi
diff options
context:
space:
mode:
Diffstat (limited to 'manual/ctype.texi')
-rw-r--r--manual/ctype.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/ctype.texi b/manual/ctype.texi
index 593f7f3a0b..1117363a4b 100644
--- a/manual/ctype.texi
+++ b/manual/ctype.texi
@@ -625,7 +625,7 @@ is_in_class (int c, const char *class)
     return isalpha (c);
   if (strcmp (class, "cntrl") == 0)
     return iscntrl (c);
-  ...
+  @dots{}
   return 0;
 @}
 @end smallexample