diff options
| author | Gerd Moellmann | 2001-03-05 09:47:59 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-03-05 09:47:59 +0000 |
| commit | 7a65c85c721b8d52fbdfbd5ca77357a93d41a417 (patch) | |
| tree | 4cff1a9343bc31c3a6ba21b305ef7c321faa0ce1 | |
| parent | 203682cccc156eeb3412a93c08ce3da45ede2759 (diff) | |
| download | emacs-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/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/progmodes/sql.el | 14 |
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 @@ | |||
| 1 | 2001-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 | |||
| 1 | 2001-03-05 Kenichi Handa <handa@etl.go.jp> | 10 | 2001-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 | ||
| 1277 | Interpreter used comes from variable `sql-sybase-program'. Login uses | 1277 | Interpreter used comes from variable `sql-sybase-program'. Login uses |
| 1278 | the variables `sql-server', `sql-user', `sql-password', and | 1278 | the 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 |
| 1280 | can be stored in the list `sql-sybase-options'. | ||
| 1280 | 1281 | ||
| 1281 | The buffer is put in sql-interactive-mode, giving commands for sending | 1282 | The buffer is put in sql-interactive-mode, giving commands for sending |
| 1282 | input. See `sql-interactive-mode'. | 1283 | input. 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 | ||
| 1370 | Interpreter used comes from variable `sql-mysql-program'. Login uses | 1371 | Interpreter used comes from variable `sql-mysql-program'. Login uses |
| 1371 | the variables `sql-user', `sql-password', `sql-database', and | 1372 | the 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 |
| 1374 | can be stored in the list `sql-mysql-options'. | ||
| 1373 | 1375 | ||
| 1374 | The buffer is put in sql-interactive-mode, giving commands for sending | 1376 | The buffer is put in sql-interactive-mode, giving commands for sending |
| 1375 | input. See `sql-interactive-mode'. | 1377 | input. See `sql-interactive-mode'. |
| @@ -1563,6 +1565,8 @@ If buffer exists and a process is running, just switch to buffer | |||
| 1563 | 1565 | ||
| 1564 | Interpreter used comes from variable `sql-postgres-program'. Login uses | 1566 | Interpreter used comes from variable `sql-postgres-program'. Login uses |
| 1565 | the variables `sql-database' and `sql-server' as default, if set. | 1567 | the variables `sql-database' and `sql-server' as default, if set. |
| 1568 | Additional command line parameters can be stored in the list | ||
| 1569 | `sql-postgres-options'. | ||
| 1566 | 1570 | ||
| 1567 | The buffer is put in sql-interactive-mode, giving commands for sending | 1571 | The buffer is put in sql-interactive-mode, giving commands for sending |
| 1568 | input. See `sql-interactive-mode'. | 1572 | input. See `sql-interactive-mode'. |