[#144] Another implementation of Bignum — "Dmitry Antipov" <dmitry.antipov@...>
Hello Ruby hackers,
15 messages
2002/06/06
[#151] Re: Another implementation of Bignum [tarball attached]
— "Dmitry Antipov" <dmitry.antipov@...>
2002/06/07
Hello again,
[#152] Re: Another implementation of Bignum [tarball attached]
— matz@... (Yukihiro Matsumoto)
2002/06/07
Hi,
[#174] Improving Ruby's garbage collector for interactive apps — Matthew Bloch <mattbee@...>
re: this problem I had a few weeks back:
8 messages
2002/06/19
[#177] Re: Improving Ruby's garbage collector for interactive apps
— matz@... (Yukihiro Matsumoto)
2002/06/20
Hi,
[#178] Re: Improving Ruby's garbage collector for interactive apps
— Matthew Bloch <mattbee@...>
2002/06/21
On Thursday 20 June 2002 18:54, you wrote:
[#186] Steps to get multiple interpreters per process... — Sean Chittenden <sean@...>
Can someone chart out what would need to happen to get multiple ruby
10 messages
2002/06/24
[#187] Re: Steps to get multiple interpreters per process...
— matz@... (Yukihiro Matsumoto)
2002/06/25
Hi,
[#188] Re: Steps to get multiple interpreters per process...
— Sean Chittenden <sean@...>
2002/06/25
> |Can someone chart out what would need to happen to get multiple
[#191] Re: Steps to get multiple interpreters per process...
— Chris Ross <chris@...>
2002/06/25
ruby-mode.el - zmacs regions friendly
From:
Ed Sinjiashvili <edsin@...>
Date:
2002-06-07 13:52:10 UTC
List:
ruby-core #158
Hi, A tiny patch to make ruby-mode.el aware of zmacs regions. -- Ed
Attachments (1)
t
(1.32 KB, text/x-patch)
--- ruby-mode.el~ Tue Dec 18 11:40:34 2001
+++ ruby-mode.el Fri Jun 7 17:36:19 2002
@@ -565,7 +565,7 @@
indent)))
(defun ruby-electric-brace (arg)
- (interactive "P")
+ (interactive "_P")
(self-insert-command (prefix-numeric-value arg))
(ruby-indent-line t))
@@ -573,7 +573,7 @@
"Move backward to next beginning-of-defun.
With argument, do this that many times.
Returns t unless search stops due to end of buffer."
- (interactive "p")
+ (interactive "_p")
(and (re-search-backward (concat "^\\(" ruby-block-beg-re "\\)\\b")
nil 'move (or arg 1))
(progn (beginning-of-line) t)))
@@ -588,7 +588,7 @@
(defun ruby-end-of-defun (&optional arg)
"Move forward to next end of defun.
An end of a defun is found by moving forward from the beginning of one."
- (interactive "p")
+ (interactive "_p")
(and (re-search-forward (concat "^\\(" ruby-block-end-re "\\)\\($\\|\\b[^_]\\)")
nil 'move (or arg 1))
(progn (beginning-of-line) t))
@@ -622,12 +622,12 @@
(defun ruby-beginning-of-block ()
"Move backward to next beginning-of-block"
- (interactive)
+ (interactive "_")
(ruby-move-to-block -1))
(defun ruby-end-of-block ()
"Move forward to next beginning-of-block"
- (interactive)
+ (interactive "_")
(ruby-move-to-block 1))
(defun ruby-reindent-then-newline-and-indent ()