From: Kenichi Handa Date: Thu, 27 Feb 1997 08:03:44 +0000 (+0000) Subject: Escape newlines in docstring. X-Git-Tag: emacs-20.1~2830 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca38bbb2b812999fadb999c09be5d14d5b7dbc97;p=emacs.git Escape newlines in docstring. --- diff --git a/src/editfns.c b/src/editfns.c index bcff8f007d3..fe29bb8ae20 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -669,7 +669,7 @@ DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0, DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0, "Return the full name of the user logged in, as a string.\n\ If optional argument UID is an integer, return the full name of the user\n\ -with that uid, or \"unknown\" if there is no such user. +with that uid, or \"unknown\" if there is no such user.\n\ If UID is a string, return the full name of the user with that login\n\ name, or \"unknown\" if no such user could be found.") (uid)