Changeset 3232 for trunk/essentials/app-shells/bash
- Timestamp:
- Apr 29, 2007, 10:43:43 PM (19 years ago)
- Location:
- trunk/essentials/app-shells/bash
- Files:
-
- 7 edited
-
builtins/Makefile.in (modified) (1 diff)
-
findcmd.c (modified) (1 diff)
-
general.c (modified) (2 diffs)
-
jobs.c (modified) (2 diffs)
-
lib/readline/input.c (modified) (1 diff)
-
lib/readline/readline.c (modified) (2 diffs)
-
lib/sh/netconn.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/app-shells/bash/builtins/Makefile.in
r3228 r3232 211 211 212 212 psize.aux: psize.c 213 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -o $@ $(srcdir)/psize.c213 $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -o $@ $(srcdir)/psize.c 214 214 215 215 documentation: builtins.texi -
trunk/essentials/app-shells/bash/findcmd.c
r3231 r3232 235 235 int flags; 236 236 { 237 #if def __WIN32__237 #if2__ 238 238 char *res, *dotexe; 239 239 -
trunk/essentials/app-shells/bash/general.c
r3231 r3232 663 663 are handled OK by the `else' part of the if statement; an empty 664 664 string is returned in that case. */ 665 665 666 if (i && string[i] == ':') 666 667 i++; … … 668 669 for (start = i; string[i] && string[i] != ':'; i++) 669 670 ; 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 670 692 671 693 *p_index = i; -
trunk/essentials/app-shells/bash/jobs.c
r3231 r3232 32 32 #if defined (HAVE_UNISTD_H) 33 33 # include <unistd.h> 34 35 36 37 34 38 #endif 35 39 … … 1562 1566 map_over_jobs (print_job, format, -1); 1563 1567 } 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1564 1582 1565 1583 /* Fork, handling errors. Returns the pid of the newly made child, or 0. -
trunk/essentials/app-shells/bash/lib/readline/input.c
r3231 r3232 443 443 unsigned char c; 444 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 445 496 while (1) 446 497 { -
trunk/essentials/app-shells/bash/lib/readline/readline.c
r3231 r3232 172 172 and the attributes include `echo'. Look at rltty.c:prepare_terminal_settings 173 173 for the code that sets it. */ 174 175 176 174 177 int readline_echoing_p = 0; 178 175 179 176 180 /* Current prompt. */ … … 1088 1092 rl_bind_keyseq_if_unbound ("\033[H", rl_beg_of_line); 1089 1093 rl_bind_keyseq_if_unbound ("\033[F", rl_end_of_line); 1094 1095 1096 1090 1097 1091 1098 rl_bind_keyseq_if_unbound ("\033OA", rl_get_previous_history); -
trunk/essentials/app-shells/bash/lib/sh/netconn.c
r3231 r3232 39 39 #if defined (HAVE_SYS_SOCKET_H) && defined (HAVE_GETPEERNAME) && !defined (SVR4_2) 40 40 # include <sys/socket.h> 41 42 43 44 41 45 #endif 42 46
Note:
See TracChangeset
for help on using the changeset viewer.
