From 7a65c85c721b8d52fbdfbd5ca77357a93d41a417 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 5 Mar 2001 09:47:59 +0000 Subject: [PATCH] (sql-sybase): Fix typo (was: query user about server two times instead of server and database). (sql-sybase): Doc change. (sql-mysql): Doc change. (sql-postgres): Doc change. --- lisp/ChangeLog | 9 +++++++++ lisp/progmodes/sql.el | 14 +++++++++----- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e15d8eafd3..0727e4c9ac 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2001-03-05 Alex Schroeder + + * sql.el (sql-sybase): Fix typo (was: query user about server two + times instead of server and database). + + * sql.el (sql-sybase): Doc change. + (sql-mysql): Doc change. + (sql-postgres): Doc change. + 2001-03-05 Kenichi Handa * international/mule-conf.el (emacs-mule, raw-text): Docstring diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index b40b2c8929..cc31a6dfb0 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el @@ -1,10 +1,10 @@ ;;; sql.el --- specialized comint.el for SQL interpreters -;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. ;; Author: Alex Schroeder ;; Maintainer: Alex Schroeder -;; Version: 1.4.24 +;; Version: 1.4.25 ;; Keywords: comm languages processes ;; This file is part of GNU Emacs. @@ -1276,7 +1276,8 @@ If buffer exists and a process is running, just switch to buffer Interpreter used comes from variable `sql-sybase-program'. Login uses the variables `sql-server', `sql-user', `sql-password', and -`sql-database' as defaults, if set. +`sql-database' as defaults, if set. Additional command line parameters +can be stored in the list `sql-sybase-options'. The buffer is put in sql-interactive-mode, giving commands for sending input. See `sql-interactive-mode'. @@ -1292,7 +1293,7 @@ The default comes from `process-coding-system-alist' and (interactive) (if (comint-check-proc "*SQL*") (pop-to-buffer "*SQL*") - (sql-get-login 'server 'user 'password 'server) + (sql-get-login 'server 'user 'password 'database) (message "Login...") ;; Put all parameters to the program (if defined) in a list and call ;; make-comint. @@ -1369,7 +1370,8 @@ If buffer exists and a process is running, just switch to buffer Interpreter used comes from variable `sql-mysql-program'. Login uses the variables `sql-user', `sql-password', `sql-database', and -`sql-server' as defaults, if set. +`sql-server' as defaults, if set. Additional command line parameters +can be stored in the list `sql-mysql-options'. The buffer is put in sql-interactive-mode, giving commands for sending input. See `sql-interactive-mode'. @@ -1563,6 +1565,8 @@ If buffer exists and a process is running, just switch to buffer Interpreter used comes from variable `sql-postgres-program'. Login uses the variables `sql-database' and `sql-server' as default, if set. +Additional command line parameters can be stored in the list +`sql-postgres-options'. The buffer is put in sql-interactive-mode, giving commands for sending input. See `sql-interactive-mode'. -- 2.20.1