diff options
| author | Lars Ingebrigtsen | 2016-05-01 00:03:15 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-01 00:03:15 +0200 |
| commit | eeac7c57273cec3f9408b18392dd2bafe3be4450 (patch) | |
| tree | 201816f98179fe8b49da9b8b7bd7e48488e3e0d5 /src | |
| parent | 28e9f4390d8391c2c36be4ef515cf3a2c679a5a5 (diff) | |
| download | emacs-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.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. */) | |||
| 412 | } | 412 | } |
| 413 | 413 | ||
| 414 | DEFUN ("marker-position", Fmarker_position, Smarker_position, 1, 1, 0, | 414 | DEFUN ("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. */) |
| 416 | Returns nil if MARKER points nowhere. */) | ||
| 417 | (Lisp_Object marker) | 416 | (Lisp_Object marker) |
| 418 | { | 417 | { |
| 419 | CHECK_MARKER (marker); | 418 | CHECK_MARKER (marker); |