浏览代码

Fix to use cl-assert

master
10sr 6 年前
父节点
当前提交
dc3fdee407
签署人:: 10sr GPG 密钥 ID: 7BEC428194130EB2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      emacs.el

+ 2
- 2
emacs.el 查看文件

@@ -1853,7 +1853,7 @@ and search from projectile root (if projectile is available)."
(defun recently-write ()
"Write to file."
;; Failsafe to avoid purging all existing entries
(assert recently-list)
(cl-assert recently-list)
(with-temp-buffer
(prin1 recently-list
(current-buffer))
@@ -1895,7 +1895,7 @@ read."
if (string-match re path) return nil
finally return t)
(recently-reload)
(let* ((l (copy-list recently-list))
(let* ((l (cl-copy-list recently-list))
(l (delete path
l))
(l (cl-loop for e in l


正在加载...
取消
保存