This website works better with JavaScript.
Home
Explore
Help
Sign In
10sr
/
dotfiles-mirror
mirror of
https://github.com/10sr/dotfiles.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fix
master
10sr
6 years ago
parent
bd56debc5e
commit
a5307bfd12
Signed by:
10sr
GPG Key ID:
7BEC428194130EB2
1 changed files
with
6 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-6
emacs.el
+ 6
- 6
emacs.el
View File
@@ -1834,12 +1834,12 @@ This mode is a simplified version of `adoc-mode'."
(defun recently-truncate (list len)
"Truncate LIST to LEN."
(
when
(> (length list)
len)
(se
t
q list
(cl-subseq list
0
len))
))
(
if
(> (length list)
len)
(
cl-sub
seq list
0
len)
list
))
(defun recently-find-file-hook ()
"Add current file."
Write
Preview
Loading…
Cancel
Save