diff options
| author | Anselm R Garbe <[email protected]> | 2009-12-05 16:52:53 +0000 |
|---|---|---|
| committer | Anselm R Garbe <[email protected]> | 2009-12-05 16:52:53 +0000 |
| commit | 7082ba1e1050664309de707bbc5b7194a53ed5ac (patch) | |
| tree | 0f1834563f47b9bde8ea43cfb3279a1cf3e49a30 | |
| parent | applied cursor, vertical and paste patches for upcoming 4.1 dmenu version (du... (diff) | |
| download | dmenu-7082ba1e1050664309de707bbc5b7194a53ed5ac.tar.gz dmenu-7082ba1e1050664309de707bbc5b7194a53ed5ac.tar.bz2 dmenu-7082ba1e1050664309de707bbc5b7194a53ed5ac.zip | |
this is only a temporary workaround, the command executed by -p must be configurable through some switch, that was the initial idea, just using sselp is too limited, I'll look into the other issues soon
| -rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c index be9b41b..1f7abca 100644 --- a/dmenu.c +++ b/dmenu.c @@ -466,7 +466,7 @@ kpress(XKeyEvent * e) { FILE *fp; char *c; if(!(fp = (FILE*)popen("sselp", "r"))) - fprintf(stderr, "dmenu: Could not popen sselp\n"); + eprint("dmenu: Could not popen sselp\n"); c = fgets(text + len, sizeof(text) - len, fp); pclose(fp); if(c == NULL) |