emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100381: * nxml/nxml-mode.el (nxml-mo


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100381: * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
Date: Thu, 20 May 2010 11:12:20 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100381
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Thu 2010-05-20 11:12:20 -0400
message:
  * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
  nxml-finish-element, for consistency with SGML mode.
  
  * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
  octave-close-block.
modified:
  lisp/ChangeLog
  lisp/nxml/nxml-mode.el
  lisp/progmodes/octave-mod.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-05-20 01:27:49 +0000
+++ b/lisp/ChangeLog    2010-05-20 15:12:20 +0000
@@ -1,3 +1,11 @@
+2010-05-20  Chong Yidong  <address@hidden>
+
+       * nxml/nxml-mode.el (nxml-mode-map): Bind C-c / to
+       nxml-finish-element, for consistency with SGML mode.
+
+       * progmodes/octave-mod.el (octave-mode-map): Bind C-c / to
+       octave-close-block.
+
 2010-05-20  Juanma Barranquero  <address@hidden>
 
        * composite.el: Require cl when compiling.

=== modified file 'lisp/nxml/nxml-mode.el'
--- a/lisp/nxml/nxml-mode.el    2010-03-12 17:47:22 +0000
+++ b/lisp/nxml/nxml-mode.el    2010-05-20 15:12:20 +0000
@@ -404,6 +404,7 @@
     (define-key map "\M-}" 'nxml-forward-paragraph)
     (define-key map "\M-h" 'nxml-mark-paragraph)
     (define-key map "\C-c\C-f" 'nxml-finish-element)
+    (define-key map "\C-c/" 'nxml-finish-element)
     (define-key map "\C-c\C-m" 'nxml-split-element)
     (define-key map "\C-c\C-b" 'nxml-balanced-close-start-tag-block)
     (define-key map "\C-c\C-i" 'nxml-balanced-close-start-tag-inline)

=== modified file 'lisp/progmodes/octave-mod.el'
--- a/lisp/progmodes/octave-mod.el      2010-01-13 08:35:10 +0000
+++ b/lisp/progmodes/octave-mod.el      2010-05-20 15:12:20 +0000
@@ -214,6 +214,7 @@
     (define-key map "\C-c\M-\C-d" 'octave-down-block)
     (define-key map "\C-c\M-\C-h" 'octave-mark-block)
     (define-key map "\C-c]" 'octave-close-block)
+    (define-key map "\C-c/" 'octave-close-block)
     (define-key map "\C-c\C-f" 'octave-insert-defun)
     (define-key map "\C-c\C-h" 'octave-help)
     (define-key map "\C-c\C-il" 'octave-send-line)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]