File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,8 @@ Optional argument ARGS adviced function arguments."
389
389
(defun dashboard-insert-startupify-lists ()
390
390
" Insert the list of widgets into the buffer."
391
391
(interactive )
392
- (let ((recentf-is-on (recentf-enabled-p ))
392
+ (let ((inhibit-redisplay t )
393
+ (recentf-is-on (recentf-enabled-p ))
393
394
(origial-recentf-list recentf-list)
394
395
(dashboard-num-recents (or (cdr (assoc 'recents dashboard-items)) 0 ))
395
396
(max-line-length 0 ))
@@ -428,7 +429,7 @@ Optional argument ARGS adviced function arguments."
428
429
(save-excursion
429
430
(dolist (start dashboard--section-starts)
430
431
(goto-char start)
431
- (backward- delete-char 1 ) ; delete the newline we added previously
432
+ (delete-char - 1 ) ; delete the newline we added previously
432
433
(insert dashboard-page-separator)))
433
434
(dashboard-insert-footer)
434
435
(goto-char (point-min ))
You can’t perform that action at this time.
0 commit comments