From 97bac2112e7b4332834900863810370a57e38fbe Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 4 Apr 2014 16:19:35 +0300 Subject: src/keyboard.c: Fix a typo in a comment to read_char. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/keyboard.c') diff --git a/src/keyboard.c b/src/keyboard.c index 038ce6ea601..20e75822fd3 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2377,7 +2377,7 @@ read_decoded_event_from_main_queue (struct timespec *end_time, -2 means do neither. 1 means do both. */ -/* The arguments MAP is for menu prompting. MAP is a keymap. +/* The argument MAP is a keymap for menu prompting. PREV_EVENT is the previous input event, or nil if we are reading the first event of a key sequence (or not reading a key sequence). -- cgit v1.2.1 From 50ea0f87d6e13642ae3851e3516a5e716a39584b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 5 Apr 2014 11:33:55 -0700 Subject: Minor doc updates related to dribble files * doc/emacs/trouble.texi (Checklist): * doc/lispref/os.texi (Recording Input): Dribble files may contain passwords. * lisp/help.el (view-lossage): Doc tweak. * src/keyboard.c (Fopen_dribble_file): Doc tweak. --- src/keyboard.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/keyboard.c') diff --git a/src/keyboard.c b/src/keyboard.c index 20e75822fd3..3b50140684e 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1,7 +1,6 @@ /* Keyboard and mouse input; editor command loop. -Copyright (C) 1985-1989, 1993-1997, 1999-2014 Free Software Foundation, -Inc. +Copyright (C) 1985-1989, 1993-1997, 1999-2014 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -10071,7 +10070,10 @@ DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, "FOpen dribble file: ", doc: /* Start writing all keyboard characters to a dribble file called FILE. If FILE is nil, close any open dribble file. -The file will be closed when Emacs exits. */) +The file will be closed when Emacs exits. + +Be aware that this records ALL characters you type! +This may include sensitive information such as passwords. */) (Lisp_Object file) { if (dribble) -- cgit v1.2.1