From: matz@... (Yukihiro Matsumoto) Date: 2001-12-20T16:02:46+09:00 Subject: [ruby-talk:29076] Re: Bug fix for ruby-mode.el Hi, In message "[ruby-talk:29028] Re: Bug fix for ruby-mode.el" on 01/12/20, "Matt Armstrong" writes: |> (save-excursion |> (forward-char -1) |> (not (looking-at "\\?"))) |> (skip-chars-backward " \t") |> |> in ruby-calculate-indent. |> A fast fix that I typed was: |> |> (if (not (= (point) (point-min))) |> (save-excursion |> (forward-char -1) |> (not (looking-at "\\?")))) |> (skip-chars-backward " \t") |> |> but I'm not sure if that's OK. I will merge this one. |> Furthermore I'd like to ask you how I should give out my fixes to |> ruby-mode.el, since I've been working on ruby support in (X)Emacs a |> bit (func-menu, skeletons, auto-insert) | |For the most part, Matz is the maintainer of ruby-mode.el, so he will |probably have an answer for you. Send me. Or you (or any volunteer) can take a role to maitain ruby-mode.el, for a short while. matz.