diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-11-26 19:32:34 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-11-26 19:32:34 +0100 |
commit | 665bbcae09168c39c73117e04c5f14d09e25b50c (patch) | |
tree | 7f49401e0ee6b9fed693e764fb1e96a7801f2115 /debian/patches/0170-typo.patch | |
parent | a67d929a8725f0a0ee722bd49f698602d33b6a77 (diff) |
Rename and refresh the patches
Diffstat (limited to 'debian/patches/0170-typo.patch')
-rw-r--r-- | debian/patches/0170-typo.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/debian/patches/0170-typo.patch b/debian/patches/0170-typo.patch new file mode 100644 index 0000000..8864cd7 --- /dev/null +++ b/debian/patches/0170-typo.patch @@ -0,0 +1,41 @@ +Description: correct some typos in source +Author: Jörg Frings-Fürst <debian@jff-webhosting.net> +Forwarded: not-needed +Last-Update: 2014-10-17 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/src/xsane-text.h +=================================================================== +--- trunk.orig/src/xsane-text.h ++++ trunk/src/xsane-text.h +@@ -854,7 +854,7 @@ The format of [DEVICE] is backendname:de + -n, --no-mode-selection disable menu for XSane mode selection\n\ + \n\ + -F, --Fixed fixed main window size (overwrite preferences value)\n\ +- -R, --Resizeable resizable, scrolled main window (overwrite preferences value)\n\ ++ -R, --Resizable resizable, scrolled main window (overwrite preferences value)\n\ + \n\ + -p, --print-filenames print image filenames created by XSane\n\ + -N, --force-filename name force filename and disable user filename selection\n\ +Index: trunk/src/xsane.c +=================================================================== +--- trunk.orig/src/xsane.c ++++ trunk/src/xsane.c +@@ -67,7 +67,7 @@ struct option long_options[] = + #endif + {"no-mode-selection", no_argument, 0, 'n'}, + {"Fixed", no_argument, 0, 'F'}, +- {"Resizeable", no_argument, 0, 'R'}, ++ {"Resizable", no_argument, 0, 'R'}, + {"print-filenames", no_argument, 0, 'p'}, + {"force-filename", required_argument, 0, 'N'}, + {0, } +@@ -5787,7 +5787,7 @@ static int xsane_init(int argc, char **a + xsane.main_window_fixed = 1; + break; + +- case 'R': /* --Resizeable */ ++ case 'R': /* --Resizable */ + xsane.main_window_fixed = 0; + break; + |