]> git.eshelyaron.com Git - emacs.git/commitdiff
time-stamp: optimize resource use
authorStephen Gildea <stepheng+emacs@gildea.com>
Wed, 12 Mar 2025 14:02:44 +0000 (07:02 -0700)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 19:05:13 +0000 (20:05 +0100)
* lisp/time-stamp.el (time-stamp-string-preprocess): Replace
n-squared string 'concat' with linear list 'push'.

(cherry picked from commit 6ab65281c54a1fcef90786f9d50142e3427781fb)

lisp/time-stamp.el

index c448e4748fe4b5da396a25a7476d75bc24f11309..43b9f1a0c5d9a13cfa27093304b6c6d1d9546011 100644 (file)
@@ -535,7 +535,7 @@ and all `time-stamp-format' compatibility."
       ((fmt-len (length format))
        (ind 0)
        cur-char
-       (result "")
+       (result nil)
        (handle-one-conversion
         (lambda ()
          (let ((prev-char nil)
@@ -778,17 +778,13 @@ and all `time-stamp-format' compatibility."
     ;; 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)))))
+      (push (cond ((eq cur-char ?%)
+                   (funcall handle-one-conversion))
+                  (t
+                   (char-to-string cur-char)))
+            result)
       (setq ind (1+ ind)))
-    result))
+    (apply #'concat (nreverse result))))
 
 (defun time-stamp-do-letter-case (change-is-downcase
                                   upcase title-case change-case text)