Browse Source

Refactor

master
10sr 6 years ago
parent
commit
48bcce6f89
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      emacs.el

+ 3
- 3
emacs.el View File

@@ -2035,14 +2035,14 @@ Return that buffer."
collect e))
(l (cons path
l))
(l (recently-truncate l
recently-max)))
(l (recently--truncate l
recently-max)))
(unless (equal recently-list
l)
(setq recently-list l)
(recently-write)))))

(defun recently-truncate (list len)
(defun recently--truncate (list len)
"Truncate LIST to LEN."
(if (> (length list)
len)


Loading…
Cancel
Save