aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-01 09:07:05 +0000
committerRichard M. Stallman1994-10-01 09:07:05 +0000
commita8a3c4213f9e062656074034912c72ff6bcc96d6 (patch)
tree38264b6262dfb83f6f3c8d4cd7518b2d43e3f5f4 /src
parent1a0201170f60c8fcadf66ed343333254ec89ccf2 (diff)
downloademacs-a8a3c4213f9e062656074034912c72ff6bcc96d6.tar.gz
emacs-a8a3c4213f9e062656074034912c72ff6bcc96d6.zip
Comment change.
Diffstat (limited to 'src')
-rw-r--r--src/regex.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regex.c b/src/regex.c
index f1d1319f6ff..4b22b31a3c3 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -2703,6 +2703,7 @@ compile_range (p_ptr, pend, translate, syntax, b)
2703 2703
2704 We also want to fetch the endpoints without translating them; the 2704 We also want to fetch the endpoints without translating them; the
2705 appropriate translation is done in the bit-setting loop below. */ 2705 appropriate translation is done in the bit-setting loop below. */
2706 /* The SVR4 compiler on the 3B2 had trouble with unsigned const char *. */
2706 range_start = ((const unsigned char *) p)[-2]; 2707 range_start = ((const unsigned char *) p)[-2];
2707 range_end = ((const unsigned char *) p)[0]; 2708 range_end = ((const unsigned char *) p)[0];
2708 2709