]> git.eshelyaron.com Git - emacs.git/commitdiff
(desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
authorEli Zaretskii <eliz@gnu.org>
Sun, 12 Jul 2009 19:41:55 +0000 (19:41 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 12 Jul 2009 19:41:55 +0000 (19:41 +0000)
lisp/ChangeLog
lisp/desktop.el

index 70bb8c953c850766a56605679fbebcf712e09e23..6ee98df2dc7e3285d78b92649f747bc57fc4eefe 100644 (file)
@@ -1,3 +1,7 @@
+2009-07-12  Eli Zaretskii  <eliz@gnu.org>
+
+       * desktop.el (desktop-buffers-not-to-save): Remove ".log". (Bug#3833)
+
 2009-07-12  Peter Jolly  <peter@jollys.org>  (tiny change)
 
        * arc-mode.el (archive-find-type): Allow for a PK00 string before
index 1085356b85f25d105b02ade130eb5a872691293c..aae6b97120277f098f960029036c8e49376057d1 100644 (file)
@@ -336,7 +336,7 @@ modes are restored automatically; they should not be listed here."
 ;; We skip .log files because they are normally temporary.
 ;;         (ftp) files because they require passwords and whatnot.
 (defcustom desktop-buffers-not-to-save
-  "\\(^nn\\.a[0-9]+\\|\\.log\\|(ftp)\\)$"
+  "\\(^nn\\.a[0-9]+\\|(ftp)\\)$"
   "Regexp identifying buffers that are to be excluded from saving."
   :type 'regexp
   :group 'desktop)