diff options
Diffstat (limited to 'lisp/format.el')
-rw-r--r-- | lisp/format.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/format.el b/lisp/format.el index df3bc462c92..4209fc6401a 100644 --- a/lisp/format.el +++ b/lisp/format.el @@ -1,4 +1,4 @@ -;;; format.el --- read and save files in multiple formats +;;; format.el --- read and save files in multiple formats -*- lexical-binding: t; -*- ;; Copyright (C) 1994-1995, 1997, 1999, 2001-2021 Free Software ;; Foundation, Inc. @@ -419,7 +419,8 @@ If FORMAT is nil then do not do any format conversion." (file-name-nondirectory file))))) (list file fmt))) (let ((format-alist nil)) - (find-file filename)) + (with-suppressed-warnings ((interactive-only find-file)) + (find-file filename))) (if format (format-decode-buffer format))) |