bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#22107: 25.1; Wrong docstring for this-single-command-keys


From: Artur Malabarba
Subject: bug#22107: 25.1; Wrong docstring for this-single-command-keys
Date: Mon, 7 Dec 2015 15:42:39 +0000

The docstring says:

Unlike ‘this-command-keys’, this function’s value
does not include prefix arguments.

However, the function ‘this-command-keys’ also does not seem to return prefix arguments. I tested this by evaluating the following code and then typing C-u C-F3. (the output is just [C-f3])


(defun bababa ()
  (interactive)
  (message "%s" (this-command-keys)))

(global-set-key (kbd "C-<f3>") #'bababa)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]