From 52bfd419bf9022726048f818d955b8ea10a16d5c Mon Sep 17 00:00:00 2001 From: Patrick Mosby Date: Mon, 7 Sep 2015 09:05:56 +0200 Subject: [PATCH] Don't save undo file for ignored files. This fixes #4. --- undohist.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/undohist.el b/undohist.el index b184a26..de60356 100644 --- a/undohist.el +++ b/undohist.el @@ -164,7 +164,8 @@ To use undohist, you just call this function." undohist-ignored-files))) (defun undohist-save-1 () - (when (consp buffer-undo-list) + (when (and (consp buffer-undo-list) + (undohist-recover-file-p (buffer-file-name (current-buffer)))) (let ((file (make-undohist-file-name (buffer-file-name))) (contents `((digest . ,(md5 (current-buffer))) (undo-list . ,(undohist-encode buffer-undo-list))))) -- 2.21.0 >Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/doc/images
AgeCommit message (Expand)Author
2020-05-22doc: Update 'Bootstrapping' for further binary seed reduction....* doc/images/gcc-core-mesboot0-graph.dot: New image, replacing * doc/images/gcc-mesboot0-bag-graph.dot: ... remove file. * doc/local.mk (DOT_FILES): Update for new image file. * doc/guix.texi (Reduced Binary Seed Bootstrap): Use it in updated description of further reduction of the trusted computing base. Jan Nieuwenhuizen
2019-03-14Merge branch 'staging' into core-updatesMarius Bakke
2019-03-13doc: Document the graphical installer some more....* doc/guix.texi (Preparing for Installation): Rewrite to specify the two installation modes. (Guided Graphical Installation): New node. (Manual Installation): New node, with the former sections. (After System Installation): New node. * doc/images/installer-network.png, doc/images/installer-partitions.png, doc/images/installer-resume.png: New files. * doc/local.mk (dist_infoimage_DATA): Add them. Ludovic Courtès