Index: emacs/lisp/array.el
diff -c emacs/lisp/array.el:1.26 emacs/lisp/array.el:1.27
*** emacs/lisp/array.el:1.26    Mon Jul  4 23:08:52 2005
--- emacs/lisp/array.el Mon Jul 18 09:35:43 2005
***************
*** 638,644 ****
    "Reconfigure the state of `array-rows-numbered' and 
`array-columns-per-line'.
  NEW-COLUMNS-PER-LINE is the desired value of `array-columns-per-line' and
  NEW-ROWS-NUMBERED (a character, either ?y or ?n) is the desired value
! of array-rows-numbered."
    (interactive "nColumns per line: \ncRows numbered? (y or n) ")
    ;; Check on new-columns-per-line
    (let ((check t))
--- 638,644 ----
    "Reconfigure the state of `array-rows-numbered' and 
`array-columns-per-line'.
  NEW-COLUMNS-PER-LINE is the desired value of `array-columns-per-line' and
  NEW-ROWS-NUMBERED (a character, either ?y or ?n) is the desired value
! of `array-rows-numbered'."
    (interactive "nColumns per line: \ncRows numbered? (y or n) ")
    ;; Check on new-columns-per-line
    (let ((check t))
***************
*** 717,723 ****
      (let ((inhibit-quit t))
        (set-buffer main-buffer)
        (erase-buffer)
!       (insert-buffer temp-buffer)
        ;; Update local variables.
        (setq array-columns-per-line new-columns-per-line)
        (setq array-rows-numbered new-rows-numbered)
--- 717,723 ----
      (let ((inhibit-quit t))
        (set-buffer main-buffer)
        (erase-buffer)
!       (insert-buffer-substring temp-buffer)
        ;; Update local variables.
        (setq array-columns-per-line new-columns-per-line)
        (setq array-rows-numbered new-rows-numbered)
***************
*** 767,773 ****
          (move-to-column column)))))
  
  (defun untabify-backward ()
!   "Untabify the preceding tab."
    (save-excursion
      (let ((start (point)))
        (backward-char 1)
--- 767,773 ----
          (move-to-column column)))))
  
  (defun untabify-backward ()
!   "Untabify the preceding TAB."
    (save-excursion
      (let ((start (point)))
        (backward-char 1)
***************
*** 817,823 ****
    The array MUST reside at the top of the buffer.
  
    TABs are not respected, and may be converted into spaces at any time.
! Setting the variable 'array-respect-tabs to non-nil will prevent TAB 
conversion,
  but will cause many functions to give errors if they encounter one.
  
    Upon entering array mode, you will be prompted for the values of
--- 817,823 ----
    The array MUST reside at the top of the buffer.
  
    TABs are not respected, and may be converted into spaces at any time.
! Setting the variable `array-respect-tabs' to non-nil will prevent TAB 
conversion,
  but will cause many functions to give errors if they encounter one.
  
    Upon entering array mode, you will be prompted for the values of


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to