emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[ELPA-diffs] /srv/bzr/emacs/elpa r191: Commentary tweaks for csv-mode, i


From: Chong Yidong
Subject: [ELPA-diffs] /srv/bzr/emacs/elpa r191: Commentary tweaks for csv-mode, ioccur, and nhexl-mode packages.
Date: Sat, 24 Mar 2012 21:49:17 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 191
committer: Chong Yidong <address@hidden>
branch nick: elpa
timestamp: Sat 2012-03-24 21:49:17 +0800
message:
  Commentary tweaks for csv-mode, ioccur, and nhexl-mode packages.
modified:
  packages/csv-mode/csv-mode.el
  packages/ioccur/ioccur.el
  packages/nhexl-mode/nhexl-mode.el
=== modified file 'packages/csv-mode/csv-mode.el'
--- a/packages/csv-mode/csv-mode.el     2012-03-24 13:37:51 +0000
+++ b/packages/csv-mode/csv-mode.el     2012-03-24 13:49:17 +0000
@@ -1,4 +1,4 @@
-;;; csv-mode.el --- major mode for editing comma-separated value files
+;;; csv-mode.el --- major mode for editing comma/char separated values
 
 ;; Copyright (C) 2003, 2004, 2012  Free Software Foundation, Inc
 

=== modified file 'packages/ioccur/ioccur.el'
--- a/packages/ioccur/ioccur.el 2012-03-14 17:41:33 +0000
+++ b/packages/ioccur/ioccur.el 2012-03-24 13:49:17 +0000
@@ -33,20 +33,19 @@
 
 ;;; Commentary:
 ;;
-;; This package provide similar functionality as occur but is incremental.
-;;
-;; You can jump and quit to an occurence or jump
-;; and save the search buffer (ioccur-buffer) for further use.
-;; It is possible to toggle literal and regexp searching while running.
-;; It is auto documented both in mode-line and tooltip.
-;; It have its own history `ioccur-history' which is a real ring.
-;; etc...
-;;
-;; To save `ioccur-history', use desktop, adding that to your .emacs:
+;; This package provides the command M-x ioccur, which is similar to
+;; M-x occur, except that it is incremental.
+;;
+;; You can jump and quit to an occurrence, or jump and save the search
+;; buffer (ioccur-buffer) for further use.  You can toggle literal and
+;; regexp searching while running.  It is auto documented both in
+;; mode-line and tooltip.  It has its own history, `ioccur-history',
+;; which is a real ring.
+;;
+;; To save `ioccur-history' via the Desktop package, add this to your
+;; init file (see (info "(emacs) Saving Emacs Sessions") for details):
+;;
 ;; (add-to-list 'desktop-globals-to-save 'ioccur-history)
-;;
-;; For more info See:
-;; [EVAL] (info "(emacs) Saving Emacs Sessions")
 
 ;;; Code:
 (require 'derived)

=== modified file 'packages/nhexl-mode/nhexl-mode.el'
--- a/packages/nhexl-mode/nhexl-mode.el 2012-03-21 03:40:12 +0000
+++ b/packages/nhexl-mode/nhexl-mode.el 2012-03-24 13:49:17 +0000
@@ -21,15 +21,18 @@
 
 ;;; Commentary:
 
-;; This implements a similar functionality to `hexl-mode', but
-;; using a different implementation technique, which makes it usable
-;; as a "plain" minor mode.  I.e. it works on any buffer, does not
-;; mess with the undo boundary or even with the major mode.
+;; This package implements NHexl mode, a minor mode for editing binary
+;; files in hex dump format.  The mode command is called `nhexl-mode'.
+;;
+;; This minor mode implements similar functionality to `hexl-mode',
+;; but using a different implementation technique, which makes it
+;; usable as a "plain" minor mode.  It works on any buffer, and does
+;; not mess with the undo boundary or with the major mode.
 ;;
 ;; In theory it could also work just fine even on very large buffers,
 ;; although in practice it seems to make the display engine suffer.
 
-;; Todo:
+;;; Todo:
 ;; - Clicks on the hex side should put point at the right place.
 
 ;;; Code:
@@ -57,7 +60,7 @@
 
 ;;;###autoload
 (define-minor-mode nhexl-mode
-  "Minor mode to edit files via hex-dump format"
+  "Minor mode to edit binary files via hex-dump format"
   :lighter " NHexl"
   (if (not nhexl-mode)
       (progn


reply via email to

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