]> git.eshelyaron.com Git - emacs.git/commitdiff
time-stamp: refactor for readability
authorStephen Gildea <stepheng+emacs@gildea.com>
Wed, 12 Mar 2025 13:48:55 +0000 (06:48 -0700)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 19:05:12 +0000 (20:05 +0100)
* lisp/time-stamp.el (time-stamp-string-preprocess): Move all of the
big 'while' loop to the end of the function, to better expose its
structure of iterating over the format string.

(cherry picked from commit 1bfbaacc056c23fa7c5c8741b6cdd43201e0a65f)

lisp/time-stamp.el

index 2e7bc0078e351698dbc43295fc3adf6063530af8..c448e4748fe4b5da396a25a7476d75bc24f11309 100644 (file)
@@ -531,18 +531,13 @@ time is used.  The time zone is determined by `time-stamp-time-zone'."
 Optional second argument TIME is only for testing.
 This is an internal routine implementing extensions to `format-time-string'
 and all `time-stamp-format' compatibility."
-  (let ((fmt-len (length format))
-       (ind 0)
-       cur-char
-       (result ""))
-    (while (< ind fmt-len)
-      (setq cur-char (aref format ind))
-      (setq
-       result
-       (concat
-        result
-        (cond
-         ((eq cur-char ?%)
+  (let*
+      ((fmt-len (length format))
+       (ind 0)
+       cur-char
+       (result "")
+       (handle-one-conversion
+        (lambda ()
          (let ((prev-char nil)
                (field-width "")
                field-result
@@ -779,7 +774,17 @@ and all `time-stamp-format' compatibility."
            (format (format "%%%s%c"
                            field-width
                            (if (numberp field-result) ?d ?s))
-                   (or field-result ""))))
+                    (or field-result "")))))) ;end of handle-one-conversion
+    ;; iterate over the format string
+    (while (< ind fmt-len)
+      (setq cur-char (aref format ind))
+      (setq
+       result
+       (concat
+        result
+        (cond
+         ((eq cur-char ?%)
+          (funcall handle-one-conversion))
          (t
          (char-to-string cur-char)))))
       (setq ind (1+ ind)))