change the name of the history file from .pdksh_hist to .ksh_history
authorgraichen <graichen@openbsd.org>
Sun, 29 Dec 1996 12:24:05 +0000 (12:24 +0000)
committergraichen <graichen@openbsd.org>
Sun, 29 Dec 1996 12:24:05 +0000 (12:24 +0000)
this way it is clearer where it comes from (pdksh is ksh in OpenBSD)
and it's more consistent with other shells (bash - .bash_history and i
think FreeBSD's sh also used something like .sh_history)

bin/ksh/history.c
bin/pdksh/history.c

index d1126f0..0ed6ee7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: history.c,v 1.1.1.1 1996/08/14 06:19:11 downsj Exp $  */
+/*     $OpenBSD: history.c,v 1.2 1996/12/29 12:24:05 graichen Exp $    */
 
 /*
  * command history
 #  ifndef HISTFILE
 #   ifdef OS2
 #    define HISTFILE "history.ksh"
-#   else /* OS2 */
+#   elif __OpenBSD__ /* OS2 */
+#    define HISTFILE ".ksh_history"
+#   else /* __OpenBSD__ */
 #    define HISTFILE ".pdksh_hist"
-#   endif /* OS2 */
+#   endif /* OS2 and __OpenBSD__ */
 #  endif
 
 # else
index d1126f0..0ed6ee7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: history.c,v 1.1.1.1 1996/08/14 06:19:11 downsj Exp $  */
+/*     $OpenBSD: history.c,v 1.2 1996/12/29 12:24:05 graichen Exp $    */
 
 /*
  * command history
 #  ifndef HISTFILE
 #   ifdef OS2
 #    define HISTFILE "history.ksh"
-#   else /* OS2 */
+#   elif __OpenBSD__ /* OS2 */
+#    define HISTFILE ".ksh_history"
+#   else /* __OpenBSD__ */
 #    define HISTFILE ".pdksh_hist"
-#   endif /* OS2 */
+#   endif /* OS2 and __OpenBSD__ */
 #  endif
 
 # else