diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2016-05-01 00:03:15 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-05-01 00:03:15 +0200 |
commit | eeac7c57273cec3f9408b18392dd2bafe3be4450 (patch) | |
tree | 201816f98179fe8b49da9b8b7bd7e48488e3e0d5 /src/marker.c | |
parent | 28e9f4390d8391c2c36be4ef515cf3a2c679a5a5 (diff) | |
download | emacs-eeac7c57273cec3f9408b18392dd2bafe3be4450.tar.gz |
Fmarker_position doc string clarification
* src/marker.c (Fmarker_position): Clarify the doc string
(bug#21231).
Diffstat (limited to 'src/marker.c')
-rw-r--r-- | src/marker.c | 3 |
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. */) } DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0, - doc: /* Return the position MARKER points at, as a character number. -Returns nil if MARKER points nowhere. */) + doc: /* Return the position of MARKER, or nil if it points nowhere. */) (Lisp_Object marker) { CHECK_MARKER (marker); |