diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-03-27 14:23:09 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-03-27 14:23:09 +0000 |
commit | 8f59a4b0d6a9ab220ea5e2d83d9e512e8b95fb7f (patch) | |
tree | 5a866343d3f6d40957dce5f0e9a073d0d486eba5 /src/editfns.c | |
parent | f0ea280c6458216bdfadccf1c28b4d6e637a1ebf (diff) | |
download | emacs-8f59a4b0d6a9ab220ea5e2d83d9e512e8b95fb7f.tar.gz |
(Fgoto_char): Fix docstring. Probably left-over from Emacs-20.1.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 9 |
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 @@ /* Lisp functions pertaining to editing. - Copyright (C) 1985,86,87,89,93,94,95,96,97,98,1999,2000,01,02,03,2004 - Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1987, 1989, 1993, 1994, 1995, 1996, 1997, 1998, + 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -265,10 +265,7 @@ clip_to_bounds (lower, num, upper) DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ", doc: /* Set point to POSITION, a number or marker. -Beginning of buffer is position (point-min), end is (point-max). -If the position is in the middle of a multibyte form, -the actual point is set at the head of the multibyte form -except in the case that `enable-multibyte-characters' is nil. */) +Beginning of buffer is position (point-min), end is (point-max). */) (position) register Lisp_Object position; { |