emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111070: Avoid some overfull lines


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111070: Avoid some overfull lines in doc/misc/viper
Date: Sat, 22 Dec 2012 14:09:06 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111070
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Sat 2012-12-22 14:09:06 -0800
message:
  Avoid some overfull lines in doc/misc/viper
modified:
  doc/misc/ChangeLog
  doc/misc/viper.texi
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2012-12-22 22:04:09 +0000
+++ b/doc/misc/ChangeLog        2012-12-22 22:09:06 +0000
@@ -1,5 +1,8 @@
 2012-12-22  Glenn Morris  <address@hidden>
 
+       * viper.texi (Rudimentary Changes, Key Bindings, Key Bindings):
+       Avoid some overfull lines.
+
        * widget.texi (Programming Example): Break some long lines.
 
        * wisent.texi (Wisent Overview): Fix xref.

=== modified file 'doc/misc/viper.texi'
--- a/doc/misc/viper.texi       2012-12-22 16:25:40 +0000
+++ b/doc/misc/viper.texi       2012-12-22 22:09:06 +0000
@@ -1838,10 +1838,10 @@
 specifying a new face.  (Emacs faces are described in the Emacs Lisp
 reference.)  On a color display, the following customization method is
 usually most effective:
address@hidden
address@hidden
 (set-face-foreground viper-replace-overlay-face "DarkSlateBlue")
 (set-face-background viper-replace-overlay-face "yellow")
address@hidden example
address@hidden smallexample
 For a complete list of colors available to you, evaluate the expression
 @code{(x-defined-colors)}.  (Type it in the buffer @code{*scratch*} and then
 hit the @kbd{C-j} key.
@@ -2044,7 +2044,8 @@
 @noindent
 To customize the binding for @kbd{C-h} in Insert state:
 @example
-(define-key viper-insert-global-user-map "\C-h" 'my-del-backwards-function)
+(define-key viper-insert-global-user-map "\C-h"
+  'my-del-backwards-function)
 @end example
 @noindent
 
@@ -2093,7 +2094,8 @@
 (setq my-dired-vi-purist-map (make-sparse-keymap))
 (define-key my-dired-vi-purist-map "k" 'viper-previous-line)
 (define-key my-dired-vi-purist-map "l" 'viper-forward-char)
-(viper-modify-major-mode 'dired-mode 'emacs-state my-dired-vi-purist-map)
+(viper-modify-major-mode 'dired-mode
+                         'emacs-state my-dired-vi-purist-map)
 @end example
 
 Yet another way to customize key bindings in a major mode is to edit the


reply via email to

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