aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2001-10-30 00:34:18 +0000
committerRichard M. Stallman2001-10-30 00:34:18 +0000
commit210ebd3d84b32c666a46651e66070c5f7a7d44a5 (patch)
tree2513a93edd7f62bf3e0037b4a0318a18202d4452 /src
parent4d083a8fd22a25b3e6f252c06d802d025b07eb8c (diff)
downloademacs-210ebd3d84b32c666a46651e66070c5f7a7d44a5.tar.gz
emacs-210ebd3d84b32c666a46651e66070c5f7a7d44a5.zip
(print_object): Clarify indication of insertion type.
Diffstat (limited to 'src')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 15da00a9e5a..832e9af46bd 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1828,7 +1828,7 @@ print_object (obj, printcharfun, escapeflag)
1828 strout ("#<marker ", -1, -1, printcharfun, 0); 1828 strout ("#<marker ", -1, -1, printcharfun, 0);
1829 /* Do you think this is necessary? */ 1829 /* Do you think this is necessary? */
1830 if (XMARKER (obj)->insertion_type != 0) 1830 if (XMARKER (obj)->insertion_type != 0)
1831 strout ("(before-insertion) ", -1, -1, printcharfun, 0); 1831 strout ("(moves after insertion) ", -1, -1, printcharfun, 0);
1832 if (!(XMARKER (obj)->buffer)) 1832 if (!(XMARKER (obj)->buffer))
1833 strout ("in no buffer", -1, -1, printcharfun, 0); 1833 strout ("in no buffer", -1, -1, printcharfun, 0);
1834 else 1834 else