summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-11-14 16:58:43 +0100
committerDave Davenport <qball@gmpclient.org>2016-11-14 16:58:43 +0100
commitd22920fd5e63f3d0b35af8092fe1c7ffe3dcffca (patch)
tree4b0d3b308309f848151139614204da9f84f1851d
parent62879ee7392018f5dbfb4cfd04fc12266168b827 (diff)
Backspace->BackSpace
-rw-r--r--doc/help-output.txt4
-rw-r--r--doc/test_xr.txt4
-rw-r--r--source/helper.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/help-output.txt b/doc/help-output.txt
index d39e7965..44087d1a 100644
--- a/doc/help-output.txt
+++ b/doc/help-output.txt
@@ -155,13 +155,13 @@ Global options:
-kb-move-char-forward [string] Move forward one char
Right,Control+f (File)
-kb-remove-word-back [string] Delete previous word
- Control+Alt+h,Control+Backspace (File)
+ Control+Alt+h,Control+BackSpace (File)
-kb-remove-word-forward [string] Delete next word
Control+Alt+d (File)
-kb-remove-char-forward [string] Delete next char
Delete,Control+d (File)
-kb-remove-char-back [string] Delete previous char
- Backspace,Control+h (File)
+ BackSpace,Control+h (File)
-kb-remove-to-eol [string] Delete till the end of line
Control+k (File)
-kb-remove-to-sol [string] Delete till the start of line
diff --git a/doc/test_xr.txt b/doc/test_xr.txt
index 15cb9d3e..6d02580c 100644
--- a/doc/test_xr.txt
+++ b/doc/test_xr.txt
@@ -119,13 +119,13 @@ rofi.kb-move-char-back: Left,Control+b
! "Move forward one char" Set from: File
rofi.kb-move-char-forward: Right,Control+f
! "Delete previous word" Set from: File
-rofi.kb-remove-word-back: Control+Alt+h,Control+Backspace
+rofi.kb-remove-word-back: Control+Alt+h,Control+BackSpace
! "Delete next word" Set from: File
rofi.kb-remove-word-forward: Control+Alt+d
! "Delete next char" Set from: File
rofi.kb-remove-char-forward: Delete,Control+d
! "Delete previous char" Set from: File
-rofi.kb-remove-char-back: Backspace,Control+h
+rofi.kb-remove-char-back: BackSpace,Control+h
! "Delete till the end of line" Set from: File
rofi.kb-remove-to-eol: Control+k
! "Delete till the start of line" Set from: File
diff --git a/source/helper.c b/source/helper.c
index 8b324fab..e052e01e 100644
--- a/source/helper.c
+++ b/source/helper.c
@@ -425,7 +425,7 @@ int create_pid_file ( const char *pidfile )
int fd = g_open ( pidfile, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR );
if ( fd < 0 ) {
- fprintf ( stderr, "Failed to create pid file.\n" );
+ fprintf ( stderr, "Failed to create pid file: '%s'.\n", pidfile );
return -1;
}
// Set it to close the File Descriptor on exit.