all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* title function for boxquote
@ 2005-01-30 22:19 Sebastian Luque
  2005-01-31  0:49 ` Sebastian Luque
       [not found] ` <mailman.61.1107133370.2841.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Sebastian Luque @ 2005-01-30 22:19 UTC (permalink / raw)


This should be simple, but I'm flailing badly here. I'm trying to put a title
to a boxquote that has been yanked from a region killed with
boxquote-kill-ring-save. Something that looks like:

file name [Lines: such -- such]

So I came up with this, but it doesn't work:

(defun my-title-function (from to)
   "Provide a phrase for boxquote-kill-ring-save-title."
   (interactive "r")
   (save-restriction
     (widen)
     (let ((first-line (count-lines (point-min) (from)))
 	  (last-line (count-lines (point-min) (to))))
       (concat buffer-name "[Lines: " first-line " -- " last-line "]"))))

(setq boxquote-kill-ring-save-title
      'my-title-function)

What's wrong with this picture? Thanks in advance.

-- 
Best wishes,
Sebastian

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-01-31 14:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.56.1107127949.2841.help-gnu-emacs@gnu.org>
2005-01-31  9:46 ` title function for boxquote Karl Pflästerer
2005-01-31 14:43   ` Sebastian Luque
2005-01-30 22:19 Sebastian Luque
2005-01-31  0:49 ` Sebastian Luque
     [not found] ` <mailman.61.1107133370.2841.help-gnu-emacs@gnu.org>
2005-01-31 11:10   ` Sébastien Kirche

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.