diff options
| author | Karl Heuer | 1999-06-15 05:30:07 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-06-15 05:30:07 +0000 |
| commit | 016c8f3fc1f619bbeb0af79b36d9c67d559c8b7a (patch) | |
| tree | 4f6d13bbfc9a3c2d198a99c0bdc64ed3bd3d2620 /src | |
| parent | 1bcf34b6924f722c689e4bdc43e9c21d80f9c857 (diff) | |
| download | emacs-016c8f3fc1f619bbeb0af79b36d9c67d559c8b7a.tar.gz emacs-016c8f3fc1f619bbeb0af79b36d9c67d559c8b7a.zip | |
(Fuser_full_name): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index 6599f23bae2..0812fb9b87e 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -732,10 +732,13 @@ DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0, | |||
| 732 | 732 | ||
| 733 | DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0, | 733 | DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0, |
| 734 | "Return the full name of the user logged in, as a string.\n\ | 734 | "Return the full name of the user logged in, as a string.\n\ |
| 735 | If the full name corresponding to Emacs's userid is not known,\n\ | ||
| 736 | return \"unknown\".\n\ | ||
| 737 | \n\ | ||
| 735 | If optional argument UID is an integer, return the full name of the user\n\ | 738 | If optional argument UID is an integer, return the full name of the user\n\ |
| 736 | with that uid, or \"unknown\" if there is no such user.\n\ | 739 | with that uid, or nil if there is no such user.\n\ |
| 737 | If UID is a string, return the full name of the user with that login\n\ | 740 | If UID is a string, return the full name of the user with that login\n\ |
| 738 | name, or \"unknown\" if no such user could be found.") | 741 | name, or nil if there is no such user.") |
| 739 | (uid) | 742 | (uid) |
| 740 | Lisp_Object uid; | 743 | Lisp_Object uid; |
| 741 | { | 744 | { |