diff options
| author | Karl Heuer | 1999-06-17 05:35:21 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-06-17 05:35:21 +0000 |
| commit | 9ef73b91a0dd625ff753d1e57e3909cfbe9448af (patch) | |
| tree | 6ab9e84968491370951ca08be94ee0e214e9389e | |
| parent | b5da410a36da023a9c68aa00fc4a579e9198d3d8 (diff) | |
| download | emacs-9ef73b91a0dd625ff753d1e57e3909cfbe9448af.tar.gz emacs-9ef73b91a0dd625ff753d1e57e3909cfbe9448af.zip | |
(sql-input-ring-file-name): Doc fix.
| -rw-r--r-- | lisp/progmodes/sql.el | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index f1e66cbbd38..c83435e3146 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el | |||
| @@ -2,9 +2,9 @@ | |||
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1998, 1999 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1998, 1999 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Alex Schroeder <alex@gnu.org> | 5 | ;; Author: Alex Schroeder <a.schroeder@bsiag.ch> |
| 6 | ;; Maintainer: Alex Schroeder <alex@gnu.org> | 6 | ;; Maintainer: Alex Schroeder <a.schroeder@bsiag.ch> |
| 7 | ;; Version: 1.4.2 | 7 | ;; Version: 1.4.5 |
| 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. |
| @@ -161,6 +161,12 @@ buffer is shown using `display-buffer'." | |||
| 161 | (defcustom sql-input-ring-file-name nil | 161 | (defcustom sql-input-ring-file-name nil |
| 162 | "*If non-nil, name of the file to read/write input history. | 162 | "*If non-nil, name of the file to read/write input history. |
| 163 | 163 | ||
| 164 | You have to set this variable if you want the history of your commands | ||
| 165 | saved from one Emacs session to the next. If this variable is set, | ||
| 166 | exiting the SQL interpreter in an SQLi buffer will write the input | ||
| 167 | history to the specified file. Starting a new process in a SQLi buffer | ||
| 168 | will read the input history from the specified file. | ||
| 169 | |||
| 164 | This is used to locally set `comint-input-ring-file-name' when reading | 170 | This is used to locally set `comint-input-ring-file-name' when reading |
| 165 | or writing the input history." | 171 | or writing the input history." |
| 166 | :type '(choice (const :tag "none" nil) | 172 | :type '(choice (const :tag "none" nil) |