Merge pull request #13098 from atom/b3-toggle-line-comments

Fix toggleLineCommentsInSelection for empty lines
This commit is contained in:
Nathan Sobo
2016-10-29 08:03:50 -06:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ class LanguageMode
toggleLineCommentsForBufferRows: (start, end) ->
scope = @editor.scopeDescriptorForBufferPosition([start, 0])
commentStrings = @editor.getCommentStrings(scope)
return unless commentStrings?
return unless commentStrings?.commentStartString
{commentStartString, commentEndString} = commentStrings
buffer = @editor.buffer