Mercurial > emacs
changeset 33500:d813f12dc2df
(texinfo-insert-@uref): Renamed from
texinfo-insert-@url.
(texinfo-insert-@url): A defalias for texinfo-insert-@uref.
(texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 15 Nov 2000 13:56:10 +0000 |
parents | 178c626ccf39 |
children | 25964345d5d5 |
files | lisp/textmodes/texinfo.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/texinfo.el Wed Nov 15 13:37:16 2000 +0000 +++ b/lisp/textmodes/texinfo.el Wed Nov 15 13:56:10 2000 +0000 @@ -398,10 +398,9 @@ (define-key texinfo-mode-map "\C-c\C-c\C-e" 'texinfo-insert-@emph) (define-key texinfo-mode-map "\C-c\C-cv" 'texinfo-insert-@var) - (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@url) + (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@uref) (define-key texinfo-mode-map "\C-c\C-ct" 'texinfo-insert-@table) (define-key texinfo-mode-map "\C-c\C-cs" 'texinfo-insert-@samp) - ;; (define-key texinfo-mode-map "\C-c\C-cr" 'texinfo-insert-@uref) (define-key texinfo-mode-map "\C-c\C-cq" 'texinfo-insert-@quotation) (define-key texinfo-mode-map "\C-c\C-co" 'texinfo-insert-@noindent) (define-key texinfo-mode-map "\C-c\C-cn" 'texinfo-insert-@node) @@ -822,12 +821,13 @@ (interactive "P") (texinfo-insert-@-with-arg "var" arg)) -(defun texinfo-insert-@url (&optional arg) +(defun texinfo-insert-@uref (&optional arg) "Insert a `@url{}' command in a Texinfo buffer. A numeric argument says how many words the braces should surround. The default is not to surround any existing words with the braces." (interactive "P") - (texinfo-insert-@-with-arg "url" arg)) + (texinfo-insert-@-with-arg "uref" arg)) +(defalias 'texinfo-insert-@url 'texinfo-insert-@uref) ;;; Texinfo file structure