diff options
Diffstat (limited to 'lisp/progmodes/cc-align.el')
-rw-r--r-- | lisp/progmodes/cc-align.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/cc-align.el b/lisp/progmodes/cc-align.el index 9234d0b19b9..a26c1d5bff9 100644 --- a/lisp/progmodes/cc-align.el +++ b/lisp/progmodes/cc-align.el @@ -914,7 +914,7 @@ Works with: template-args-cont." (defun c-lineup-ObjC-method-call (langelem) "Line up selector args as Emacs Lisp mode does with function args: Go to the position right after the message receiver, and if you are at -the end of the line, indent the current line c-basic-offset columns +the end of the line, indent the current line `c-basic-offset' columns from the opening bracket; otherwise you are looking at the first character of the first method call argument, so line up the current line with it. @@ -943,9 +943,9 @@ Works with: objc-method-call-cont." (defun c-lineup-ObjC-method-call-colons (langelem) "Line up selector args as Project Builder / XCode: colons of first - selector portions on successive lines are aligned. If no decision can - be made return NIL, so that other lineup methods can be tried. This is - typically chained with `c-lineup-ObjC-method-call'. +selector portions on successive lines are aligned. If no decision can +be made return NIL, so that other lineup methods can be tried. This is +typically chained with `c-lineup-ObjC-method-call'. Works with: objc-method-call-cont." (save-excursion |