aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-05 09:47:59 +0000
committerGerd Moellmann2001-03-05 09:47:59 +0000
commit7a65c85c721b8d52fbdfbd5ca77357a93d41a417 (patch)
tree4cff1a9343bc31c3a6ba21b305ef7c321faa0ce1
parent203682cccc156eeb3412a93c08ce3da45ede2759 (diff)
downloademacs-7a65c85c721b8d52fbdfbd5ca77357a93d41a417.tar.gz
emacs-7a65c85c721b8d52fbdfbd5ca77357a93d41a417.zip
(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.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/progmodes/sql.el14
2 files changed, 18 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e15d8eafd3a..0727e4c9aca 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12001-03-05 Alex Schroeder <alex@gnu.org>
2
3 * sql.el (sql-sybase): Fix typo (was: query user about server two
4 times instead of server and database).
5
6 * sql.el (sql-sybase): Doc change.
7 (sql-mysql): Doc change.
8 (sql-postgres): Doc change.
9
12001-03-05 Kenichi Handa <handa@etl.go.jp> 102001-03-05 Kenichi Handa <handa@etl.go.jp>
2 11
3 * international/mule-conf.el (emacs-mule, raw-text): Docstring 12 * international/mule-conf.el (emacs-mule, raw-text): Docstring
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index b40b2c8929a..cc31a6dfb09 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -1,10 +1,10 @@
1;;; sql.el --- specialized comint.el for SQL interpreters 1;;; sql.el --- specialized comint.el for SQL interpreters
2 2
3;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. 3;; Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 4
5;; Author: Alex Schroeder <alex@gnu.org> 5;; Author: Alex Schroeder <alex@gnu.org>
6;; Maintainer: Alex Schroeder <alex@gnu.org> 6;; Maintainer: Alex Schroeder <alex@gnu.org>
7;; Version: 1.4.24 7;; Version: 1.4.25
8;; Keywords: comm languages processes 8;; Keywords: comm languages processes
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
@@ -1276,7 +1276,8 @@ If buffer exists and a process is running, just switch to buffer
1276 1276
1277Interpreter used comes from variable `sql-sybase-program'. Login uses 1277Interpreter used comes from variable `sql-sybase-program'. Login uses
1278the variables `sql-server', `sql-user', `sql-password', and 1278the variables `sql-server', `sql-user', `sql-password', and
1279`sql-database' as defaults, if set. 1279`sql-database' as defaults, if set. Additional command line parameters
1280can be stored in the list `sql-sybase-options'.
1280 1281
1281The buffer is put in sql-interactive-mode, giving commands for sending 1282The buffer is put in sql-interactive-mode, giving commands for sending
1282input. See `sql-interactive-mode'. 1283input. See `sql-interactive-mode'.
@@ -1292,7 +1293,7 @@ The default comes from `process-coding-system-alist' and
1292 (interactive) 1293 (interactive)
1293 (if (comint-check-proc "*SQL*") 1294 (if (comint-check-proc "*SQL*")
1294 (pop-to-buffer "*SQL*") 1295 (pop-to-buffer "*SQL*")
1295 (sql-get-login 'server 'user 'password 'server) 1296 (sql-get-login 'server 'user 'password 'database)
1296 (message "Login...") 1297 (message "Login...")
1297 ;; Put all parameters to the program (if defined) in a list and call 1298 ;; Put all parameters to the program (if defined) in a list and call
1298 ;; make-comint. 1299 ;; make-comint.
@@ -1369,7 +1370,8 @@ If buffer exists and a process is running, just switch to buffer
1369 1370
1370Interpreter used comes from variable `sql-mysql-program'. Login uses 1371Interpreter used comes from variable `sql-mysql-program'. Login uses
1371the variables `sql-user', `sql-password', `sql-database', and 1372the variables `sql-user', `sql-password', `sql-database', and
1372`sql-server' as defaults, if set. 1373`sql-server' as defaults, if set. Additional command line parameters
1374can be stored in the list `sql-mysql-options'.
1373 1375
1374The buffer is put in sql-interactive-mode, giving commands for sending 1376The buffer is put in sql-interactive-mode, giving commands for sending
1375input. See `sql-interactive-mode'. 1377input. See `sql-interactive-mode'.
@@ -1563,6 +1565,8 @@ If buffer exists and a process is running, just switch to buffer
1563 1565
1564Interpreter used comes from variable `sql-postgres-program'. Login uses 1566Interpreter used comes from variable `sql-postgres-program'. Login uses
1565the variables `sql-database' and `sql-server' as default, if set. 1567the variables `sql-database' and `sql-server' as default, if set.
1568Additional command line parameters can be stored in the list
1569`sql-postgres-options'.
1566 1570
1567The buffer is put in sql-interactive-mode, giving commands for sending 1571The buffer is put in sql-interactive-mode, giving commands for sending
1568input. See `sql-interactive-mode'. 1572input. See `sql-interactive-mode'.