diff -ruN bash-2.01/bashline.c bash-2.01-mj/bashline.c
--- bash-2.01/bashline.c	Tue Jun  3 17:14:09 1997
+++ bash-2.01-mj/bashline.c	Sun Jul 13 14:17:09 1997
@@ -300,6 +300,8 @@
   rl_filename_dequoting_function = bash_dequote_filename;
   rl_char_is_quoted_p = char_is_quoted;
 
+  rl_initialize ();
+
   if (posixly_correct)
     posix_readline_initialize (1);
 
diff -ruN bash-2.01/config.h.top bash-2.01-mj/config.h.top
--- bash-2.01/config.h.top	Thu Mar  6 17:38:39 1997
+++ bash-2.01-mj/config.h.top	Sun Jul 13 14:55:26 1997
@@ -34,14 +34,14 @@
 /* The default value of the PATH variable. */
 #ifndef DEFAULT_PATH_VALUE
 #define DEFAULT_PATH_VALUE \
-  "/usr/gnu/bin:/usr/local/bin:/usr/ucb:/bin:/usr/bin:."
+  "/bin:/usr/bin:/usr/local/bin"
 #endif
 
 /* The value for PATH when invoking `command -p'.  This is only used when
    the Posix.2 confstr () function, or CS_PATH define are not present. */
 #ifndef STANDARD_UTILS_PATH
 #define STANDARD_UTILS_PATH \
-  "/bin:/usr/bin:/usr/ucb:/sbin:/usr/sbin:/etc:/usr/etc"
+  "/bin:/usr/bin:/usr/local/bin"
 #endif
 
 /* Default primary and secondary prompt strings. */
@@ -49,7 +49,7 @@
 #define SPROMPT "> "
 
 /* System-wide .bashrc file for interactive shells. */
-/* #define SYS_BASHRC "/etc/bash.bashrc" */
+#define SYS_BASHRC "/etc/bashrc"
 
 /* System-wide .bash_logout for login shells. */
 /* #define SYS_BASH_LOGOUT "/etc/bash.bash_logout" */
diff -ruN bash-2.01/lib/readline/bind.c bash-2.01-mj/lib/readline/bind.c
--- bash-2.01/lib/readline/bind.c	Wed Apr  2 19:11:45 1997
+++ bash-2.01-mj/lib/readline/bind.c	Sun Jul 13 15:00:11 1997
@@ -590,7 +590,12 @@
       (file = open (openname, O_RDONLY, 0666)) < 0)
     {
       free (openname);
-      return (errno);
+#ifdef GLOBAL_INPUTRC
+      filename = GLOBAL_INPUTRC;
+      if ((stat (filename, &finfo) < 0) ||
+	  (file = open (filename, O_RDONLY, 0666)) < 0)
+#endif
+        return (errno);
     }
   else
     free (openname);
diff -ruN bash-2.01/lib/readline/rlconf.h bash-2.01-mj/lib/readline/rlconf.h
--- bash-2.01/lib/readline/rlconf.h	Sun Feb 26 21:41:49 1995
+++ bash-2.01-mj/lib/readline/rlconf.h	Sun Jul 13 14:16:29 1997
@@ -44,6 +44,9 @@
 /* The final, last-ditch effort file name for an init file. */
 #define DEFAULT_INPUTRC "~/.inputrc"
 
+/* Global inputrc (used when everything else fails) */
+#define GLOBAL_INPUTRC "/etc/inputrc"
+
 /* If defined, expand tabs to spaces. */
 #define DISPLAY_TABS
 

