diff options
| author | Glenn Morris | 2010-12-09 19:36:46 -0800 |
|---|---|---|
| committer | Glenn Morris | 2010-12-09 19:36:46 -0800 |
| commit | ab540f5976d1eb02751c766946ee64e5bbccadd9 (patch) | |
| tree | 81ec38ef7770b6585ac0a2bab13c78f7bf10f558 | |
| parent | b596d50dbf5a413d18ca5c3ed737718594e00e4d (diff) | |
| download | emacs-ab540f5976d1eb02751c766946ee64e5bbccadd9.tar.gz emacs-ab540f5976d1eb02751c766946ee64e5bbccadd9.zip | |
* lisp/comint.el (comint-input-ring-file-name): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/comint.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c8d157b4d43..f41e96d371a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-12-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * comint.el (comint-input-ring-file-name): Doc fix. | ||
| 4 | |||
| 1 | 2010-12-09 Eli Zaretskii <eliz@gnu.org> | 5 | 2010-12-09 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p): | 7 | * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p): |
diff --git a/lisp/comint.el b/lisp/comint.el index 2d03d1679ae..b4d06cefafb 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -244,8 +244,8 @@ This variable is buffer-local." | |||
| 244 | (defcustom comint-input-ring-file-name nil | 244 | (defcustom comint-input-ring-file-name nil |
| 245 | "If non-nil, name of the file to read/write input history. | 245 | "If non-nil, name of the file to read/write input history. |
| 246 | See also `comint-read-input-ring' and `comint-write-input-ring'. | 246 | See also `comint-read-input-ring' and `comint-write-input-ring'. |
| 247 | 247 | `comint-mode' makes this a buffer-local variable. You probably want | |
| 248 | This variable is buffer-local, and is a good thing to set in mode hooks." | 248 | to set this in a mode hook, rather than customize the default value." |
| 249 | :type '(choice (const :tag "nil" nil) | 249 | :type '(choice (const :tag "nil" nil) |
| 250 | file) | 250 | file) |
| 251 | :group 'comint) | 251 | :group 'comint) |