We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7552abf commit d0fa1f0Copy full SHA for d0fa1f0
1 file changed
exec-path-from-shell.el
@@ -147,8 +147,8 @@ The default value denotes an interactive login shell."
147
(defmacro exec-path-from-shell--warn-duration (&rest body)
148
"Evaluate BODY and warn if execution duration exceeds a time limit.
149
The limit is given by `exec-path-from-shell-warn-duration-millis'."
150
- (let ((start-time (cl-gensym))
151
- (duration-millis (cl-gensym)))
+ (let ((start-time (gensym))
+ (duration-millis (gensym)))
152
`(let ((,start-time (current-time)))
153
(prog1
154
(progn ,@body)
0 commit comments