aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2000-11-15 13:57:50 +0000
committerEli Zaretskii2000-11-15 13:57:50 +0000
commit4fb0a34c57f249ade1e8be09c1c9cd54523846b6 (patch)
treec58d6c65d6b0edd0318c7ae3efdfa302cbe1ee25
parentc9e73000c040bb6248fc07050b4e5b0f8c906b0d (diff)
downloademacs-4fb0a34c57f249ade1e8be09c1c9cd54523846b6.tar.gz
emacs-4fb0a34c57f249ade1e8be09c1c9cd54523846b6.zip
(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.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/textmodes/texinfo.el8
2 files changed, 11 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c9cd1f99c48..4ad68f46476 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
4 texinfo-insert-@url.
5 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
6 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
7
12000-11-14 Stefan Monnier <monnier@cs.yale.edu> 82000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2 9
3 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove. 10 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index d578362f517..7f5ff90484b 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -398,10 +398,9 @@ chapter."
398 (define-key texinfo-mode-map "\C-c\C-c\C-e" 'texinfo-insert-@emph) 398 (define-key texinfo-mode-map "\C-c\C-c\C-e" 'texinfo-insert-@emph)
399 399
400 (define-key texinfo-mode-map "\C-c\C-cv" 'texinfo-insert-@var) 400 (define-key texinfo-mode-map "\C-c\C-cv" 'texinfo-insert-@var)
401 (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@url) 401 (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@uref)
402 (define-key texinfo-mode-map "\C-c\C-ct" 'texinfo-insert-@table) 402 (define-key texinfo-mode-map "\C-c\C-ct" 'texinfo-insert-@table)
403 (define-key texinfo-mode-map "\C-c\C-cs" 'texinfo-insert-@samp) 403 (define-key texinfo-mode-map "\C-c\C-cs" 'texinfo-insert-@samp)
404 ;; (define-key texinfo-mode-map "\C-c\C-cr" 'texinfo-insert-@uref)
405 (define-key texinfo-mode-map "\C-c\C-cq" 'texinfo-insert-@quotation) 404 (define-key texinfo-mode-map "\C-c\C-cq" 'texinfo-insert-@quotation)
406 (define-key texinfo-mode-map "\C-c\C-co" 'texinfo-insert-@noindent) 405 (define-key texinfo-mode-map "\C-c\C-co" 'texinfo-insert-@noindent)
407 (define-key texinfo-mode-map "\C-c\C-cn" 'texinfo-insert-@node) 406 (define-key texinfo-mode-map "\C-c\C-cn" 'texinfo-insert-@node)
@@ -822,12 +821,13 @@ The default is not to surround any existing words with the braces."
822 (interactive "P") 821 (interactive "P")
823 (texinfo-insert-@-with-arg "var" arg)) 822 (texinfo-insert-@-with-arg "var" arg))
824 823
825(defun texinfo-insert-@url (&optional arg) 824(defun texinfo-insert-@uref (&optional arg)
826 "Insert a `@url{}' command in a Texinfo buffer. 825 "Insert a `@url{}' command in a Texinfo buffer.
827A numeric argument says how many words the braces should surround. 826A numeric argument says how many words the braces should surround.
828The default is not to surround any existing words with the braces." 827The default is not to surround any existing words with the braces."
829 (interactive "P") 828 (interactive "P")
830 (texinfo-insert-@-with-arg "url" arg)) 829 (texinfo-insert-@-with-arg "uref" arg))
830(defalias 'texinfo-insert-@url 'texinfo-insert-@uref)
831 831
832;;; Texinfo file structure 832;;; Texinfo file structure
833 833