[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
33/37: emacs: Return nil instead of "" in completing readers.
From: |
Alex Kost |
Subject: |
33/37: emacs: Return nil instead of "" in completing readers. |
Date: |
Fri, 18 Dec 2015 18:51:35 +0000 |
alezost pushed a commit to branch wip-refactor-emacs-ui
in repository guix.
commit 25b5ee273ccc037eba9ce28f1df4473ae8f95123
Author: Alex Kost <address@hidden>
Date: Fri Dec 11 12:36:56 2015 +0300
emacs: Return nil instead of "" in completing readers.
* emacs/guix-utils.el (guix-completing-read): New procedure.
(guix-define-readers): Use it.
---
emacs/guix-utils.el | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/emacs/guix-utils.el b/emacs/guix-utils.el
index a67d0e7..a8942f6 100644
--- a/emacs/guix-utils.el
+++ b/emacs/guix-utils.el
@@ -212,6 +212,15 @@ If NO-MESSAGE? is non-nil, do not display a message about
it."
See also `guix-copy-as-kill'."
(guix-copy-as-kill (guix-command-string args) no-message?))
+(defun guix-completing-read (prompt table &optional predicate
+ require-match initial-input
+ hist def inherit-input-method)
+ "Same as `completing-read' but return nil instead of an empty string."
+ (let ((res (completing-read prompt table predicate
+ require-match initial-input
+ hist def inherit-input-method)))
+ (unless (string= "" res) res)))
+
(defun guix-completing-read-multiple (prompt table &optional predicate
require-match initial-input
hist def inherit-input-method)
@@ -458,7 +467,7 @@ keywords are available:
`(defvar ,completions-var nil))
,(when single-reader
- `(guix-define-reader ,single-reader completing-read
+ `(guix-define-reader ,single-reader guix-completing-read
,completions ,single-prompt))
,(when multiple-reader
- 25/37: emacs: info: Buttonize package name heading., (continued)
- 25/37: emacs: info: Buttonize package name heading., Alex Kost, 2015/12/18
- 21/37: emacs: Split 'guix-root-map' keymap., Alex Kost, 2015/12/18
- 22/37: emacs: Generalize buffer redisplaying., Alex Kost, 2015/12/18
- 18/37: emacs: info: Split 'guix-info-format' variable., Alex Kost, 2015/12/18
- 23/37: emacs: Generalize buffer reverting., Alex Kost, 2015/12/18
- 27/37: emacs: info: Get rid of syntactic fontification., Alex Kost, 2015/12/18
- 17/37: emacs: Factorize macros for defining interfaces., Alex Kost, 2015/12/18
- 31/37: emacs: Add 'list-single' variables., Alex Kost, 2015/12/18
- 29/37: emacs: Reorganize 'readers' code., Alex Kost, 2015/12/18
- 32/37: emacs: Add 'guix-list-get-display-entries'., Alex Kost, 2015/12/18
- 33/37: emacs: Return nil instead of "" in completing readers.,
Alex Kost <=
- 37/37: emacs: Use "B" key to display latest builds in package list., Alex Kost, 2015/12/18
- 26/37: emacs: Generalize buffer naming., Alex Kost, 2015/12/18
- 35/37: emacs: Add 'guix-ui-read-profile'., Alex Kost, 2015/12/18
- 34/37: emacs: Add hierarchy of customization groups., Alex Kost, 2015/12/18
- 16/37: emacs: info: Generalize inserting and formatting., Alex Kost, 2015/12/18
- 36/37: emacs: Add Hydra interface., Alex Kost, 2015/12/18
- 28/37: emacs: Generalize buffer interface., Alex Kost, 2015/12/18
- 30/37: emacs: Reorganize package/generation UI code., Alex Kost, 2015/12/18