1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 14:30:43 -08:00

* syntax.c (scan_sexps_forward): Fix byte position calculation

Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
This commit is contained in:
Dmitry Antipov 2013-02-10 20:25:33 +04:00
parent 2f108463fa
commit 68643cdeb6
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
* syntax.c (scan_sexps_forward): Fix byte position calculation
Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
* fileio.c (Fexpand_file_name): Omit confusing pointer comparison

View file

@ -3278,6 +3278,7 @@ do { prev_from = from; \
stop: /* Here if stopping before start of sexp. */
from = prev_from; /* We have just fetched the char that starts it; */
from_byte = prev_from_byte;
goto done; /* but return the position before it. */
endquoted: