Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed spacing: tab -> spaces |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
edc0f9d268257a92a0a075f96ea8526f |
User & Date: | jmcclure 2020-03-25 21:23:37 |
Context
2020-03-25
| ||
21:36 | Esc to quit; Fixed re-use of 'line' bug; Better error message w/o default bang check-in: 630e1c27e3 user: jmcclure tags: trunk | |
21:23 | Fixed spacing: tab -> spaces check-in: edc0f9d268 user: jmcclure tags: trunk | |
21:18 | Comment man page install for now ... until it's written check-in: 0e51a9e212 user: jmcclure tags: trunk | |
Changes
Changes to interrobang.c.
︙ | ︙ | |||
11 12 13 14 15 16 17 | #include <sys/wait.h> #include <X11/Xlib.h> #include <X11/keysym.h> #include <X11/Xft/Xft.h> #define MAX 1024 | | | | | | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #include <sys/wait.h> #include <X11/Xlib.h> #include <X11/keysym.h> #include <X11/Xft/Xft.h> #define MAX 1024 #define ENV_CHAR "iBangChar" #define ENV_BANG "iBangBang" #define ENV_ARGS "iBangArgs" #define ENV_LINE "iBangLine" #define ENV_LAST "iBangLast" #define ENV_TEMP "iBangTemp" #define ENV_TAB "iBangTabDir" #define ENV_RUN "iBangRunDir" typedef union { int i; unsigned int ui; float f; |
︙ | ︙ |