emacs: Fix '--rounds' option in command popups.
* emacs/guix-command.el (guix-command-improve-common-build-argument): Use "R" key for '--rounds' option to avoid conflicts with "r" key in 'build' popup (--root) and 'package' popup (--remove).
This commit is contained in:
		
							parent
							
								
									dcb00c0ad5
								
							
						
					
					
						commit
						1ae15c3646
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -175,7 +175,8 @@ to be modified."
 | 
			
		|||
(defvar guix-command-improve-common-build-argument
 | 
			
		||||
  '(("--no-substitutes"  :char ?s)
 | 
			
		||||
    ("--no-build-hook"   :char ?h)
 | 
			
		||||
    ("--max-silent-time" :char ?x)))
 | 
			
		||||
    ("--max-silent-time" :char ?x)
 | 
			
		||||
    ("--rounds"          :char ?R :fun read-number)))
 | 
			
		||||
 | 
			
		||||
(defun guix-command-improve-common-build-argument (argument)
 | 
			
		||||
  (guix-command-modify-argument-from-alist
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue