comparison lisp/emulation/vi.el @ 87117:f6a9b5a0591d

Remove directory part from filenames in function declarations.
author Glenn Morris <rgm@gnu.org>
date Thu, 06 Dec 2007 04:07:24 +0000
parents 4d615a83cee2
children 53108e6cea98 ad9d2270860e
comparison
equal deleted inserted replaced
87116:c3fbe3fd56de 87117:f6a9b5a0591d
1373 ((char-equal char ?p) (what-page)) 1373 ((char-equal char ?p) (what-page))
1374 (t (message "Ask for: l(ine number), c(ursor position), p(age number)") 1374 (t (message "Ask for: l(ine number), c(ursor position), p(age number)")
1375 (setq char (read-char)) 1375 (setq char (read-char))
1376 (vi-ask-for-info char)))) 1376 (vi-ask-for-info char))))
1377 1377
1378 (declare-function c-mark-function "../progmodes/cc-cmds" ()) 1378 (declare-function c-mark-function "cc-cmds" ())
1379 1379
1380 (defun vi-mark-region (arg region) 1380 (defun vi-mark-region (arg region)
1381 "Mark region appropriately. The next char REGION is d(efun),s(-exp),b(uffer), 1381 "Mark region appropriately. The next char REGION is d(efun),s(-exp),b(uffer),
1382 p(aragraph), P(age), f(unction in C/Pascal etc.), w(ord), e(nd of sentence), 1382 p(aragraph), P(age), f(unction in C/Pascal etc.), w(ord), e(nd of sentence),
1383 l(ines)." 1383 l(ines)."