comparison lisp/prim/lisp.el @ 74:54cc21c15cbb r20-0b32

Import from CVS: tag r20-0b32
author cvs
date Mon, 13 Aug 2007 09:04:33 +0200
parents 131b0175ea99
children c0c698873ce1
comparison
equal deleted inserted replaced
73:e2d7a37b7c8d 74:54cc21c15cbb
113 (defun backward-up-list (arg) 113 (defun backward-up-list (arg)
114 "Move backward out of one level of parentheses. 114 "Move backward out of one level of parentheses.
115 With argument, do this that many times. 115 With argument, do this that many times.
116 A negative argument means move forward but still to a less deep spot. 116 A negative argument means move forward but still to a less deep spot.
117 In Lisp programs, an argument is required." 117 In Lisp programs, an argument is required."
118 (interactive "p") 118 (interactive "_p")
119 (up-list (- arg))) 119 (up-list (- arg)))
120 120
121 (defun up-list (arg) 121 (defun up-list (arg)
122 "Move forward out of one level of parentheses. 122 "Move forward out of one level of parentheses.
123 With argument, do this that many times. 123 With argument, do this that many times.