Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Needs reference to a definition of NULL now using new Makefile
I'm not sure how it got away with it before? |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | manualheaven |
Files: | files | file ages | folders |
SHA3-256: |
10c900ef1db21094ea7815b5c6995955 |
User & Date: | base@atomicules.co.uk 2014-05-15 22:16:40 |
Context
2014-05-15
| ||
22:18 |
Remove file that isn't used anyway
Just never knew that until moved away from autohell Leaf check-in: 29163ef9b2 user: base@atomicules.co.uk tags: manualheaven, trunk | |
22:16 |
Needs reference to a definition of NULL now using new Makefile
I'm not sure how it got away with it before? check-in: 10c900ef1d user: base@atomicules.co.uk tags: manualheaven, trunk | |
22:13 |
Add (initial) Makefile and config.mk in suckless style
Based on the config.mk and Makefile from suckless's sic actually. The | |
Changes
Changes to help.h.
︙ | ︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef HELP_H #define HELP_H static char *help[] = { " ? help\n", " q/Q quit\n", " ^L refresh windows\n", "\n", " arrows / j,k scroll list\n", | > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef HELP_H #define HELP_H #include <stdio.h> static char *help[] = { " ? help\n", " q/Q quit\n", " ^L refresh windows\n", "\n", " arrows / j,k scroll list\n", |
︙ | ︙ |