summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpsg <>2016-11-05 22:06:06 +0000
committerpsg <>2016-11-05 22:06:06 +0000
commit643f0dbdc609e4a3062fb894ab677074606a8552 (patch)
treee09afeb104416da7d6b63616fef3ed20db1a5eca
parent1ab6280001c8bd611b4634d1828e275280a2b108 (diff)
Bug fix: #705281
-rw-r--r--apt-sources.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/apt-sources.el b/apt-sources.el
index a3f0af1..e4af7f6 100644
--- a/apt-sources.el
+++ b/apt-sources.el
@@ -310,8 +310,9 @@ of the format."
("frozen" 3)
("stable" 4)
("sid" 5)
- ("sarge" 6)
- ("woody" 7)) nil t))
+ ("squeeze" 6)
+ ("wheezy" 7))
+ ("jessie" 8)) nil t))
(components (completing-read "Components: " ;list of componenst used by APT.
'(("main")
("main contrib")
@@ -456,8 +457,9 @@ This function will rise an error if we are not in a source line."
("frozen" 3)
("stable" 4)
("sid" 5)
- ("sarge" 6)
- ("woody" 7)) nil t)))
+ ("squeeze" 6)
+ ("wheezy" 7)
+ ("jessie" 8)) nil t)))
(save-excursion
(beginning-of-line)
(delete-region (re-search-forward ":/*[^ ]*." (line-end-position) t 1)