commit: ba99777727cb240af09e3e546c919d1704841c11
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 4 21:42:53 2017 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Mar 4 21:42:53 2017 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=ba997777
Reformat ebuild-mode-insert-skeleton.
ebuild-mode.el | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/ebuild-mode.el b/ebuild-mode.el
index 859257f..3e00080 100644
--- a/ebuild-mode.el
+++ b/ebuild-mode.el
@@ -471,9 +471,8 @@ and `all-completions' for details."
& "\n\n" | -5
;; inherited eclasses
"inherit "
- ((completing-read
- "Eclass (null string to terminate): "
- (mapcar 'list ebuild-mode-eclasses))
+ ((completing-read "Eclass (null string to terminate): "
+ (mapcar 'list ebuild-mode-eclasses))
str & " ")
& -1 & "\n\n" | -8
;; first variables block
@@ -489,9 +488,8 @@ and `all-completions' for details."
"\n"
;; second variables block
"LICENSE=\""
- ((completing-read
- "License (null string to terminate): "
- (mapcar 'list ebuild-mode-licenses))
+ ((completing-read "License (null string to terminate): "
+ (mapcar 'list ebuild-mode-licenses))
str & " ")
& -1 "\"\n"
"SLOT=\"0\"\n"
@@ -504,15 +502,13 @@ and `all-completions' for details."
str & " ")
& -1 "\"\n"
"IUSE=\""
- ((completing-read
- "USE flag (null string to terminate): "
- (mapcar 'list ebuild-mode-use-flags))
+ ((completing-read "USE flag (null string to terminate): "
+ (mapcar 'list ebuild-mode-use-flags))
str & " ")
& -1 & "\"\n" | -6
"RESTRICT=\""
- ((completing-read
- "RESTRICT (null string to terminate): "
- (mapcar 'list ebuild-mode-restrict-list))
+ ((completing-read "RESTRICT (null string to terminate): "
+ (mapcar 'list ebuild-mode-restrict-list))
str & " ")
& -1 & "\"\n" | -10
"\n"