]> code.delx.au - gnu-emacs/commitdiff
* editfns.c (Fuser_full_name): Replace the only use of
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 16 Jul 2008 07:01:36 +0000 (07:01 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 16 Jul 2008 07:01:36 +0000 (07:01 +0000)
USER_FULL_NAME with its value.
* config.in: Regenerate.

* configure.in (freebsd, kfreebsd): Undo part of previous change.
(USER_FULL_NAME): Remove, not used anymore.
* configure: Regenerate.

ChangeLog
configure
configure.in
src/ChangeLog
src/config.in
src/editfns.c

index ed0e15ac1347b31fc96c5b4195142211eb9d2b40..8276008f2d7137988b12403f8d169db45b465a8e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * configure.in (freebsd, kfreebsd): Undo part of previous change.
+       (USER_FULL_NAME): Remove, not used anymore.
+       * configure: Regenerate.
+
 2008-07-15  Adrian Robert <Adrian.B.Robert@gmail.com>
 
        Changes and additions for NeXTstep windowing system (Cocoa and
index 54ece25cda982eebf4db0f553ec1d057f7d67d9b..bb726499e2c49969dc4e86736bfad11b6615bc93 100755 (executable)
--- a/configure
+++ b/configure
@@ -2405,17 +2405,17 @@ machine='' opsys='' unported=no
 case "${canonical}" in
 
   ## FreeBSD ports
-  *-*-*freebsd* )
+  *-*-freebsd* )
     opsys=freebsd
     case "${canonical}" in
       alpha*-*-freebsd*)       machine=alpha ;;
       arm*-*-freebsd*)          machine=arm ;;
       ia64-*-freebsd*)         machine=ia64 ;;
-      sparc-*-freebsd*)         machine=sparc ;;
+      sparc-*-freebsd*)                machine=sparc ;;
       sparc64-*-freebsd*)      machine=sparc ;;
       powerpc-*-freebsd*)      machine=macppc ;;
       i[3456]86-*-freebsd*)    machine=intel386 ;;
-      amd64-*-freebsd*|x86_64-*-*freebsd*) machine=amdx86-64 ;;
+      amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;;
     esac
   ;;
 
@@ -16933,7 +16933,6 @@ cat >>conftest.$ac_ext <<_ACEOF
 # endif
 #endif
 
-#include <limits.h>
 #include <stdlib.h>
 
 #ifdef HAVE_UNISTD_H
@@ -17082,15 +17081,12 @@ main ()
      isn't worth using anyway.  */
   alarm (60);
 
-  for (;;)
-    {
-      t = (time_t_max << 1) + 1;
-      if (t <= time_t_max)
-       break;
-      time_t_max = t;
-    }
-  time_t_min = - ((time_t) ~ (time_t) 0 == (time_t) -1) - time_t_max;
-
+  for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
+    continue;
+  time_t_max--;
+  if ((time_t) -1 < 0)
+    for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
+      continue;
   delta = time_t_max / 997; /* a suitable prime number */
   for (i = 0; i < N_STRINGS; i++)
     {
@@ -17105,12 +17101,10 @@ main ()
             && mktime_test ((time_t) (60 * 60 * 24))))
        return 1;
 
-      for (j = 1; ; j <<= 1)
+      for (j = 1; 0 < j; j *= 2)
        if (! bigtime_test (j))
          return 1;
-       else if (INT_MAX / 2 < j)
-         break;
-      if (! bigtime_test (INT_MAX))
+      if (! bigtime_test (j - 1))
        return 1;
     }
   return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ());
index 92d617c0b303113d0621a7c77a86ed04eb9c05fc..aedf5295f697e56b4102daecbd4e843a34e4bdb7 100644 (file)
@@ -294,7 +294,7 @@ machine='' opsys='' unported=no
 case "${canonical}" in
 
   ## FreeBSD ports
-  *-*-*freebsd* )
+  *-*-freebsd* )
     opsys=freebsd
     case "${canonical}" in
       alpha*-*-freebsd*)       machine=alpha ;;
@@ -304,7 +304,7 @@ case "${canonical}" in
       sparc64-*-freebsd*)      machine=sparc ;;
       powerpc-*-freebsd*)      machine=macppc ;;
       i[3456]86-*-freebsd*)    machine=intel386 ;;
-      amd64-*-freebsd*|x86_64-*-*freebsd*) machine=amdx86-64 ;;
+      amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;;
     esac
   ;;
 
@@ -2610,17 +2610,6 @@ AH_BOTTOM([
 #undef MAC_OS
 #undef MAC_OSX
 
-/* Define USER_FULL_NAME to return a string
-   that is the user's full name.
-   It can assume that the variable `pw'
-   points to the password file entry for this user.
-
-   At some sites, the pw_gecos field contains
-   the user's full name.  If neither this nor any other
-   field contains the right thing, use pw_name,
-   giving the user's login name, since that is better than nothing.  */
-#define USER_FULL_NAME pw->pw_gecos
-
 /* Define AMPERSAND_FULL_NAME if you use the convention
    that & in the full name stands for the login id.  */
 /* Turned on June 1996 supposing nobody will mind it.  */
index 5a71765c29b07cbb014d2ef5b6297cf15d3d3ad1..491931820eca93dabcc84fd48daf1b9e634ca170 100644 (file)
@@ -1,3 +1,9 @@
+2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * editfns.c (Fuser_full_name): Replace the only use of
+       USER_FULL_NAME with its value.
+       * config.in: Regenerate.
+
 2008-07-16  David Reitter <david.reitter@gmail.com>
 
        * Makefile.in: add ns-win, ns-carbon-compat, easy-mmode and
index 714d1d44f80ba6101888ec5f46b9b2fec09e46e3..94750388c249ccc95c78d03b9cabd213dc860bd7 100644 (file)
@@ -1001,17 +1001,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #undef MAC_OS
 #undef MAC_OSX
 
-/* Define USER_FULL_NAME to return a string
-   that is the user's full name.
-   It can assume that the variable `pw'
-   points to the password file entry for this user.
-
-   At some sites, the pw_gecos field contains
-   the user's full name.  If neither this nor any other
-   field contains the right thing, use pw_name,
-   giving the user's login name, since that is better than nothing.  */
-#define USER_FULL_NAME pw->pw_gecos
-
 /* Define AMPERSAND_FULL_NAME if you use the convention
    that & in the full name stands for the login id.  */
 /* Turned on June 1996 supposing nobody will mind it.  */
index 0487ecf47074575091adc1c40763f9a230ee354f..71973cec91423027931d127ba72c497d599cb6ba 100644 (file)
@@ -1370,7 +1370,7 @@ name, or nil if there is no such user.  */)
   if (!pw)
     return Qnil;
 
-  p = (unsigned char *) USER_FULL_NAME;
+  p = (unsigned char *) pw->pw_gecos;
   /* Chop off everything after the first comma. */
   q = (unsigned char *) index (p, ',');
   full = make_string (p, q ? q - p : strlen (p));