aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-10-17 07:08:08 +0000
committerKenichi Handa2003-10-17 07:08:08 +0000
commit3bb9958bc0dceafa3fc2f251c42b9df224dccadb (patch)
tree43cbc5434c11a944111ac73db2b34758a0dafd3f
parentc6d251f01e15bbbc480dea3cf70a96985b1ae357 (diff)
downloademacs-3bb9958bc0dceafa3fc2f251c42b9df224dccadb.tar.gz
emacs-3bb9958bc0dceafa3fc2f251c42b9df224dccadb.zip
(Fgoto_char): Fix docstring.
-rw-r--r--src/editfns.c5
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
247DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ", 247DEFUN ("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.
249Beginning of buffer is position (point-min), end is (point-max). 249Beginning of buffer is position (point-min), end is (point-max). */)
250If the position is in the middle of a multibyte form,
251the actual point is set at the head of the multibyte form
252except 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{