diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/keyboard.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index efc2956dd9d..06280ccad88 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * keyboard.c (Fopen_dribble_file): Document when the file is | ||
| 4 | closed (bug#8056). | ||
| 5 | |||
| 1 | 2011-07-14 Adam Sjøgren <asjo@koldfront.dk> | 6 | 2011-07-14 Adam Sjøgren <asjo@koldfront.dk> |
| 2 | 7 | ||
| 3 | * data.c (car, cdr): add functionality hints to documentation. | 8 | * data.c (car, cdr): add functionality hints to documentation. |
diff --git a/src/keyboard.c b/src/keyboard.c index 16300e6154c..a6fa90163c5 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10643,7 +10643,8 @@ DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0, | |||
| 10643 | DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, | 10643 | DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, |
| 10644 | "FOpen dribble file: ", | 10644 | "FOpen dribble file: ", |
| 10645 | doc: /* Start writing all keyboard characters to a dribble file called FILE. | 10645 | doc: /* Start writing all keyboard characters to a dribble file called FILE. |
| 10646 | If FILE is nil, close any open dribble file. */) | 10646 | If FILE is nil, close any open dribble file. |
| 10647 | The file will be closed when Emacs exits. */) | ||
| 10647 | (Lisp_Object file) | 10648 | (Lisp_Object file) |
| 10648 | { | 10649 | { |
| 10649 | if (dribble) | 10650 | if (dribble) |