aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorKenichi Handa2004-03-11 23:42:18 +0000
committerKenichi Handa2004-03-11 23:42:18 +0000
commitccddfb9e0919d1a127828b2a68411b0c9e8020d1 (patch)
treeeadabed67b4952525dc3f77bdad5bef399e6191f /src/doc.c
parent923d422fc87ebd0405a0a0cc9d00402694e264c1 (diff)
downloademacs-ccddfb9e0919d1a127828b2a68411b0c9e8020d1.tar.gz
emacs-ccddfb9e0919d1a127828b2a68411b0c9e8020d1.zip
Sync with HEAD (1.103).
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/doc.c b/src/doc.c
index fa87916c85b..af5707474c7 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -821,7 +821,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
821 start = strp; 821 start = strp;
822 start_idx = start - SDATA (string); 822 start_idx = start - SDATA (string);
823 823
824 while ((strp - SDATA (string) < SCHARS (string)) 824 while ((strp - SDATA (string) < SBYTES (string))
825 && *strp != '}' && *strp != '>') 825 && *strp != '}' && *strp != '>')
826 strp++; 826 strp++;
827 827
@@ -927,3 +927,6 @@ syms_of_doc ()
927 defsubr (&Ssnarf_documentation); 927 defsubr (&Ssnarf_documentation);
928 defsubr (&Ssubstitute_command_keys); 928 defsubr (&Ssubstitute_command_keys);
929} 929}
930
931/* arch-tag: 56281d4d-6949-43e2-be2e-f6517de744ba
932 (do not change this comment) */