Changeset 14812 for trunk/source/cocoa-ide/hemlock/src/killcoms.lisp
- Timestamp:
- Jun 6, 2011, 6:22:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/cocoa-ide/hemlock/src/killcoms.lisp
r14737 r14812 180 180 181 181 (defcommand "Exchange Point and Mark" (p) 182 "Swap the positions of the point and the mark, activating region.183 With a prefix argument, deactivates region"182 "Swap the positions of the point and the mark, deactivating region. 183 With a prefix argument, activates region" 184 184 (let ((point (current-point)) 185 185 (mark (current-mark))) … … 188 188 (move-mark mark temp))) 189 189 (if p 190 ( deactivate-region)191 ( activate-region)))190 (activate-region) 191 (deactivate-region))) 192 192 193 193 (defcommand "Mark Whole Buffer" (p)
Note: See TracChangeset
for help on using the changeset viewer.