summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/psfed.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/psfed.c b/bin/psfed.c
index fb7de3b7..b51da092 100644
--- a/bin/psfed.c
+++ b/bin/psfed.c
@@ -239,7 +239,7 @@ static void drawBorder(uint32_t destX, uint32_t destY, uint32_t scale) {
 	}
 }
 
-enum { LF = '\n', ESC = '\33', DEL = '\177' };
+enum { LF = '\n', Esc = '\33', Del = '\177' };
 
 static enum {
 	Normal,
@@ -351,7 +351,7 @@ static void drawEdit(void) {
 
 static void inputEdit(char ch) {
 	switch (ch) {
-		break; case ESC: mode = Normal; frameClear();
+		break; case Esc: mode = Normal; frameClear();
 		break; case '-': if (edit.scale) edit.scale--; frameClear();
 		break; case '+': edit.scale++;
 		break; case 'h': if (edit.x) edit.x--;
@@ -446,8 +446,8 @@ static void drawPreview(void) {
 
 static void inputPreview(char ch) {
 	switch (ch) {
-		break; case ESC: mode = Normal; frameClear();
-		break; case DEL: {
+		break; case Esc: mode = Normal; frameClear();
+		break; case Del: {
 			if (preview.index) preview.index--;
 			preview.glyphs[preview.index] = 0;
 		}
075abe970306a79484dbaa9adfa97fef2d0&follow=1'>git: update to 1.8.2.2John Keeping 2013-04-17scan-tree: fix regression in section-from-path=-1John Keeping 2013-04-15t0001: ignore ".dirty" suffix on Git versionJohn Keeping 2013-04-15tests: set TEST_OUTPUT_DIRECTORY to the CGit test directoryJohn Keeping 2013-04-15t0109: test more URLsJohn Keeping 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld 2013-04-10t0109: chain operations with &&John Keeping 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer