aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index ad331e9623b..0661d0f8c86 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -517,7 +517,7 @@ If `enable-multibyte-characters' is nil or point is not\n\
517 XSETFASTINT (temp, FETCH_CHAR (pos)); 517 XSETFASTINT (temp, FETCH_CHAR (pos));
518 } 518 }
519 else 519 else
520 XSETFASTINT (temp, FETCH_BYTE (point - 1)); 520 XSETFASTINT (temp, FETCH_BYTE (PT - 1));
521 return temp; 521 return temp;
522} 522}
523 523