diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-09 02:41:44 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-09 02:41:44 +0000 |
commit | ec27571e264f51e24273e202f1fd0a624e52bf71 (patch) | |
tree | 6c66e7b64d67414c04a4010b9f56a8076f96e2c7 | |
parent | a15c2c6aa862d8507db1e3b40899ad92dcc6a9cb (diff) | |
download | emacs-ec27571e264f51e24273e202f1fd0a624e52bf71.tar.gz |
(Fuser_full_name): Use build_string instead of make_string.
-rw-r--r-- | src/editfns.c | 4 |
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 @@ /* 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 @@ name, or \"unknown\" if no such user could be found.") 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. */ |