aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 486a217c766..459674a9802 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -78,6 +78,11 @@ Optional argument PROMPT specifies a string to use to prompt the user."
78 (interactive) 78 (interactive)
79 (ding)) 79 (ding))
80 80
81;; Some programs still use this as a function.
82(defun baud-rate ()
83 "Obsolete function returning the value of the `baud-rate' variable."
84 baud-rate)
85
81;Prevent the \{...} documentation construct 86;Prevent the \{...} documentation construct
82;from mentioning keys that run this command. 87;from mentioning keys that run this command.
83(put 'undefined 'suppress-keymap t) 88(put 'undefined 'suppress-keymap t)