annotate CVSROOT/modules @ 427:b0e2ba7c46c5

For message boxes that have icons, increase the size of the text area (and hence the complete window) by the width of the icon. In dw_mle_export(), force the return value to be NULL in case passed window is "invalid". For dw_mle_export() under GTK 1.2, reduce the number endpoint by 1. This is so that the "bytes" return value from dw_mle_query() can be passed in directly.
author mhessling@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 26 May 2003 07:39:38 +0000
parents ce3ec30c0d4c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1 # Three different line formats are valid:
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2 # key -a aliases...
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3 # key [options] directory
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4 # key [options] directory files...
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
5 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
6 # Where "options" are composed of:
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
7 # -i prog Run "prog" on "cvs commit" from top-level of module.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
8 # -o prog Run "prog" on "cvs checkout" of module.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
9 # -e prog Run "prog" on "cvs export" of module.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
10 # -t prog Run "prog" on "cvs rtag" of module.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
11 # -u prog Run "prog" on "cvs update" of module.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
12 # -d dir Place module in directory "dir" instead of module name.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
13 # -l Top-level directory only -- do not recurse.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
14 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
15 # NOTE: If you change any of the "Run" options above, you'll have to
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
16 # release and re-checkout any working directories of these modules.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
17 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
18 # And "directory" is a path to a directory relative to $CVSROOT.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
19 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
20 # The "-a" option specifies an alias. An alias is interpreted as if
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
21 # everything on the right of the "-a" had been typed on the command line.
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
22 #
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
23 # You can encode a module within a module by using the special '&'
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
24 # character to interpose another module into the current module. This
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
25 # can be useful for creating a module that consists of many directories
ce3ec30c0d4c initial checkin
ktk@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
26 # spread out over the entire source repository.