mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-01 20:30:28 +02:00
* script.c (scm_compile_shell_switches): Bugfix: Don't discount i
from argc if argc was 0 initially.
This commit is contained in:
parent
90ff3ec5f6
commit
28795b1f48
2 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,17 @@
|
||||||
|
1998-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
|
||||||
|
|
||||||
|
* Makefile.am (BUILT_SOURCES): Added cpp_err_symbols.c,
|
||||||
|
cpp_sig_symbols.c, libpath.h and versiondat.h to BUILT_SOURCES
|
||||||
|
(libpath.h, versiondat.h): Replaced dependency on Makefile with
|
||||||
|
dependencies on $(srcdir)/Makefile.in
|
||||||
|
$(top_builddir)/config.status in order to avoid circularity.
|
||||||
|
|
||||||
|
* script.c (scm_compile_shell_switches): Bugfix: Don't discount i
|
||||||
|
from argc if argc was 0 initially.
|
||||||
|
|
||||||
|
* Makefile.am (Makefile.am): Replaced THREAD_LIBS --> GUILE_LIBS
|
||||||
|
in generation of libpath.h.
|
||||||
|
|
||||||
1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
|
1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
|
||||||
|
|
||||||
* Makefile.am (libguile_la_LDFLAGS): Bumped version number of
|
* Makefile.am (libguile_la_LDFLAGS): Bumped version number of
|
||||||
|
|
|
@ -591,7 +591,7 @@ scm_compile_shell_switches (int argc, char **argv)
|
||||||
|
|
||||||
/* Make any remaining arguments available to the
|
/* Make any remaining arguments available to the
|
||||||
script/command/whatever. */
|
script/command/whatever. */
|
||||||
scm_set_program_arguments (argc - i, argv + i, argv0);
|
scm_set_program_arguments (argc ? argc - i : 0, argv + i, argv0);
|
||||||
|
|
||||||
/* If the --emacs switch was set, now is when we process it. */
|
/* If the --emacs switch was set, now is when we process it. */
|
||||||
scm_sysintern ("use-emacs-interface",
|
scm_sysintern ("use-emacs-interface",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue