summaryrefslogtreecommitdiff
path: root/src/marker.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2018-03-26 14:29:49 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2018-03-26 14:29:49 -0400
commitc23f2b5d9e75ca0a8861043ec3d4114c89047b95 (patch)
tree2d2302dc52b97d3b1b5b65e4ca505876796ffc5d /src/marker.c
parent6247a904e6c5a68e21a4af79b52ab22a90d6c389 (diff)
downloademacs-c23f2b5d9e75ca0a8861043ec3d4114c89047b95.tar.gz
Trivial fixes for last changes to package.el and marker.c
* lisp/emacs-lisp/package.el (package-quickstart): Add missing version. * src/marker.c (verify_bytepos): Fix typo.
Diffstat (limited to 'src/marker.c')
-rw-r--r--src/marker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/marker.c b/src/marker.c
index eaae8ff6a90..2a45ae636ed 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -775,7 +775,7 @@ ptrdiff_t
verify_bytepos (ptrdiff_t charpos)
{
ptrdiff_t below = BEG;
- ptrdiff_t below_byte = BYTE_BEG;
+ ptrdiff_t below_byte = BEG_BYTE;
while (below != charpos)
{