/[emacs]/emacs/lisp/progmodes/cc-cmds.el
ViewVC logotype

Diff of /emacs/lisp/progmodes/cc-cmds.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.37 by mast, Wed Aug 11 16:22:21 2004 UTC revision 1.38 by mast, Mon May 23 00:03:59 2005 UTC
# Line 2441  command to conveniently insert and align Line 2441  command to conveniently insert and align
2441                        (delete-region (point) end)                        (delete-region (point) end)
2442                        (indent-to column 1)))                        (indent-to column 1)))
2443    
2444                 (= (forward-line 1) 0))))                 (zerop (forward-line 1)))
2445                 (bolp)))                   ; forward-line has funny behavior at eob.
2446    
2447        ;; Make sure there are backslashes with at least one space in        ;; Make sure there are backslashes with at least one space in
2448        ;; front of them.        ;; front of them.
# Line 2466  command to conveniently insert and align Line 2467  command to conveniently insert and align
2467                     (insert ?\\)                     (insert ?\\)
2468                   (insert ?\  ?\\)))                   (insert ?\  ?\\)))
2469    
2470               (= (forward-line 1) 0)))))))               (zerop (forward-line 1)))
2471               (bolp))))))                  ; forward-line has funny behavior at eob.
2472    
2473  (defun c-delete-backslashes-forward (to-mark point-pos)  (defun c-delete-backslashes-forward (to-mark point-pos)
2474    ;; This function does not do any hidden buffer changes.    ;; This function does not do any hidden buffer changes.
# Line 2481  command to conveniently insert and align Line 2483  command to conveniently insert and align
2483                           (skip-chars-backward " \t" (if (>= (point) point-pos)                           (skip-chars-backward " \t" (if (>= (point) point-pos)
2484                                                          point-pos))                                                          point-pos))
2485                           (point))))                           (point))))
2486               (= (forward-line 1) 0)))))               (zerop (forward-line 1)))
2487               (bolp))))                    ; forward-line has funny behavior at eob.
2488    
2489    
2490    

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26