diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-10-09 20:46:02 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-10-09 20:46:02 +0200 |
commit | 09a5d52abf492c170c071aa3962135d661aba15e (patch) | |
tree | 3c0c43930ba30ceb2a38417e83039da6d9b9328f /fb.in | |
parent | 19d205a8dae7f7bc1e6a8dc8177804417b0b2fa6 (diff) |
Move internal variables further down
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'fb.in')
-rw-r--r-- | fb.in | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -10,18 +10,8 @@ # Optional dependency: xclip #---------------------------------------------------- -VERSION="@VERSION@" - -DELETE= -EXTENSION="" -GET= -TAR= -COMPRESS=0 -DISPLAYHISTORY= PASTEBIN="http://paste.xinu.at" WARNSIZE=10485760 -CLIPBOARD="" -EXITCODE=0 LIBDIR="@LIBDIR@" # the calling conventions for stat(1) are highly system dependent @@ -38,6 +28,16 @@ case "`uname -s`" in ;; esac +VERSION="@VERSION@" +DELETE= +EXTENSION="" +GET= +TAR= +COMPRESS=0 +DISPLAYHISTORY= +CLIPBOARD="" +EXITCODE=0 + base64_encode() { if type base64 2>&1 >/dev/null; then printf "%s" "$1" | base64 |