all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Whats the status of forward-thing ?
@ 2007-10-21 21:53 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 21:53 UTC (permalink / raw)
  To: bug-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils



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

* Whats the status of forward-thing ?
@ 2007-10-21 21:53 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 21:53 UTC (permalink / raw)
  To: help-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils

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

* Whats the status of forward-thing ?
@ 2007-10-21 21:58 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 21:58 UTC (permalink / raw)
  To: help-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils

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

* Whats the status of forward-thing ?
@ 2007-10-21 21:59 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 21:59 UTC (permalink / raw)
  To: help-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils

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

* Whats the status of forward-thing ?
@ 2007-10-21 22:05 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 22:05 UTC (permalink / raw)
  To: help-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils

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

* Whats the status of forward-thing ?
@ 2007-10-21 22:10 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 22:10 UTC (permalink / raw)
  To: bug-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils



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

* Whats the status of forward-thing ?
@ 2007-10-21 22:10 gnuist006
  0 siblings, 0 replies; 7+ messages in thread
From: gnuist006 @ 2007-10-21 22:10 UTC (permalink / raw)
  To: help-gnu-emacs

With reference to the post 7 years ago, what is the status
of

forward-thing ?

What does it exactly do ?

gnuist

From: klarl...@research.att.com (Nils Klarlund)
Subject: forward-thing in thingatpt.el
Date: 2000/06/01
Message-ID: <200006011538.LAA13391@alliance.research.att.com>#1/1
X-Deja-AN: 629922605
Sender: bug-gnu-emacs-requ...@mail.gnu.org
Approved: bug-gnu-emacs-requ...@mail.gnu.org
x-uunet-gateway: dfw7sosrv11.alter.net from bug-gnu-emacs to
gnu.emacs.bug; Thu, 1 Jun 2000 15:38:56 GMT
Newsgroups: gnu.emacs.bug

This bug report will be sent to the Free Software Foundation,
 not to your local site managers!!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

In GNU Emacs 20.6.1 (i386-*-nt5.0.2195)
 of Tue Feb 29 2000 on buffy
configured using `configure NT'

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

forward-thing doesn't work with forward-op's that are lambda
expressions, change --->


(defun forward-thing (thing &optional n)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get thing 'forward-op)
			(intern-soft (format "forward-%s" thing)))))
    (if (fboundp forward-op)
	(funcall forward-op (or n 1))
      (error "Can't determine how to move over a %s" thing))))

to --->

(defun forward-thing (THING &optional N)
  "Move forward to the end of the next THING."
  (let ((forward-op (or (get THING 'forward-op)
			(intern-soft (format "forward-%s" THING)))))
    (if (indirect-function forward-op)
	(funcall forward-op (or N 1))

      (error "Can't determine how to move over %ss" THING))))

/Nils

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

end of thread, other threads:[~2007-10-21 22:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-21 21:58 Whats the status of forward-thing ? gnuist006
  -- strict thread matches above, loose matches on Subject: below --
2007-10-21 22:10 gnuist006
2007-10-21 22:10 gnuist006
2007-10-21 22:05 gnuist006
2007-10-21 21:59 gnuist006
2007-10-21 21:53 gnuist006
2007-10-21 21:53 gnuist006

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.