aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-12-09 02:41:44 +0000
committerRichard M. Stallman1996-12-09 02:41:44 +0000
commitc9ac7fca83065ef676864a204fed9a3a412d4e89 (patch)
tree7bea1edb7b0c2bf2d2292ab7ae3643a0939a4da9
parenta8958813c2df4f5e9910ad050927b9ac7af93979 (diff)
downloademacs-c9ac7fca83065ef676864a204fed9a3a412d4e89.tar.gz
emacs-c9ac7fca83065ef676864a204fed9a3a412d4e89.zip
(Fuser_full_name): Use build_string instead of make_string.
-rw-r--r--src/editfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 72c32afa34e..2599dc9d5a1 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1,5 +1,5 @@
1/* Lisp functions pertaining to editing. 1/* Lisp functions pertaining to editing.
2 Copyright (C) 1985,86,87,89,93,94,95 Free Software Foundation, Inc. 2 Copyright (C) 1985,86,87,89,93,94,95,96 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -585,7 +585,7 @@ name, or \"unknown\" if no such user could be found.")
585 error ("Invalid UID specification"); 585 error ("Invalid UID specification");
586 586
587 if (!pw) 587 if (!pw)
588 return make_string ("unknown"); 588 return build_string ("unknown");
589 589
590 p = (unsigned char *) USER_FULL_NAME; 590 p = (unsigned char *) USER_FULL_NAME;
591 /* Chop off everything after the first comma. */ 591 /* Chop off everything after the first comma. */