Changeset ed88c8e in mainline for uspace/app
- Timestamp:
- 2018-05-29T13:25:07Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fc0b2a8
- Parents:
- a57fa32
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-28 17:24:17)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-29 13:25:07)
- Location:
- uspace/app
- Files:
-
- 4 edited
-
bdsh/cmds/modules/cat/cat.c (modified) (1 diff)
-
bdsh/cmds/modules/printf/printf.c (modified) (1 diff)
-
edit/edit.c (modified) (1 diff)
-
kio/kio.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cat/cat.c
ra57fa32 red88c8e 160 160 printf("%6u ", lineno); 161 161 } 162 put char(c);162 putwchar(c); 163 163 last_char_was_newline = c == '\n'; 164 164 if (paging_enabled) { -
uspace/app/bdsh/cmds/modules/printf/printf.c
ra57fa32 red88c8e 172 172 break; 173 173 } 174 put char(ch);174 putwchar(ch); 175 175 break; 176 176 177 177 emit: 178 put char(ch);178 putwchar(ch); 179 179 esc_flag = false; 180 180 } -
uspace/app/edit/edit.c
ra57fa32 red88c8e 671 671 default: 672 672 if (kev->c >= 32 && nc < max_len) { 673 put char(kev->c);673 putwchar(kev->c); 674 674 console_flush(con); 675 675 buffer[nc++] = kev->c; -
uspace/app/kio/kio.c
ra57fa32 red88c8e 122 122 123 123 for (size_t i = 0; i < item->length; i++) 124 put char(item->data[i]);124 putwchar(item->data[i]); 125 125 126 126 if (log != NULL) { 127 127 for (size_t i = 0; i < item->length; i++) 128 fput c(item->data[i], log);128 fputwc(item->data[i], log); 129 129 130 130 fflush(log);
Note:
See TracChangeset
for help on using the changeset viewer.
