bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#19829: 25.0.50; Design of commands operating on rectangular regions


From: Richard Stallman
Subject: bug#19829: 25.0.50; Design of commands operating on rectangular regions
Date: Tue, 07 Jul 2015 17:27:50 -0400

[[[ To any NSA and FBI agents reading my email: please consider    ]]]
[[[ whether defending the US Constitution against all enemies,     ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]

  > +(defvar region-insert-function
  > +  (lambda (lines)
  > +    (let ((first t))
  > +      (while lines
  > +        (or first
  > +            (insert ?\n))
  > +        (insert-for-yank (car lines))
  > +        (setq lines (cdr lines)
  > +              first nil))))
  > +  "Function to insert the region's content.
  > +Called with one argument LINES.
  > +Insert the region as a list of lines.")

What is the meaning of a list of lines as the region
if it is NOT a rectangle?  What would that kind of region mean,
and when would it be used?

(I ask because there's a different function for rectangles,
so this function won't be used with a list of lines for rectangles.)

-- 
Dr Richard Stallman
President, Free Software Foundation (gnu.org, fsf.org)
Internet Hall-of-Famer (internethalloffame.org)
Skype: No way! See stallman.org/skype.html.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]