changeset 16648:912ff9d36bb1

(Fuser_full_name): Use build_string instead of make_string.
author Richard M. Stallman <rms@gnu.org>
date Mon, 09 Dec 1996 02:41:44 +0000
parents fa79e7cb58d4
children 8a01398a26e6
files src/editfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/editfns.c	Mon Dec 09 02:29:24 1996 +0000
+++ b/src/editfns.c	Mon Dec 09 02:41:44 1996 +0000
@@ -1,5 +1,5 @@
 /* Lisp functions pertaining to editing.
-   Copyright (C) 1985,86,87,89,93,94,95 Free Software Foundation, Inc.
+   Copyright (C) 1985,86,87,89,93,94,95,96 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -585,7 +585,7 @@
     error ("Invalid UID specification");
 
   if (!pw)
-    return make_string ("unknown");
+    return build_string ("unknown");
   
   p = (unsigned char *) USER_FULL_NAME;
   /* Chop off everything after the first comma. */