Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
4135e34
)
small fix of static function order
author
Anselm R. Garbe <
[email protected]
>
Sat, 4 Aug 2007 08:57:56 +0000
(10:57 +0200)
committer
Anselm R. Garbe <
[email protected]
>
Sat, 4 Aug 2007 08:57:56 +0000
(10:57 +0200)
layout.c
diff
|
blob
|
history
diff --git
a/layout.c
b/layout.c
index
fa7b4eb
..
b475d35
100644
(file)
--- a/
layout.c
+++ b/
layout.c
@@
-13,24
+13,6
@@
static double vratio = VRATIO;
static unsigned int nlayouts = 0;
static unsigned int nmaster = NMASTER;
static unsigned int nlayouts = 0;
static unsigned int nmaster = NMASTER;
-static void
-incratio(const char *arg, double *ratio, double def) {
- double delta;
-
- if(lt->arrange != tile)
- return;
- if(!arg)
- *ratio = def;
- else {
- if(1 == sscanf(arg, "%lf", &delta)) {
- if(delta + (*ratio) < .1 || delta + (*ratio) > 1.9)
- return;
- *ratio += delta;
- }
- }
- lt->arrange();
-}
-
static double /* simple pow() */
spow(double x, double y)
{
static double /* simple pow() */
spow(double x, double y)
{
@@
-110,6
+92,24
@@
tile(void) {
LAYOUTS
LAYOUTS
+static void
+incratio(const char *arg, double *ratio, double def) {
+ double delta;
+
+ if(lt->arrange != tile)
+ return;
+ if(!arg)
+ *ratio = def;
+ else {
+ if(1 == sscanf(arg, "%lf", &delta)) {
+ if(delta + (*ratio) < .1 || delta + (*ratio) > 1.9)
+ return;
+ *ratio += delta;
+ }
+ }
+ lt->arrange();
+}
+
/* extern */
void
/* extern */
void