aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-05-01 00:03:15 +0200
committerLars Ingebrigtsen2016-05-01 00:03:15 +0200
commiteeac7c57273cec3f9408b18392dd2bafe3be4450 (patch)
tree201816f98179fe8b49da9b8b7bd7e48488e3e0d5 /src
parent28e9f4390d8391c2c36be4ef515cf3a2c679a5a5 (diff)
downloademacs-eeac7c57273cec3f9408b18392dd2bafe3be4450.tar.gz
emacs-eeac7c57273cec3f9408b18392dd2bafe3be4450.zip
Fmarker_position doc string clarification
* src/marker.c (Fmarker_position): Clarify the doc string (bug#21231).
Diffstat (limited to 'src')
-rw-r--r--src/marker.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/marker.c b/src/marker.c
index 030083002f4..febdb17689a 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -412,8 +412,7 @@ Returns nil if MARKER points into a dead buffer. */)
412} 412}
413 413
414DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0, 414DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0,
415 doc: /* Return the position MARKER points at, as a character number. 415 doc: /* Return the position of MARKER, or nil if it points nowhere. */)
416Returns nil if MARKER points nowhere. */)
417 (Lisp_Object marker) 416 (Lisp_Object marker)
418{ 417{
419 CHECK_MARKER (marker); 418 CHECK_MARKER (marker);