Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
5f204775
Kaydet (Commit)
5f204775
authored
Mar 25, 1996
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
(py-indent-right, py-outdent-left): Watch out for (mark) returning
nil.
üst
cce074e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
python-mode.el
Misc/python-mode.el
+10
-4
No files found.
Misc/python-mode.el
Dosyayı görüntüle @
5f204775
...
@@ -502,8 +502,11 @@ farther right than the distance the line would be indented by
...
@@ -502,8 +502,11 @@ farther right than the distance the line would be indented by
current line."
current line."
(
interactive
(
interactive
(
let
((
p
(
point
))
(
let
((
p
(
point
))
(
m
(
mark
)))
(
m
(
mark
))
(
list
(
min
p
m
)
(
max
p
m
)
(
prefix-numeric-value
current-prefix-arg
))))
(
arg
(
prefix-numeric-value
current-prefix-arg
)))
(
if
m
(
list
(
min
p
m
)
(
max
p
m
)
arg
)
(
list
p
m
arg
))))
(
let
((
pos
(
-
(
point-max
)
(
point
)))
(
let
((
pos
(
-
(
point-max
)
(
point
)))
(
end
(
save-excursion
(
end
(
save-excursion
(
goto-char
(
or
end
(
1+
start
)))
(
goto-char
(
or
end
(
1+
start
)))
...
@@ -535,8 +538,11 @@ farther left than column zero. With no active region, outdent only
...
@@ -535,8 +538,11 @@ farther left than column zero. With no active region, outdent only
the current line."
the current line."
(
interactive
(
interactive
(
let
((
p
(
point
))
(
let
((
p
(
point
))
(
m
(
mark
)))
(
m
(
mark
))
(
list
(
min
p
m
)
(
max
p
m
)
(
prefix-numeric-value
current-prefix-arg
))))
(
arg
(
prefix-numeric-value
current-prefix-arg
)))
(
if
m
(
list
(
min
p
m
)
(
max
p
m
)
arg
)
(
list
p
m
arg
))))
(
let
((
pos
(
-
(
point-max
)
(
point
)))
(
let
((
pos
(
-
(
point-max
)
(
point
)))
(
end
(
save-excursion
(
end
(
save-excursion
(
goto-char
(
or
end
(
1+
start
)))
(
goto-char
(
or
end
(
1+
start
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment