aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 0587d66bb0f..f77b9cafc80 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1,6 +1,6 @@
1/* Lisp functions pertaining to editing. 1/* Lisp functions pertaining to editing.
2 Copyright (C) 1985,86,87,89,93,94,95,96,97,98,1999,2000,01,02,03,2004 2 Copyright (C) 1985, 1986, 1987, 1989, 1993, 1994, 1995, 1996, 1997, 1998,
3 Free Software Foundation, Inc. 3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -265,10 +265,7 @@ clip_to_bounds (lower, num, upper)
265 265
266DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ", 266DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
267 doc: /* Set point to POSITION, a number or marker. 267 doc: /* Set point to POSITION, a number or marker.
268Beginning of buffer is position (point-min), end is (point-max). 268Beginning of buffer is position (point-min), end is (point-max). */)
269If the position is in the middle of a multibyte form,
270the actual point is set at the head of the multibyte form
271except in the case that `enable-multibyte-characters' is nil. */)
272 (position) 269 (position)
273 register Lisp_Object position; 270 register Lisp_Object position;
274{ 271{