Changeset 65a9870


Ignore:
Timestamp:
Sep 2, 2009, 10:23:27 PM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
4df918b
Parents:
ffd50fe
Message:
Remove trailing ; from BIND_{CMD,FNV} definitions.

These macros are designed to be used like function calls, so the trailing
; should be mandatory at the call site. In addition, add a ; at the one
call site that lacked one.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • keys.c

    rffd50fe r65a9870  
    22
    33#define BIND_CMD(kpress, command, desc) \
    4          owl_keymap_create_binding(km, kpress, command, NULL, desc);
     4         owl_keymap_create_binding(km, kpress, command, NULL, desc)
    55
    66#define BIND_FNV(kpress, fn, desc) \
    7          owl_keymap_create_binding(km, kpress, NULL, fn, desc);
     7         owl_keymap_create_binding(km, kpress, NULL, fn, desc)
    88
    99
     
    177177
    178178  BIND_CMD("b",           "popless:scroll-up-page", "");
    179   BIND_CMD("PPAGE",       "popless:scroll-up-page", "")
     179  BIND_CMD("PPAGE",       "popless:scroll-up-page", "");
    180180  BIND_CMD("M-p",         "popless:scroll-up-page", "");
    181181  BIND_CMD("M-v",         "popless:scroll-up-page", "");
Note: See TracChangeset for help on using the changeset viewer.