@@ -309,9 +309,9 @@ Created by `bash-completion-send' and printed by
309309(defun bash-completion--type (comp )
310310 " Returns the type of COMP.
311311
312- Completion type is ' command, if completing a command (cword = 0),
313- ' custom if there's a custom completion for the current command or
314- ' default if there isn't or if the completion hasn't been
312+ Completion type is ` command' , if completing a command (cword = 0),
313+ ` custom' if there's a custom completion for the current command or
314+ ` default' if there isn't or if the completion hasn't been
315315customized, usually by `bash-completion--customize' ."
316316 (cond
317317 ((zerop (bash-completion--cword comp)) 'command )
@@ -324,7 +324,7 @@ customized, usually by `bash-completion--customize'."
324324The option can be:
325325 - set globally, by setting `bash-completion-nospace' to t
326326 - set for a customized completion, in bash, with
327- '-o' ' nospace' ."
327+ \" -o nospace\" ."
328328 (let ((cell))
329329 (cond
330330 (bash-completion-nospace t ) ; set globally
@@ -458,10 +458,10 @@ This function is convenient, but it might not be the best way of enabling
458458bash completion in your .emacs file because it forces you to load the module
459459before it is needed. For an autoload version, add:
460460
461- (autoload 'bash-completion-dynamic-complete \" bash-completion\"
461+ (autoload \\= 'bash-completion-dynamic-complete \" bash-completion\"
462462 \" BASH completion hook\" )
463- (add-hook 'shell-dynamic-complete-functions
464- 'bash-completion-dynamic-complete)"
463+ (add-hook \\= 'shell-dynamic-complete-functions
464+ \\= 'bash-completion-dynamic-complete)"
465465 (add-hook 'shell-dynamic-complete-functions
466466 'bash-completion-dynamic-complete ))
467467
@@ -708,7 +708,7 @@ This method returns a list of tokens found between START and END,
708708ordered by position. Tokens contain a string and a range.
709709
710710The string in a token is an unescaped version of the token. For
711- example, if the token is 'hello world', the string contains
711+ example, if the token is \\= 'hello world\\= ', the string contains
712712\" hello world\" , without the quotes. It can be accessed using
713713`bash-completion-tokenize-get-str' . It can be modified using
714714`bash-completion-tokenize-append-str' .
@@ -724,7 +724,7 @@ set using `bash-completion-tokenize-set-end'.
724724
725725Tokens should always be accessed using the functions specified above,
726726never directly as they're likely to change as this code evolves.
727- The current format of a token is '(string . (start . end))."
727+ The current format of a token is \\= '(string . (start . end))."
728728 (let ((tokens nil )
729729 (bash-completion-wordbreaks
730730 (mapconcat 'char-to-string
@@ -1489,7 +1489,7 @@ TIMEOUT is the timeout value for this operation, if nil the value of
14891489`bash-completion-process-timeout' is used.
14901490
14911491DEBUG-CONTEXT, if specified, is appended to the debug info under
1492- the key ' debug-context.
1492+ the key ` debug-context' .
14931493
14941494Once this command has run without errors, you will find the
14951495result of the command in the bash completion process buffer or in
0 commit comments