From: Stephen Gildea Date: Wed, 12 Mar 2025 13:48:55 +0000 (-0700) Subject: time-stamp: refactor for readability X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ce8437e4e525e0372aaf7b3101814a2c54c78cdc;p=emacs.git time-stamp: refactor for readability * 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) --- diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el index 2e7bc0078e3..c448e4748fe 100644 --- a/lisp/time-stamp.el +++ b/lisp/time-stamp.el @@ -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)))