Changeset 58d47ca for functions.c
- Timestamp:
- Mar 29, 2010, 11:11:32 PM (13 years ago)
- Branches:
- master, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 98d296d
- Parents:
- 73eda8c
- git-author:
- Nelson Elhage <nelhage@ksplice.com> (03/19/10 17:02:20)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (03/29/10 23:11:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
rf25812b r58d47ca 283 283 284 284 /* create and setup the editwin */ 285 owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_MULTILINE, 286 owl_global_get_msg_history(&g)); 287 e = owl_global_get_typwin(&g); 285 e = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_MULTILINE, 286 owl_global_get_msg_history(&g)); 288 287 owl_editwin_set_dotsend(e); 289 288 s = owl_sprintf("----> %s\n", line); … … 1916 1915 owl_editwin *tw; 1917 1916 1918 owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g)); 1919 tw=owl_global_get_typwin(&g); 1917 tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g)); 1920 1918 1921 1919 owl_editwin_set_locktext(tw, "command: "); … … 1933 1931 owl_editwin *tw; 1934 1932 1935 owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g)); 1936 tw=owl_global_get_typwin(&g); 1933 tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g)); 1937 1934 1938 1935 owl_editwin_set_locktext(tw, line); … … 1948 1945 owl_editwin *tw; 1949 1946 1950 owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, NULL);1951 tw = owl_global_get_typwin(&g); 1947 tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, NULL); 1948 1952 1949 owl_editwin_set_echochar(tw, '*'); 1953 1950
Note: See TracChangeset
for help on using the changeset viewer.