aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1996-09-01 19:15:05 +0000
committerKarl Heuer <[email protected]>1996-09-01 19:15:05 +0000
commit6ec8bbd20d14dadb850f993d828b42bb97deba32 (patch)
tree19f01d5251cd6d478933a5f562ba985bf5c3b117 /src/print.c
parent7003b258300d0e575da8009e6f017b6c19aabacb (diff)
Change all references from point to PT.
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/print.c b/src/print.c
index b6a12e7228..b34adbf981 100644
--- a/src/print.c
+++ b/src/print.c
@@ -173,9 +173,9 @@ glyph_to_str_cpy (glyphs, str)
error ("Marker does not point anywhere"); \
if (XMARKER (original)->buffer != current_buffer) \
set_buffer_internal (XMARKER (original)->buffer); \
- old_point = point; \
+ old_point = PT; \
SET_PT (marker_position (printcharfun)); \
- start_point = point; \
+ start_point = PT; \
printcharfun = Qnil;} \
if (NILP (printcharfun)) \
{ \
@@ -191,10 +191,10 @@ glyph_to_str_cpy (glyphs, str)
insert (print_buffer, print_buffer_pos); \
if (print_buffer) free (print_buffer); \
if (MARKERP (original)) \
- Fset_marker (original, make_number (point), Qnil); \
+ Fset_marker (original, make_number (PT), Qnil); \
if (old_point >= 0) \
SET_PT (old_point + (old_point >= start_point \
- ? point - start_point : 0)); \
+ ? PT - start_point : 0)); \
if (old != current_buffer) \
set_buffer_internal (old)