Changeset 2824f79 for functions.c
- Timestamp:
- Jun 4, 2003, 10:03:07 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:
- 6a415e9
- Parents:
- 96f8e5b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r38cf544c r2824f79 2886 2886 } 2887 2887 2888 /* print the xterm escape sequence to raise the window */ 2888 2889 void owl_function_xterm_raise(void) 2889 2890 { … … 2891 2892 } 2892 2893 2894 /* print the xterm escape sequence to deiconify the window */ 2893 2895 void owl_function_xterm_deiconify(void) 2894 2896 { … … 2899 2901 * should be clever, and rewriting settings that will obviosly 2900 2902 * override earlier settings with 'set' 'bindkey' and 'alias' 2901 * commands. For now though we just append to the startupfile. 2903 * commands. For now though we just remove any line that would 2904 * duplicate this one and then append this line to the end of 2905 * startupfile. 2902 2906 */ 2903 2907 void owl_function_addstartup(char *buff) … … 2913 2917 return; 2914 2918 } 2919 2920 /* delete earlier copies */ 2921 owl_util_file_deleteline(filename, buff, 1); 2922 2923 /* add this line */ 2915 2924 fprintf(file, "%s\n", buff); 2925 2916 2926 fclose(file); 2917 2927 }
Note: See TracChangeset
for help on using the changeset viewer.