X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/6ccb9cab43613632ece4f62d9ee28d694bc1d666..5c92e00da487df29752ec5dc21bc59fca2598626:/lisp/tabify.el diff --git a/lisp/tabify.el b/lisp/tabify.el index a90bf801bc..78005a25bd 100644 --- a/lisp/tabify.el +++ b/lisp/tabify.el @@ -1,6 +1,6 @@ ;;; tabify.el --- tab conversion commands for Emacs -;; Copyright (C) 1985, 1994, 2001-2013 Free Software Foundation, Inc. +;; Copyright (C) 1985, 1994, 2001-2014 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Package: emacs @@ -28,7 +28,7 @@ ;;; Code: ;;;###autoload -(defun untabify (start end &optional arg) +(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. @@ -61,7 +61,7 @@ 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 &optional arg) +(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.