aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Djärv2006-08-09 06:56:38 +0000
committerJan Djärv2006-08-09 06:56:38 +0000
commitae587d1d0cc496d38a369db44dfa0d2d1598d1ae (patch)
tree7d05224a6982704e9f39162d2db884ec50d539e4
parentea90c5d3bdb03846cbe7845b65d5be1343eddbe3 (diff)
downloademacs-ae587d1d0cc496d38a369db44dfa0d2d1598d1ae.tar.gz
emacs-ae587d1d0cc496d38a369db44dfa0d2d1598d1ae.zip
Fix previous change.
-rw-r--r--lib-src/etags.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c
index b02268ac218..49a18be1df5 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -6260,7 +6260,7 @@ readline (lbp, stream)
6260 6260
6261 if (DEBUG) start = 0; /* shut up the compiler */ 6261 if (DEBUG) start = 0; /* shut up the compiler */
6262 if (sscanf (lbp->buffer, "#line %d %n\"", &lno, &start) >= 1 6262 if (sscanf (lbp->buffer, "#line %d %n\"", &lno, &start) >= 1
6263 && inp[start] == '"') 6263 && lbp->buffer[start] == '"')
6264 { 6264 {
6265 char *endp = lbp->buffer + ++start; 6265 char *endp = lbp->buffer + ++start;
6266 6266