diff options
| author | Kenichi Handa | 2003-10-17 07:08:08 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-10-17 07:08:08 +0000 |
| commit | 3bb9958bc0dceafa3fc2f251c42b9df224dccadb (patch) | |
| tree | 43cbc5434c11a944111ac73db2b34758a0dafd3f | |
| parent | c6d251f01e15bbbc480dea3cf70a96985b1ae357 (diff) | |
| download | emacs-3bb9958bc0dceafa3fc2f251c42b9df224dccadb.tar.gz emacs-3bb9958bc0dceafa3fc2f251c42b9df224dccadb.zip | |
(Fgoto_char): Fix docstring.
| -rw-r--r-- | src/editfns.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index e58cf8a5dd9..fafa654bed1 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -246,10 +246,7 @@ clip_to_bounds (lower, num, upper) | |||
| 246 | 246 | ||
| 247 | DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ", | 247 | DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ", |
| 248 | doc: /* Set point to POSITION, a number or marker. | 248 | doc: /* Set point to POSITION, a number or marker. |
| 249 | Beginning of buffer is position (point-min), end is (point-max). | 249 | Beginning of buffer is position (point-min), end is (point-max). */) |
| 250 | If the position is in the middle of a multibyte form, | ||
| 251 | the actual point is set at the head of the multibyte form | ||
| 252 | except in the case that `enable-multibyte-characters' is nil. */) | ||
| 253 | (position) | 250 | (position) |
| 254 | register Lisp_Object position; | 251 | register Lisp_Object position; |
| 255 | { | 252 | { |