summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-03-16 00:33:34 +0000
committersabetts <sabetts>2006-03-16 00:33:34 +0000
commit9cb1a3d51b8cba35ef443c64b5b1d99fa8d33ae6 (patch)
treec6b2230a429ae887eed80487d1833c1eec129447 /src/frame.c
parent0ad6d8b36f975c43f37b0ad07112c2cd31003417 (diff)
downloadratpoison-9cb1a3d51b8cba35ef443c64b5b1d99fa8d33ae6.zip
remove tabs and trailing whitespace.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/frame.c b/src/frame.c
index 2d6c4f3..d101588 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -7,12 +7,12 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
- *
+ *
* ratpoison is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
@@ -171,15 +171,15 @@ frame_dump (rp_frame *frame)
win = find_window_number (frame->win_number);
s = sbuf_new (0);
- sbuf_printf (s, "(frame :number %d :x %d :y %d :width %d :height %d :window %ld :last-access %d :dedicated %d)",
- frame->number,
- frame->x,
- frame->y,
- frame->width,
- frame->height,
- win ? win->w:0,
- frame->last_access,
- frame->dedicated);
+ sbuf_printf (s, "(frame :number %d :x %d :y %d :width %d :height %d :window %ld :last-access %d :dedicated %d)",
+ frame->number,
+ frame->x,
+ frame->y,
+ frame->width,
+ frame->height,
+ win ? win->w:0,
+ frame->last_access,
+ frame->dedicated);
/* Extract the string and return it, and don't forget to free s. */
tmp = sbuf_get (s);
@@ -203,7 +203,7 @@ frame_read (char *str)
init_frame(f);
PRINT_DEBUG(("parsing '%s'\n", str));
-
+
dup = xstrdup(str);
tmp = strtok (dup, " ");
@@ -220,25 +220,25 @@ frame_read (char *str)
while (tmp)
{
if (!strcmp(tmp, ":number"))
- read_slot(f->number);
+ read_slot(f->number);
else if (!strcmp(tmp, ":x"))
- read_slot(f->x);
+ read_slot(f->x);
else if (!strcmp(tmp, ":y"))
- read_slot(f->y);
+ read_slot(f->y);
else if (!strcmp(tmp, ":width"))
- read_slot(f->width);
+ read_slot(f->width);
else if (!strcmp(tmp, ":height"))
- read_slot(f->height);
+ read_slot(f->height);
else if (!strcmp(tmp, ":window"))
- read_slot(w);
+ read_slot(w);
else if (!strcmp(tmp, ":last-access"))
- read_slot(f->last_access);
+ read_slot(f->last_access);
else if (!strcmp(tmp, ":dedicated"))
- read_slot(f->dedicated);
+ read_slot(f->dedicated);
else if (!strcmp(tmp, ")"))
- break;
+ break;
else
- PRINT_ERROR(("Unknown slot %s\n", tmp));
+ PRINT_ERROR(("Unknown slot %s\n", tmp));
/* Read the next token. */
tmp = strtok(NULL, " ");
}