Boruch Baum writes: > 1. The docstring issue, until I realized I should ask. Thanks, I've pushed that part to master in your name with some touch-ups. I also added a ChangeLog entry. See commit cfc70e51c2 on the master branch. > 2. @Kim: At the end of the first diff block, I noted an issue about the > `cua--last-killed-rectangle' data structure. Could you set me right > about it? I left this as a FIXME comment, since it doesn't seem like anyone knows the answer. Hopefully someone so inclined will take a closer look at some point. > 3. I noticed that `M-m' was bound to `cua-copy-rectangle-as-text' > instead of `back-to-indentation', so I took the liberty of writing a > function `cua-resize-rectangle-back-to-indentation' and binding it to > `M-m', which is what most users would expect. If this approved, to > what should be bound `cua-copy-rectangle-as-text' > > 4. Function `cua-resize-rectangle-bot' had a bug in that it always > placed point at the actual (point-max) even though the rectangle > corner would not be there. This would occur when (point-max) was at a > column number smaller than the left edge of the rectangle. The patch > file includes the fix. > > 5. Two commonly used navigation functions, normally bound to `C-a' and > `C-e' were not remapped. (DONE) Could you please provide instructions for how to test the above parts? I don't use this mode and it's not clear to me what to do. Also, could you perhaps split the patch up and make it clear which parts of your code belong to which of the above points? Ideally, if possible, you would also add ChangeLog entries as per etc/CONTRIBUTE. > 6. The help message is remapped from `C-?' to `M-?' for the sanity of > people like me who use emacs-nox and can only perform a `C-?' by > typing `C-x @ c ?'. I don't understand which part of your patch this refers to, or how to test it. Could you please clarify? > 7. The current keybindings are made using an old method of keystroke > definition that I find a bit scary. Is it OK / desirable to change > the method uniformly to use `kbd'? I have no strong opinion on this, but it seems relatively minor. Perhaps it's not worth the code churn. > First slow steps. I've attached a diff with the parts of your patch that I didn't yet push to master. Thanks.