ADVERTISEMENT

Ageing pope admits he must slow down, or quit

Published Jul 31, 2022 07:18 am

ABOARD THE PAPAL PLANE - Pope Francis admitted Saturday he needs to slow down, telling reporters after a six-day trip to Canada that he cannot maintain his pace of international travel -- and may have to think about retiring.

Pope Francis looks down during a news conference aboard the papal plane on his flight back after visiting Canada, July 29, 2022. GUGLIELMO MANGIAPANE / POOL / AFP

"I don't think I can go at the same pace as I used to travel," said the 85-year-old pope, who suffers pain in his knee that has seen him increasingly reliant on a wheelchair.

"I think that at my age and with this limitation, I have to save myself a little bit to be able to serve the Church. Or, alternatively, to think about the possibility of stepping aside."

It is not the first time Francis has raised the possibility of following the example set by his predecessor, Benedict XVI, who quit over his own failing health in 2013, and is now living quietly in Vatican City.

In 2014, a year into his papacy, Francis told reporters that if his health got in the way of his functions as pope, he would consider stepping down.

In May, as reported in the Italian media, Francis joked about his knee during a closed-door meeting with bishops, saying: "Rather than operate, I'll resign."

"The door is open, it's one of the normal options, but up until now I haven't knocked on this door," he said Saturday.

"But that doesn't mean the day after tomorrow I don't start thinking, right? But right now I honestly don't.

"Also this trip was a little bit the test. It is true that you cannot make trips in this state, you have to maybe change the style a little bit, decrease, pay off the debts of the trips you still have to make, rearrange.

"But the Lord will tell. The door is open, that is true."

- Intense speculation -
The comments come after intense speculation about Francis's future, after he was forced to cancel a string of events due to his knee pain including a trip to Africa planned for earlier this month.

Talk was also fuelled by his decision to call an extraordinary consistory for August 27, a slow summer month at the Vatican, to create 21 new cardinals -- 16 of whom will be under the age of 80, thereby eligible to elect his successor in a future conclave.

Benedict's decision to quit caused shockwaves through the Catholic Church. He was first pope to resign since the Middle Ages, but the precedent has now been set.

"In all honesty, it is not a catastrophe, it is possible to change pope, it is possible to change, no problem! But I think I have to limit myself a bit with these efforts," Francis said on Saturday.

He mostly used a wheelchair during his trip to Canada, where he offered a historic apology for decades of abuse of Indigenous children at residential schools run by the Catholic Church.

But he did stand up in his "popemobile" to greet crowds.

Francis said surgery on his knee was not an option, adding that he was still feeling the effects of six hours spent under anaesthetic last summer, when he underwent an operation on his colon.

"You don't play, you don't mess around, with anaesthesia," he said.

But he added: "I will try to continue to go on trips and be close to people, because I think it is a way of service, closeness."

Francis still hopes to reschedule his postponed trip to South Sudan and the Democratic Republic of Congo.

"But it will be next year, because of the rainy season -- let's see: I have all the good will, but let's see what the leg says," he quipped.

The Argentine pontiff repeated that he would like to visit war-torn Ukraine, but offered no details on the state of his plans.

He has another overseas trip planned for a religious congress in Kazakhstan in September.

"For the moment, I would like to go: it's a quiet trip, without so much movement," the pope said.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.