comparison src/editfns.c @ 61017:595361160197

(Fgoto_char): Fix docstring. Probably left-over from Emacs-20.1.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 27 Mar 2005 14:23:09 +0000
parents c140948a6044
children 8a54ce1fae6a 4da4a09e8b1b
comparison
equal deleted inserted replaced
61016:132a274ae79c 61017:595361160197
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
5 This file is part of GNU Emacs. 5 This file is part of GNU Emacs.
6 6
7 GNU Emacs is free software; you can redistribute it and/or modify 7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
263 return num; 263 return num;
264 } 264 }
265 265
266 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ", 266 DEFUN ("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.
268 Beginning of buffer is position (point-min), end is (point-max). 268 Beginning of buffer is position (point-min), end is (point-max). */)
269 If the position is in the middle of a multibyte form,
270 the actual point is set at the head of the multibyte form
271 except 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 {
275 int pos; 272 int pos;
276 273