From: Lars Ingebrigtsen Date: Sat, 30 Apr 2016 22:03:15 +0000 (+0200) Subject: Fmarker_position doc string clarification X-Git-Tag: emacs-25.0.94~61 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d1ab001;p=emacs.git Fmarker_position doc string clarification * src/marker.c (Fmarker_position): Clarify the doc string (bug#21231). (cherry picked from commit eeac7c57273cec3f9408b18392dd2bafe3be4450) --- 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);