X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/61b8c493c44211bb0d7ee0aab5883f51de129bf9..8f3c30e535c6342fb42f31be35be8ebfb1adcf9e:/packages/csv-mode/csv-mode.el diff --git a/packages/csv-mode/csv-mode.el b/packages/csv-mode/csv-mode.el index 692579df1..909c10a3d 100644 --- a/packages/csv-mode/csv-mode.el +++ b/packages/csv-mode/csv-mode.el @@ -1,11 +1,11 @@ ;;; csv-mode.el --- Major mode for editing comma/char separated values -*- lexical-binding: t -*- -;; Copyright (C) 2003, 2004, 2012, 2013, 2014, 2015 Free Software Foundation, Inc +;; Copyright (C) 2003, 2004, 2012-2016 Free Software Foundation, Inc -;; Author: Francis J. Wright +;; Author: "Francis J. Wright" ;; Time-stamp: <23 August 2004> ;; URL: http://centaur.maths.qmul.ac.uk/Emacs/ -;; Version: 1.4 +;; Version: 1.5 ;; Keywords: convenience ;; This package is free software; you can redistribute it and/or modify @@ -964,18 +964,17 @@ The fields yanked are those last killed by `csv-kill-fields'." (while (not (eobp)) ; for each record... (or (csv-not-looking-at-record) (let ((w widths) - (beg (point)) ; Beginning of current field. + (col (current-column)) x) (while (not (eolp)) (csv-end-of-field) - (setq x (- (point) beg)) ; Field width. + (setq x (- (current-column) col)) ; Field width. (if w (if (> x (car w)) (setcar w x)) (setq w (list x) widths (nconc widths w))) (or (eolp) (forward-char)) ; Skip separator. - (setq w (cdr w) - beg (point))))) + (setq w (cdr w) col (current-column))))) (forward-line)) widths)) @@ -1021,8 +1020,8 @@ If there is no selected region, default to the whole buffer." (align-padding (if (bolp) 0 csv-align-padding)) (left-padding 0) (right-padding 0) (field-width - ;; FIXME: Don't assume length=string-width! - (progn (csv-end-of-field) (- (point) beg))) + (- (- (current-column) + (progn (csv-end-of-field) (current-column))))) (column-width (pop w)) (x (- column-width field-width))) ; Required padding. (set-marker end (point)) ; End of current field.