Japanese translation of message catalog for Sawfish Window-Manager
Revision | 7e991bb55347d206f8e8c50468d25a2ebe58d6b8 (tree) |
---|---|
Zeit | 1999-08-02 22:43:40 |
Autor | john <john> |
Commiter | john |
(rep_dl_init): if ignored-window-names or sticky-window-names are void,
set them to nil before consing on the gnome window names
@@ -204,6 +204,11 @@ rep_dl_init(repv file_name) | ||
204 | 204 | rep_INTERN(sticky_window_names); |
205 | 205 | rep_INTERN(ignored); |
206 | 206 | |
207 | + if (rep_VOIDP(rep_SYM(Qignored_window_names))->value) | |
208 | + rep_SYM(Qignored_window_names)->value = Qnil; | |
209 | + if (rep_VOIDP(rep_SYM(Qsticky_window_names))->value) | |
210 | + rep_SYM(Qsticky_window_names)->value = Qnil; | |
211 | + | |
207 | 212 | rep_SYM(Qignored_window_names)->value |
208 | 213 | = Fcons (rep_VAL(&gnome_windows), |
209 | 214 | rep_SYM(Qignored_window_names)->value); |