From a0583bd6534ebb3a6b5567ffc698fdd139f36f97 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sat, 8 Mar 2025 14:00:42 +0100 Subject: [PATCH] Use lisp-data-mode in recentf-save-file * lisp/recentf.el (recentf-save-file-header): Add cookie to use lisp-data-mode in recentf-save-file. (cherry picked from commit a6523599f985eae5f884834bf15bd714c1cf557b) --- lisp/recentf.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/recentf.el b/lisp/recentf.el index ea2a066f920..339ba13a3ce 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -1329,7 +1329,7 @@ Optional argument N must be a valid digit number. It defaults to 1. ;;; Save/load/cleanup the recent list ;; (defconst recentf-save-file-header - ";;; Automatically generated by `recentf' on %s.\n" + ";;; Automatically generated by `recentf' on %s. -*- mode: lisp-data -*-\n" "Header to be written into the `recentf-save-file'.") (defconst recentf-save-file-coding-system @@ -1357,7 +1357,7 @@ Write data into the file specified by `recentf-save-file'." (point-max) (expand-file-name recentf-save-file) nil (unless (or (called-interactively-p 'interactive) - recentf-show-messages) + recentf-show-messages) 'quiet)) (when recentf-save-file-modes (set-file-modes recentf-save-file recentf-save-file-modes)) -- 2.39.5