]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fcurrent_time_zone): Accept spaces in timezone
authorGerd Moellmann <gerd@gnu.org>
Thu, 5 Apr 2001 14:04:44 +0000 (14:04 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 5 Apr 2001 14:04:44 +0000 (14:04 +0000)
names.

src/editfns.c

index 11ad0080d4f62890725fa08e4eccedebb035747d..2c443ca5d240df63acbad0ec7b2fa1e56f501e95 100644 (file)
@@ -1767,7 +1767,7 @@ the data it can't find.")
          /* On Japanese w32, we can get a Japanese string as time
             zone name.  Don't accept that.  */
          char *p;
-         for (p = s; *p && isalnum (*p); ++p)
+         for (p = s; *p && (isalnum (*p) || *p == ' '); ++p)
            ;
          if (p == s || *p)
            s = NULL;