]> code.delx.au - gnu-emacs/blobdiff - lisp/misc.el
(titdic-convert): Force files be
[gnu-emacs] / lisp / misc.el
index f906fb0db7b89667ee98383674e7d3c3cb08349a..a9636a62f166387836c9f0b61de1816c499842fc 100644 (file)
@@ -1,6 +1,7 @@
 ;;; misc.el --- some nonstandard basic editing commands for Emacs
 
-;; Copyright (C) 1989, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+;; Copyright (C) 1989, 2001, 2002, 2003, 2004, 2005,
+;;   2006, 2007 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: convenience
@@ -47,7 +48,7 @@ The characters copied are inserted in the buffer before point."
       (if (< cc (current-column))
          (if (= (preceding-char) ?\t)
              (progn
-               (setq string (make-string (min n (- (current-column) cc)) ?\ ))
+               (setq string (make-string (min n (- (current-column) cc)) ?\s))
                (setq n (- n (min n (- (current-column) cc)))))
            ;; In middle of ctl char => copy that whole char.
            (backward-char 1)))
@@ -61,7 +62,7 @@ The characters copied are inserted in the buffer before point."
 ;; Variation of `zap-to-char'.
 
 (defun zap-up-to-char (arg char)
-  "Kill up to, but not including ARG'th occurrence of CHAR.
+  "Kill up to, but not including ARGth occurrence of CHAR.
 Case is ignored if `case-fold-search' is non-nil in the current buffer.
 Goes backward if ARG is negative; error if CHAR not found.
 Ignores CHAR at point."