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?
|
|
If you had two snippets:
and
Is there a difference between the two? If so, when would you use one over the other?
|
||
|
|
|
|
global-set-key is defined in subr.el as:
|
||
|
|
|
|
Function You can look up To answer your question, there are no significant differences between them. |
|||
|
|