From: Matthias Meulien <orontee@gmail.com>
To: emacs-devel <emacs-devel@gnu.org>
Subject: Tabify and untabify apply to the entire buffer (with patch)
Date: Thu, 21 Mar 2013 02:02:54 +0100 [thread overview]
Message-ID: <1363827774.819.48.camel@localhost.localdomain> (raw)
[-- Attachment #1: Type: text/plain, Size: 304 bytes --]
With emacs 24.3, `C-u M-=' now counts lines/words/characters in the
entire buffer. I suggest that the functions `untabify' and `tabify' from
lisp/tabify.el may accept such an optional argument to apply to the
entire buffer.
A patch is attached to this message.
Thanks for reading,
--
Matthias Meulien
[-- Attachment #2: 0001-Tabify-and-untabify-apply-to-the-entire-buffer.patch --]
[-- Type: text/x-patch, Size: 2103 bytes --]
From 64a03c29af49f38a6c2f31fb619a8c342b6316f8 Mon Sep 17 00:00:00 2001
From: Matthias Meulien <orontee@gmail.com>
Date: Thu, 21 Mar 2013 01:51:06 +0100
Subject: [PATCH] Tabify and untabify apply to the entire buffer
---
lisp/tabify.el | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/lisp/tabify.el b/lisp/tabify.el
index 6bf45b3..a90bf80 100644
--- a/lisp/tabify.el
+++ b/lisp/tabify.el
@@ -28,12 +28,17 @@
;;; Code:
;;;###autoload
-(defun untabify (start end)
+(defun untabify (start end &optional arg)
"Convert all tabs in region to multiple spaces, preserving columns.
+If called interactively with prefix ARG, convert for the entire
+buffer.
+
Called non-interactively, the region is specified by arguments
START and END, rather than by the position of point and mark.
The variable `tab-width' controls the spacing of tab stops."
- (interactive "r")
+ (interactive (if current-prefix-arg
+ (list (point-min) (point-max) current-prefix-arg)
+ (list (region-beginning) (region-end) nil)))
(let ((c (current-column)))
(save-excursion
(save-restriction
@@ -56,14 +61,19 @@ Usually this will be \" [ \\t]+\" to match a space followed by whitespace.
\"^\\t* [ \\t]+\" is also useful, for tabifying only initial whitespace.")
;;;###autoload
-(defun tabify (start end)
+(defun tabify (start end &optional arg)
"Convert multiple spaces in region to tabs when possible.
A group of spaces is partially replaced by tabs
when this can be done without changing the column they end at.
+If called interactively with prefix ARG, convert for the entire
+buffer.
+
Called non-interactively, the region is specified by arguments
START and END, rather than by the position of point and mark.
The variable `tab-width' controls the spacing of tab stops."
- (interactive "r")
+ (interactive (if current-prefix-arg
+ (list (point-min) (point-max) current-prefix-arg)
+ (list (region-beginning) (region-end) nil)))
(save-excursion
(save-restriction
;; Include the beginning of the line in the narrowing
--
1.8.2
next reply other threads:[~2013-03-21 1:02 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-21 1:02 Matthias Meulien [this message]
2013-04-04 1:39 ` Tabify and untabify apply to the entire buffer (with patch) Stefan Monnier
2013-06-18 8:01 ` Matthias Meulien
2013-06-18 8:17 ` Juanma Barranquero
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1363827774.819.48.camel@localhost.localdomain \
--to=orontee@gmail.com \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.