summaryrefslogtreecommitdiff
path: root/lib/strftime.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2024-05-18 09:33:03 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2024-05-18 10:23:50 -0700
commit08550d058f028e0819ba6a72e9a53c0bc789257e (patch)
treeb8968c3ec0179e4ce1d57a55f90bf2dfc08bb121 /lib/strftime.c
parentc9af2fab9221d3793e0b9cd4dd376f9f16099a26 (diff)
downloademacs-08550d058f028e0819ba6a72e9a53c0bc789257e.tar.gz
emacs-08550d058f028e0819ba6a72e9a53c0bc789257e.tar.bz2
emacs-08550d058f028e0819ba6a72e9a53c0bc789257e.zip
Update from Gnulib by running admin/merge-gnulib
Diffstat (limited to 'lib/strftime.c')
-rw-r--r--lib/strftime.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index 9b205e48023..834f3a79f46 100644
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -143,11 +143,11 @@ extern char *tzname[];
enum pad_style
{
- ZERO_PAD, /* (default) Pad with 0 unless format says otherwise. */
- ALWAYS_ZERO_PAD, /* '0' Always pad with 0. */
- SIGN_PAD, /* '+' Always output a sign. */
- SPACE_PAD, /* '_' Pad with space. */
- NO_PAD /* '-' Do not pad. */
+ ZERO_PAD, /* (default) Pad with 0 unless format says otherwise. */
+ ALWAYS_ZERO_PAD, /* '0' Always pad with 0. */
+ SIGN_PAD, /* '+' Always output a sign. */
+ SPACE_PAD, /* '_' Pad with space. */
+ NO_PAD /* '-' Do not pad. */
};
#define TM_YEAR_BASE 1900