10sr 5 anos atrás
pai
commit
a5307bfd12
Acessado por: 10sr ID da chave GPG: 7BEC428194130EB2
1 arquivos alterados com 6 adições e 6 exclusões
  1. +6
    -6
      emacs.el

+ 6
- 6
emacs.el Ver arquivo

@@ -1834,12 +1834,12 @@ This mode is a simplified version of `adoc-mode'."


(defun recently-truncate (list len) (defun recently-truncate (list len)
"Truncate LIST to LEN." "Truncate LIST to LEN."
(when (> (length list)
len)
(setq list
(cl-subseq list
0
len))))
(if (> (length list)
len)
(cl-subseq list
0
len)
list))


(defun recently-find-file-hook () (defun recently-find-file-hook ()
"Add current file." "Add current file."


Carregando…
Cancelar
Salvar