up vote 10 down vote favorite
1
share [g+] share [fb]

If you had two snippets:

(global-set-key "\C-d" delete-char)

and

(define-key global-map "\C-d" delete-char)

Is there a difference between the two? If so, when would you use one over the other?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

global-set-key is defined in subr.el as:

(define-key (current-global-map) key command))
link|improve this answer
feedback

Function global-set-key is an interactive function based on define-key which you can invoke by typing M-x global-set-key. Function define-key is rather used in Lisp programs.

You can look up global-set-key's source code with C-h f global-set-key to see that it only wraps define-key.

To answer your question, there are no significant differences between them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.