---
>
> if( function[0] == '#' ) {
> /* skip comments */
> matched=TRUE;
> } else if ( function[0] == '*' ) {
> matched=TRUE;
> AddModConfig( eventp, w, tmp_win, context, taction, &Module);
> } else {
> while((!matched)&&(strlen(func_config[j].keyword)>0)) {
> if(mystrcasecmp(function,func_config[j].keyword)==0) {
> matched=TRUE;
> /* found key word */
> func_config[j].action(eventp,w,tmp_win,context,action, &Module);
> }
> else
> j++;
162,164c171
< else
< j++;
< }
---
> }
Only in fvwm: functions.c~
Only in fvwm: functions.o
Only in fvwm: fvwm.o
Only in fvwm: fvwm2
Only in fvwm: icons.o
Only in fvwm: menus.o
diff fvwm-dist/misc.h fvwm/misc.h
469a470,473
> void DestroyModConfig(XEvent *eventp,Window junk,FvwmWindow *tmp_win,
> unsigned long context, char *action,int* Module);
> void AddModConfig(XEvent *eventp,Window junk,FvwmWindow *tmp_win,
> unsigned long context, char *action,int* Module);
Only in fvwm: misc.h~
Only in fvwm: misc.o
Only in fvwm: module.o
Only in fvwm: move.o
Only in fvwm: placement.o
diff fvwm-dist/read.c fvwm/read.c
174a175,217
>
> void AddModConfig(XEvent *eventp,Window junk,FvwmWindow *tmp_win,
> unsigned long context, char *action,int* Module)
> /* interface function for AddToModList */
> {
> AddToModList( action );
> }
>
> /**************************************************************/
> /* delete from module configuration */
> /**************************************************************/
> void DestroyModConfig(XEvent *eventp,Window junk,FvwmWindow *tmp_win,
> unsigned long context, char *action,int* Module)
> {
> struct moduleInfoList *this, *that, *prev;
> char *info; /* info to be deleted - may contain wildcards */
> char *mi;
>
> action = GetNextToken(action,&info);
> if( info == NULL ) {
> return;
> }
>
> this = modlistroot;
> prev = NULL;
>
> while(this != NULL) {
> GetNextToken( this->data, &mi);
> that = this->next;
> if( matchWildcards(info, mi+1) ) {
> free(this->data);
> free(this);
> if( prev ) {
> prev->next = that;
> } else {
> modlistroot = that;
> }
> } else {
> prev = this;
> }
> this = that;
> }
> }
Only in fvwm: read.c~
Only in fvwm: read.o
Only in fvwm: resize.o
Only in fvwm: style.o
Only in fvwm: virtual.o
Only in fvwm: windows.o
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Toshi Isogai $_at_0k3-MxL@(J
-- I am an ASIC engineer, not a sick engineer --
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Wed Apr 17 1996 - 12:11:04 BST
This archive was generated by hypermail 2.3.0 : Mon Aug 29 2016 - 19:37:58 BST