Changeset 3c7d007a
- Timestamp:
- Nov 2, 2003, 12:06:02 AM (21 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 5a9f6fe
- Parents:
- 97cd00be
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
history.c
r12c35df r3c7d007a 54 54 55 55 /* if repeats are disallowed, check if the line is present already */ 56 for (i=0; i<size; i++) { 57 if (!strcmp(line, owl_list_get_element(&(h->hist), i))) return; 56 if (!h->repeats) { 57 for (i=0; i<size; i++) { 58 if (!strcmp(line, owl_list_get_element(&(h->hist), i))) return; 59 } 58 60 } 59 61 -
zephyr.c
r97cd00be r3c7d007a 220 220 #ifdef HAVE_LIBZEPHYR 221 221 ZSubscription_t subs[5]; 222 int ret;223 222 224 223 subs[0].zsub_class=class; … … 242 241 #ifdef HAVE_LIBZEPHYR 243 242 ZSubscription_t subs[5]; 244 int ret;245 243 246 244 subs[0].zsub_class=class;
Note: See TracChangeset
for help on using the changeset viewer.