comparison lisp/prim/lisp.el @ 6:27bc7f280385 r19-15b4

Import from CVS: tag r19-15b4
author cvs
date Mon, 13 Aug 2007 08:47:15 +0200
parents ac2d302a0011
children 49a24b4fd526
comparison
equal deleted inserted replaced
5:49b78a777eb4 6:27bc7f280385
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.