diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-12-18 21:24:16 +0900 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-12-21 10:54:09 +0100 |
commit | 4b33a74138740101042c31bef304b8ba35e81126 (patch) | |
tree | a2e7bd4c02b0dada9e0fd39654a2e0b99673ba9c /gnu/packages/patches | |
parent | 39c676c4a3507863f4edf20b225ace4cbf646ed6 (diff) | |
download | gnu-guix-4b33a74138740101042c31bef304b8ba35e81126.tar gnu-guix-4b33a74138740101042c31bef304b8ba35e81126.tar.gz |
gnu: Add emacs-wordnut.
* gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add previous file.
* gnu/packages/emacs.scm (emacs-wordnut): New package.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch b/gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch new file mode 100644 index 0000000000..be10254c33 --- /dev/null +++ b/gnu/packages/patches/emacs-wordnut-require-adaptive-wrap.patch @@ -0,0 +1,20 @@ +Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com> + +This patch forces the use of adaptive-wrap. This feature is optional but we +prefer to enable it by default. + +diff --git a/wordnut.el b/wordnut.el +index 0ae86ad..72f9221 100644 +--- a/wordnut.el ++++ b/wordnut.el +@@ -4,6 +4,7 @@ + (require 'subr-x) + (require 'outline) + (require 'imenu) ++(require 'adaptive-wrap) + + (require 'wordnut-history) + +-- +2.17.1 + |