[hackers] [sites] removed misleading example diff || anselm

From: <hg_AT_suckless.org>
Date: Sun, 16 Aug 2009 10:54:20 +0000 (UTC)

changeset: 140:8d53a09afa59
user: anselm_AT_x200s.config
date: Sun Jul 12 14:14:21 2009 +0100
files: www.suckless.org/common/index.md
description:
removed misleading example diff

diff -r b99c6c6cfd94 -r 8d53a09afa59 www.suckless.org/common/index.md
--- a/www.suckless.org/common/index.md Sun Jul 12 14:12:47 2009 +0100
+++ b/www.suckless.org/common/index.md Sun Jul 12 14:14:21 2009 +0100
@@ -1,32 +1,6 @@
 SUCK LESS PHILOSOPHY
 ====================
 
-Our philosophy exemplified, dwm-1.0 vs dwm-5.1
-----------------------------------------------
- @@ -1,17 +1,7 @@
- void
- -tag(Arg *arg)
- -{
- - unsigned int i;
- -
- - if(!sel)
- - return;
- -
- - for(i = 0; i < ntags; i++)
- - sel->tags[i] = False;
- - sel->tags[arg->i] = True;
- - settitle(sel);
- - if(!isvisible(sel))
- - arrange(NULL);
- - else
- - drawstatus();
- +tag(const Arg *arg) {
- + if(sel && arg->ui & TAGMASK) {
- + sel->tags = arg->ui & TAGMASK;
- + arrange();
- + }
- }
-
 Many (open source) hackers are proud if they achieve large amounts of code,
 because they believe the more lines of code they've written, the more progress
 they have made. The more progress they have made, the more skilled they are.
Received on Sun Aug 16 2009 - 10:54:20 UTC

This archive was generated by hypermail 2.2.0 : Sun Aug 16 2009 - 14:20:05 UTC